gluon-setup-mode: set br-setup MAC address to the primary MAC address

This allows to reach the node in setup mode over the same link-local IPv6
address as br-client uses during normal operation.
This commit is contained in:
Matthias Schiffer 2015-05-01 19:57:45 +02:00
parent 2deb82bcb6
commit 1838cee0d6
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@ prepare_config() {
uci_add network interface setup
uci_set network setup ifname "$(lua -e 'print(require("gluon.sysconfig").setup_ifname)')"
uci_set network setup macaddr "$(lua -e 'print(require("gluon.sysconfig").primary_mac)')"
uci_set network setup type 'bridge'
uci_set network setup proto 'static'
uci_set network setup ipaddr "$SETUP_MODE_ADDR"