From eb4515115a69f5a3fe9b2fe178110cc5ff78b73a Mon Sep 17 00:00:00 2001 From: Matej Klotton Date: Tue, 17 Jan 2017 12:14:23 +0100 Subject: VIRL test: Replace IP probe for VXLAN test Change-Id: Ic16f91beabdc2ac2e19ccc65c04790d36c15d477 Signed-off-by: Matej Klotton --- resources/libraries/python/InterfaceUtil.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'resources/libraries/python/InterfaceUtil.py') diff --git a/resources/libraries/python/InterfaceUtil.py b/resources/libraries/python/InterfaceUtil.py index 0447ba5b15..2980afa349 100644 --- a/resources/libraries/python/InterfaceUtil.py +++ b/resources/libraries/python/InterfaceUtil.py @@ -225,6 +225,9 @@ class InterfaceUtil(object): """ if_data = InterfaceUtil.vpp_get_interface_data(node, interface) + if if_data['sup_sw_if_index'] != if_data['sw_if_index']: + if_data = InterfaceUtil.vpp_get_interface_data( + node, if_data['sup_sw_if_index']) mac_data = [str(hex(item))[2:] for item in if_data['l2_address'][:6]] mac_data_nice = [] for item in mac_data: -- cgit 1.2.3-korg