diff options
author | CNlukai <lukai1@huawei.com> | 2016-01-30 11:34:27 +0800 |
---|---|---|
committer | Justin chi <chigang@huawei.com> | 2016-02-06 03:22:58 +0000 |
commit | ab495546af8ba0fe9ea1234e4f25a7e62ed92191 (patch) | |
tree | 7ea365befb59cb6432689377da7c791e28ab43b5 /deploy/adapters/ansible/roles/onos_cluster/tasks | |
parent | 591568ec3c309621689e50b32da328398c3b9df8 (diff) |
Update the method to get external nic mac address
JIRA: COMPASS-295
Change-Id: Ifc72424d2627f444ec52d2875a5252f9fd898c8a
Signed-off-by: CNlukai <lukai1@huawei.com>
Signed-off-by: Justin-chi <chigang@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/onos_cluster/tasks')
-rwxr-xr-x | deploy/adapters/ansible/roles/onos_cluster/tasks/openvswitch.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy/adapters/ansible/roles/onos_cluster/tasks/openvswitch.yml b/deploy/adapters/ansible/roles/onos_cluster/tasks/openvswitch.yml index 9761af71..47f0f6e8 100755 --- a/deploy/adapters/ansible/roles/onos_cluster/tasks/openvswitch.yml +++ b/deploy/adapters/ansible/roles/onos_cluster/tasks/openvswitch.yml @@ -48,7 +48,7 @@ - name: set veth to ovs shell: > - export externamMac=`ifconfig eth1 | grep "HWaddr" | awk '{print $5}'`; + export externamMac=`ifconfig eth1 | grep -Eo '\<[0-9a-fA-F]{2}(:[0-9a-fA-F]{2}){5}'`; ifconfig onos_port2 hw ether $externamMac; ovs-vsctl add-port br-prv onos_port1; ignore_errors: True |