diff options
author | Michael Chapman <woppin@gmail.com> | 2016-10-14 02:44:42 +1100 |
---|---|---|
committer | Michael Chapman <woppin@gmail.com> | 2016-10-14 03:00:03 +1100 |
commit | 38a14021bfd7f5a24a34d4b4d3424ce47d4f0117 (patch) | |
tree | 0c3eca898d3d228da3099a27dabdca0484cecbf5 | |
parent | b21c6502ae68604ff12329b529225f74558b0162 (diff) |
Use br-external instead of br-public
We changed the names of all these a while ago, but didn't update
the onos post-install script.
JIRA: APEX-281
Change-Id: Ib617d7f3dd0879da4e89d032cd694519fc0de557
Signed-off-by: Michael Chapman <woppin@gmail.com>
-rw-r--r-- | lib/installer/onos/onos_gw_mac_update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/installer/onos/onos_gw_mac_update.sh b/lib/installer/onos/onos_gw_mac_update.sh index 93e63c8e..3b3b0724 100644 --- a/lib/installer/onos/onos_gw_mac_update.sh +++ b/lib/installer/onos/onos_gw_mac_update.sh @@ -38,7 +38,7 @@ EOI fi # get gateway mac - GW_MAC=$(arping ${GW_IP} -c 1 -I br-public | grep -Eo '([0-9a-fA-F]{2})(([/\s:-][0-9a-fA-F]{2}){5})') + GW_MAC=$(arping ${GW_IP} -c 1 -I br-external | grep -Eo '([0-9a-fA-F]{2})(([/\s:-][0-9a-fA-F]{2}){5})') if [ -z "$GW_MAC" ]; then echo "ERROR: Failed to find gateway mac for ${GW_IP}" |