X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FVhostUser.py;h=385d0f24ccb0a0c6734f3b9e915a66f10996b510;hp=020df6100ecebddaba71071a969bb9dbc6833968;hb=356fc1c76a96f50ca9caebd0ec7a023bf6d5f99b;hpb=27995a1fceb0b894c1647f559608d6bf04bd68af 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)