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