aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/InterfaceUtil.py
diff options
context:
space:
mode:
authorNeale Ranns <nranns@cisco.com>2017-02-17 21:09:54 +0000
committerJan Gelety <jgelety@cisco.com>2017-02-22 11:06:10 +0000
commitc5b285aebcfc93dcccf3285abbde672cf000e3cc (patch)
tree4a9a9115f76694eee7fe97409a2d51dbaaf9c74a /resources/libraries/python/InterfaceUtil.py
parent8ef4983395b46a834e3ffe712197ec2e2f2b50d1 (diff)
The interface must be assigned to the VRF and then given a prefix
Change-Id: I6a2fc503989576f806413ae98845e3e3676889b8 Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'resources/libraries/python/InterfaceUtil.py')
-rw-r--r--resources/libraries/python/InterfaceUtil.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/resources/libraries/python/InterfaceUtil.py b/resources/libraries/python/InterfaceUtil.py
index 16acdf3214..5d6d8f7044 100644
--- a/resources/libraries/python/InterfaceUtil.py
+++ b/resources/libraries/python/InterfaceUtil.py
@@ -950,10 +950,14 @@ class InterfaceUtil(object):
ipv6 = 'ipv6' if ipv6 else ''
with VatTerminal(node) as vat:
- vat.vat_terminal_exec_cmd_from_template("set_fib_to_interface.vat",
- sw_index=sw_if_index,
- vrf=table_id,
- ipv6=ipv6)
+ ret = vat.vat_terminal_exec_cmd_from_template(
+ "set_fib_to_interface.vat",
+ sw_index=sw_if_index, vrf=table_id, ipv6=ipv6)
+
+ if ret[0]["retval"] != 0:
+ raise RuntimeError('Unable to assign interface to FIB node {}.'
+ .format(node))
+
@staticmethod
def set_linux_interface_mac(node, interface, mac, namespace=None):