aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/VhostUser.py
diff options
context:
space:
mode:
authorpmikus <pmikus@cisco.com>2016-09-19 15:02:32 +0100
committerPeter Mikus <pmikus@cisco.com>2016-09-22 04:20:05 +0000
commit356fc1c76a96f50ca9caebd0ec7a023bf6d5f99b (patch)
tree866c255f160c2699bacd66f71bf52d3daf7327be /resources/libraries/python/VhostUser.py
parent27995a1fceb0b894c1647f559608d6bf04bd68af (diff)
CSIT-411 Show Vhost User
- Add keyword to show vhost user Change-Id: Ia844bbcb8507b8c7cbf6b7bb1a7dc8d10148d6f4 Signed-off-by: pmikus <pmikus@cisco.com>
Diffstat (limited to 'resources/libraries/python/VhostUser.py')
-rw-r--r--resources/libraries/python/VhostUser.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/resources/libraries/python/VhostUser.py b/resources/libraries/python/VhostUser.py
index 020df6100e..385d0f24cc 100644
--- a/resources/libraries/python/VhostUser.py
+++ b/resources/libraries/python/VhostUser.py
@@ -75,3 +75,14 @@ class VhostUser(object):
return ':'.join("%02x" % (b) for b in iface["l2_address"][:6])
return None
+
+ @staticmethod
+ def vpp_show_vhost(node):
+ """Get vhost-user data for the given node.
+
+ :param node: VPP node to get interface data from.
+ :type node: dict
+ :return: nothing
+ """
+ vat = VatExecutor()
+ vat.execute_script("show_vhost.vat", node, json_out=False)