| Gunnar Mills | 84981f0 | 2018-05-31 15:19:01 -0500 | [diff] [blame] | 1 | <loader loading="loading"></loader> | 
| Iftekharul Islam | cd78950 | 2017-04-19 14:37:55 -0500 | [diff] [blame] | 2 | <div id="configuration-network"> | 
| Gunnar Mills | 5f0b776 | 2018-09-25 14:10:45 -0500 | [diff] [blame] | 3 |   <div class="row column"> | 
 | 4 |     <h1>BMC network settings</h1> | 
 | 5 |   </div> | 
 | 6 |   <form class="net-config__form" role="form" action=""> | 
 | 7 |     <section class="row column"> | 
 | 8 |       <div class="column small-12 page-header"> | 
 | 9 |         <h2 class="inline h4">Common settings</h2> | 
 | 10 |       </div> | 
 | 11 |       <fieldset> | 
 | 12 |         <div class="column small-12 large-3"> | 
 | 13 |           <label for="net-config__mac">Hostname</label> | 
 | 14 |           <input id="net-config__mac" type="text" ng-model="hostname"/> | 
 | 15 |         </div> | 
 | 16 |         <div class="column small-12 large-3"> | 
 | 17 |           <label for="netinterface-select">Network interface</label> | 
 | 18 |           <div id="netinterface-select" class="dropdown__wrapper"> | 
 | 19 |             <button type="button" class="dropdown__button" ng-click="networkDevice = !networkDevice">{{selectedInterface}}</button> | 
 | 20 |             <ul class="dropdown__list inline" ng-show="networkDevice"> | 
 | 21 |               <li ng-repeat="interface_id in network.interface_ids"> | 
 | 22 |                 <button type="button" ng-click="selectInterface(interface_id);">{{interface_id}}</button> | 
 | 23 |               </li> | 
 | 24 |             </ul> | 
 | 25 |           </div> | 
 | 26 |         </div> | 
 | 27 |         <div class="column small-12 large-3"> | 
 | 28 |           <label for="net-config__host">MAC address</label> | 
 | 29 |           <input id="net-config__host" type="text" ng-model="interface.MACAddress"/> | 
 | 30 |         </div> | 
 | 31 |         <div class="column small-12 large-3"> | 
 | 32 |           <label for="net-config__domain">Default Gateway</label> | 
 | 33 |           <input id="net-config__domain" type="text" ng-model="defaultgateway"/> | 
 | 34 |         </div> | 
 | 35 |       </fieldset> | 
 | 36 |     </section> | 
 | 37 |     <section class="row column"> | 
 | 38 |       <div class="column small-12 page-header"> | 
 | 39 |         <h2 class="inline h4">IPV4 settings</h2> | 
 | 40 |       </div> | 
 | 41 |       <fieldset> | 
 | 42 |         <div class="row column"> | 
 | 43 |           <label class="control-radio" for="dhcp-address">Obtain an IP address automatically using DHCP | 
 | 44 |             <input type="radio" name="ip-address" id="dhcp-address" ng-checked="true" ng-model="interface.DHCPEnabled" ng-value="true"> | 
 | 45 |             <span class="control__indicator control__indicator-on"></span> | 
 | 46 |           </label> | 
 | 47 |         </div> | 
 | 48 |         <div class="row column"> | 
 | 49 |           <label class="control-radio" for="static-ip-address">Assign a static IP address | 
 | 50 |             <input type="radio" name="ip-address" id="static-ip-address" ng-model="interface.DHCPEnabled" ng-value="false"/> | 
 | 51 |             <span class="control__indicator control__indicator-on"></span> | 
 | 52 |           </label> | 
 | 53 |         </div> | 
| beccabroek | 971ac1a | 2018-09-24 13:14:05 -0500 | [diff] [blame^] | 54 |         <div class="row column network-config__ipv4-wrap"> | 
 | 55 |           <fieldset class="net-config__static-ip-wrap" ng-repeat="ipv4 in interface.ipv4.values track by $index"> | 
 | 56 |             <div class="column small-12 large-3"> | 
 | 57 |               <label for="net-config__ipv4-address">IPV4 address</label> | 
 | 58 |               <input id="net-config__ipv4-address" type="text" ng-disabled="interface.DHCPEnabled" ng-model="ipv4.Address"/> | 
 | 59 |             </div> | 
 | 60 |             <div class="column small-12 large-3"> | 
 | 61 |               <label for="net-config__subnet">Gateway</label> | 
 | 62 |               <input id="net-config__subnet" type="text" ng-disabled="interface.DHCPEnabled" value="" ng-model="ipv4.Gateway"/> | 
 | 63 |             </div> | 
 | 64 |             <!-- This netmask prefix length max only works with IPV4 --> | 
 | 65 |             <div class="column small-12 large-6"> | 
 | 66 |               <label for="net-config__default-gateway">Netmask Prefix Length</label> | 
 | 67 |               <input id="net-config__default-gateway" class="column small-6" type="number" min="1" max="32" step="1" ng-disabled="interface.DHCPEnabled"  ng-model="ipv4.PrefixLength"/> | 
 | 68 |               <button class="network-config_remove-button inline" ng-click="removeIpv4Address($index)">Remove</button> | 
 | 69 |             </div> | 
 | 70 |           </fieldset> | 
 | 71 |         </div> | 
