diff options
author | Jan Gelety <jgelety@cisco.com> | 2020-08-06 03:34:31 +0200 |
---|---|---|
committer | Jan Gelety <jgelety@cisco.com> | 2020-08-07 22:03:19 +0200 |
commit | ff1f49d9ba97ddfee3229907e3a344503e072578 (patch) | |
tree | 44897453f4cddb795ea8adb4cb05af2d12a6f975 /resources/libraries/python/IPUtil.py | |
parent | 42d1016e92cf2b8ba4e493d878c475de325a447a (diff) |
Perf: NAT44 endpoint-dependent mode - udp, part I
- continuation of https://gerrit.fd.io/r/c/csit/+/26898 as there was
reached limit of changes (1000)
Jira: CSIT-1711
- udp synthetic profiles w/o data packets
- udp cps perf tests, phase I (no special "search cps" KW)
Part I means that we are using MRR tests to collect traffic data
until there is ready new CPS test type with corresponding algorithm.
Change-Id: I0d30feb9ecf1d0bff937152656f8eb422f831378
Signed-off-by: Jan Gelety <jgelety@cisco.com>
Diffstat (limited to 'resources/libraries/python/IPUtil.py')
-rw-r--r-- | resources/libraries/python/IPUtil.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/resources/libraries/python/IPUtil.py b/resources/libraries/python/IPUtil.py index 946f2f7b72..10a231f9df 100644 --- a/resources/libraries/python/IPUtil.py +++ b/resources/libraries/python/IPUtil.py @@ -140,6 +140,24 @@ class IPUtil: PapiSocketExecutor.run_cli_cmd(node, u"show ip6 fib summary") @staticmethod + def vpp_get_ip_table_summary(node): + """Get IPv4 FIB table summary on a VPP node. + + :param node: VPP node. + :type node: dict + """ + PapiSocketExecutor.run_cli_cmd(node, u"show ip fib summary") + + @staticmethod + def vpp_get_ip_table(node): + """Get IPv4 FIB table on a VPP node. + + :param node: VPP node. + :type node: dict + """ + PapiSocketExecutor.run_cli_cmd(node, u"show ip fib") + + @staticmethod def vpp_get_ip_tables_prefix(node, address): """Get dump of all IP FIB tables on a VPP node. |