| Gunnar Mills | 5f0b776 | 2018-09-25 14:10:45 -0500 | [diff] [blame] | 72 |       </fieldset> | 
 | 73 |     </section> | 
 | 74 |     <section class="row column"> | 
 | 75 |       <div class="column small-12 page-header"> | 
 | 76 |         <h2 class="inline h4">DNS settings</h2> | 
 | 77 |       </div> | 
 | 78 |       <fieldset> | 
 | 79 |         <!-- Call Nameservers "DNS Servers" on the GUI --> | 
 | 80 |         <fieldset class="net-config__static-ip-wrap" ng-repeat="dns in interface.Nameservers track by $index"> | 
 | 81 |           <div class="column small-12"> | 
 | 82 |             <label for="net-config__prime-dns{{$index+1}}">DNS Server {{$index+1}}</label> | 
| beccabroek | 971ac1a | 2018-09-24 13:14:05 -0500 | [diff] [blame^] | 83 |             <input id="net-config__prime-dns{{$index+1}}" class="network-input column small-6 large-4 inline" type="text" ng-model="dns" ng-blur="interface.Nameservers[$index] = dns" set-focus-on-new-input/> | 
 | 84 |             <button class="network-config_remove-button inline" ng-click="removeDNSField($index)">Remove</button> | 
| Gunnar Mills | 5f0b776 | 2018-09-25 14:10:45 -0500 | [diff] [blame] | 85 |           </div> | 
 | 86 |         </fieldset> | 
| beccabroek | 971ac1a | 2018-09-24 13:14:05 -0500 | [diff] [blame^] | 87 |         <div class="row column"> | 
| Gunnar Mills | 5f0b776 | 2018-09-25 14:10:45 -0500 | [diff] [blame] | 88 |           <button type="button" class="btn-primary inline dns_add" ng-click="addDNSField()">Add new DNS server</button> | 
 | 89 |         </div> | 
 | 90 |       </fieldset> | 
 | 91 |       <div class="network-config__submit-wrapper"> | 
 | 92 |         <button type="button" class="btn-primary inline" ng-click="confirm_settings=true;">Save settings</button> | 
 | 93 |         <button type="button" class="btn-secondary inline" ng-click="refresh()">Cancel</button> | 
 | 94 |       </div> | 
 | 95 |       <p class="success-msg set_network_success" ng-show="set_network_success" role="alert">Success! Network settings changed!</p> | 
 | 96 |       <p class="set_network_error error-msg" ng-show="set_network_error" role="alert">Error setting {{set_network_error}}!</p> | 
 | 97 |     </section> | 
 | 98 |   </form> | 
| Gunnar Mills | 7ddc727 | 2018-04-12 16:12:03 -0500 | [diff] [blame] | 99 | </div> | 
| Gunnar Mills | d01504c | 2018-05-03 13:01:51 -0500 | [diff] [blame] | 100 | <section class="modal" aria-hidden="true" aria-labelledby="modalTitle" aria-describedby="modalDescription" role="dialog" ng-class="{'active': confirm_settings}"> | 
| Gunnar Mills | 5f0b776 | 2018-09-25 14:10:45 -0500 | [diff] [blame] | 101 |   <div class="modal__tftp-unreachable" role="document"> | 
 | 102 |     <div class="screen-reader-offscreen modal-description">Change network settings</div><!-- accessibility only; used for screen readers --> | 
 | 103 |     <div class="page-header "> | 
 | 104 |       <span class="icon icon__warning inline"><span class="accessible-text" role="alert">Warning</span></span> | 
 | 105 |       <h1 class="modal-title h4 inline">Change network settings</h1> | 
 | 106 |     </div> | 
 | 107 |     <div class="modal__content"> | 
 | 108 |       <p>Changing network settings may cause the system to become unavailable (e.g. changing the BMC IP address). | 
 | 109 |         Proceed with caution and make note of any new settings that may affect connectivity.</p> | 
 | 110 |     </div> | 
 | 111 |     <div class="modal__button-wrapper"> | 
 | 112 |       <button class="inline btn-secondary" ng-click="confirm_settings=false;">Cancel</button> | 
 | 113 |       <button class="inline btn-primary" ng-click="setNetworkSettings()">Continue</button> | 
 | 114 |     </div> | 
 | 115 |   </div> | 
| Gunnar Mills | d01504c | 2018-05-03 13:01:51 -0500 | [diff] [blame] | 116 | </section> |