* Re: [dts] [PATCH V2] delete modify switch RTE_LIBRTE_I40E_INC_VECTOR in dts
2020-11-02 6:45 [dts] [PATCH V2] delete modify switch RTE_LIBRTE_I40E_INC_VECTOR in dts Zhou, Jun
@ 2020-11-02 6:44 ` Zhou, JunX W
2020-11-03 4:24 ` Tu, Lijuan
1 sibling, 0 replies; 3+ messages in thread
From: Zhou, JunX W @ 2020-11-02 6:44 UTC (permalink / raw)
To: Zhou, JunX W, dts
[-- Attachment #1: Type: text/plain, Size: 8310 bytes --]
Tested-by: Zhou, Jun <junx.w.zhou@intel.com>
-----Original Message-----
From: Zhou, Jun [mailto:junx.w.zhou@intel.com]
Sent: Monday, November 2, 2020 2:46 PM
To: dts@dpdk.org
Cc: Zhou, JunX W <junx.w.zhou@intel.com>; Zhou
Subject: [dts][PATCH V2] delete modify switch RTE_LIBRTE_I40E_INC_VECTOR in dts
delete modify switch RTE_LIBRTE_I40E_INC_VECTOR in dts
Signed-off-by: Zhou, Jun <junx.w.zhou@intel.com>
---
tests/TestSuite_nvgre.py | 38 --------------------------------------
tests/TestSuite_vxlan.py | 40 ----------------------------------------
2 files changed, 78 deletions(-)
diff --git a/tests/TestSuite_nvgre.py b/tests/TestSuite_nvgre.py index ce02a857..22dfde48 100644
--- a/tests/TestSuite_nvgre.py
+++ b/tests/TestSuite_nvgre.py
@@ -656,14 +656,6 @@ class TestNvgre(TestCase):
if self.nic in ["columbiaville_25g","columbiaville_100g"]:
print("CVL support default none VECTOR")
src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- src_vec_model = re.findall("%s=." % self.compile_switch, out)[0][-1]
- if src_vec_model == 'y':
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=n/' config/common_base" % self.compile_switch, "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
# check no nvgre packet
self.nvgre_detect(outer_l3_type = "IPv6", outer_ip_proto=0xFF) @@ -679,17 +671,6 @@ class TestNvgre(TestCase):
self.nvgre_detect(outer_l3_type = "IPv6", inner_l3_type="IPv6", outer_vlan=1)
# check vlan nvgre + vlan inner and outer packet
self.nvgre_detect(outer_l3_type = "IPv6", inner_l3_type="IPv6", outer_vlan=1, inner_vlan=1)
- if self.nic in ["columbiaville_25g","columbiaville_100g"]:
- print("CVL support default none VECTOR")
- src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- dst_vec_model = re.findall("%s=." % self.compile_switch, out)[0][-1]
- if src_vec_model != dst_vec_model:
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=%s/' config/common_base" % (self.compile_switch, src_vec_model), "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
def test_nvgre_ipv6_checksum_offload(self):
# check nvgre packet + inner IPv6 + inner L4 invalid @@ -731,14 +712,6 @@ class TestNvgre(TestCase):
if self.nic in ["columbiaville_25g","columbiaville_100g"]:
print("CVL support default none VECTOR")
src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- src_vec_model = re.findall("%s=." % self.compile_switch, out)[0][-1]
- if src_vec_model == 'y':
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=n/' config/common_base" % self.compile_switch, "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
# check no nvgre packet
self.nvgre_detect(outer_ip_proto=0xFF)
@@ -752,17 +725,6 @@ class TestNvgre(TestCase):
self.nvgre_detect(outer_vlan=1)
# check vlan nvgre + vlan inner packet
self.nvgre_detect(outer_vlan=1, inner_vlan=1)
- if self.nic in ["columbiaville_25g","columbiaville_100g"]:
- print("CVL support default none VECTOR")
- src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- dst_vec_model = re.findall("%s=." % self.compile_switch, out)[0][-1]
- if src_vec_model != dst_vec_model:
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=%s/' config/common_base" % (self.compile_switch, src_vec_model), "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
def test_tunnel_filter(self):
# verify tunnel filter feature
diff --git a/tests/TestSuite_vxlan.py b/tests/TestSuite_vxlan.py index eb324fbd..d080ebc9 100644
--- a/tests/TestSuite_vxlan.py
+++ b/tests/TestSuite_vxlan.py
@@ -558,14 +558,6 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
if self.nic in ["columbiaville_25g","columbiaville_100g"]:
print("CVL support default none VECTOR")
src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- src_vec_model = re.search("%s=." % self.compile_switch, out).group()[-1]
- if src_vec_model == 'y':
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=n/' config/common_base" % self.compile_switch, "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
pmd_temp = "./%(TARGET)s -c %(COREMASK)s -n " + \
"%(CHANNEL)d -- -i --disable-rss --rxq=4 --txq=4" + \ @@ -597,18 +589,6 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
out = self.dut.send_expect("stop", "testpmd>", 10)
self.dut.send_expect("quit", "#", 10)
- if self.nic in ["columbiaville_25g","columbiaville_100g"]:
- print("CVL support default none VECTOR")
- src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- dst_vec_model = re.findall("%s=." % self.compile_switch, out)[0][-1]
- if src_vec_model != dst_vec_model:
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=%s/' config/common_base" % (self.compile_switch, src_vec_model), "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
-
def test_vxlan_ipv6_detect(self):
"""
verify vxlan packet detection with ipv6 header @@ -616,14 +596,6 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
if self.nic in ["columbiaville_25g","columbiaville_100g"]:
print("CVL support default none VECTOR")
src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- src_vec_model = re.search("%s=." % self.compile_switch, out).group()[-1]
- if src_vec_model == 'y':
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=n/' config/common_base" % self.compile_switch, "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
pmd_temp = "./%(TARGET)s -c %(COREMASK)s -n " + \
"%(CHANNEL)d -- -i --disable-rss --rxq=4 --txq=4" + \ @@ -659,18 +631,6 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
out = self.dut.send_expect("stop", "testpmd>", 10)
self.dut.send_expect("quit", "#", 10)
- if self.nic in ["columbiaville_25g","columbiaville_100g"]:
- print("CVL support default none VECTOR")
- src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- dst_vec_model = re.findall("%s=." % self.compile_switch, out)[0][-1]
- if src_vec_model != dst_vec_model:
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=%s/' config/common_base" % (self.compile_switch, src_vec_model), "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
-
def test_vxlan_ipv4_checksum_offload(self):
"""
verify vxlan packet checksum offload
--
2.17.1
[-- Attachment #2: TestNvgre.log --]
[-- Type: application/octet-stream, Size: 971658 bytes --]
[-- Attachment #3: TestVxlan.log --]
[-- Type: application/octet-stream, Size: 438110 bytes --]
02/11/2020 02:40:33 dts:
TEST SUITE : TestVxlan
02/11/2020 02:40:33 dts: NIC : fortville_25g
02/11/2020 02:40:33 dut.10.240.183.197:
02/11/2020 02:40:34 tester:
02/11/2020 02:40:34 TestVxlan: Test Case test_tunnel_filter Begin
02/11/2020 02:40:34 dut.10.240.183.197:
02/11/2020 02:40:34 tester:
02/11/2020 02:40:34 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --disable-rss --rxq=4 --txq=4 --nb-cores=4 --portmask=0x3
02/11/2020 02:40:35 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
i40e_GLQF_reg_init(): i40e device 0000:86:00.0 changed global register [0x002689a0]. original: 0x00000000, new: 0x00000029
i40e_GLQF_reg_init(): i40e device 0000:86:00.0 changed global register [0x00268ca4]. original: 0x00001840, new: 0x00009420
i40e_aq_debug_write_global_register(): i40e device 0000:86:00.0 changed global register [0x0026c7a0]. original: 0xa8, after: 0x28
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:40:35 dut.10.240.183.197: set fwd rxonly
02/11/2020 02:40:35 dut.10.240.183.197:
Set rxonly packet forwarding mode
02/11/2020 02:40:35 dut.10.240.183.197: set verbose 1
02/11/2020 02:40:35 dut.10.240.183.197:
Change verbose level from 0 to 1
02/11/2020 02:40:35 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 02:40:35 dut.10.240.183.197:
02/11/2020 02:40:35 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 02:40:36 dut.10.240.183.197:
02/11/2020 02:40:36 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan imac-ivlan 1 3
02/11/2020 02:40:36 dut.10.240.183.197:
02/11/2020 02:40:36 dut.10.240.183.197: start
02/11/2020 02:40:36 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 02:40:38 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=114 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 02:40:38 dut.10.240.183.197: stop
02/11/2020 02:40:38 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:40:38 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan imac-ivlan-tenid 1 3
02/11/2020 02:40:38 dut.10.240.183.197:
02/11/2020 02:40:38 dut.10.240.183.197: start
02/11/2020 02:40:38 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 02:40:40 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=114 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 02:40:40 dut.10.240.183.197: stop
02/11/2020 02:40:40 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:40:40 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan imac-tenid 1 3
02/11/2020 02:40:40 dut.10.240.183.197:
02/11/2020 02:40:40 dut.10.240.183.197: start
02/11/2020 02:40:40 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 02:40:42 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=110 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 02:40:42 dut.10.240.183.197: stop
02/11/2020 02:40:42 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:40:42 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan imac 1 3
02/11/2020 02:40:43 dut.10.240.183.197:
02/11/2020 02:40:43 dut.10.240.183.197: start
02/11/2020 02:40:43 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 02:40:45 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=110 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 02:40:45 dut.10.240.183.197: stop
02/11/2020 02:40:45 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:40:45 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan omac-imac-tenid 1 3
02/11/2020 02:40:45 dut.10.240.183.197:
02/11/2020 02:40:45 dut.10.240.183.197: start
02/11/2020 02:40:45 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 02:40:47 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=110 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 02:40:47 dut.10.240.183.197: stop
02/11/2020 02:40:47 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:40:47 dut.10.240.183.197: quit
02/11/2020 02:40:49 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 02:40:49 TestVxlan: Test Case test_tunnel_filter Result PASSED:
02/11/2020 02:40:49 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 02:40:50 TestVxlan: Test Case test_tunnel_filter_invalid Begin
02/11/2020 02:40:50 dut.10.240.183.197:
02/11/2020 02:40:50 tester:
02/11/2020 02:40:50 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --disable-rss --rxq=4 --txq=4 --nb-cores=4 --portmask=0x3
02/11/2020 02:40:52 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:40:52 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 02:40:52 dut.10.240.183.197:
02/11/2020 02:40:52 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 02:40:52 dut.10.240.183.197:
02/11/2020 02:40:52 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:00:00:01 192.168.2.2 1 vxlan omac-imac-tenid 1 3
02/11/2020 02:40:52 dut.10.240.183.197:
Bad arguments
02/11/2020 02:40:52 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.1.256 1 vxlan omac-imac-tenid 1 3
02/11/2020 02:40:52 dut.10.240.183.197:
Bad arguments
02/11/2020 02:40:52 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 4097 vxlan omac-imac-tenid 1 3
02/11/2020 02:40:52 dut.10.240.183.197:
i40e_tunnel_filter_param_check(): Invalid inner VLAN ID
cmd_tunnel_filter_parsed error: (Input/output error)
02/11/2020 02:40:52 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan omac-imac-tenid 1 64
02/11/2020 02:40:52 dut.10.240.183.197:
i40e_tunnel_filter_param_check(): Invalid queue ID
cmd_tunnel_filter_parsed error: (Input/output error)
02/11/2020 02:40:52 dut.10.240.183.197: stop
02/11/2020 02:40:52 dut.10.240.183.197:
Packet forwarding not started
02/11/2020 02:40:52 dut.10.240.183.197: quit
02/11/2020 02:40:54 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 02:40:54 TestVxlan: Test Case test_tunnel_filter_invalid Result PASSED:
02/11/2020 02:40:54 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 02:40:56 TestVxlan: Test Case test_vxlan_ipv4_checksum_offload Begin
02/11/2020 02:40:56 dut.10.240.183.197:
02/11/2020 02:40:56 tester:
02/11/2020 02:40:56 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --portmask=0x3 --enable-rx-cksum
02/11/2020 02:40:57 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:40:57 dut.10.240.183.197: vlan set filter off 0
02/11/2020 02:40:57 dut.10.240.183.197:
02/11/2020 02:40:57 dut.10.240.183.197: set fwd csum
02/11/2020 02:40:57 dut.10.240.183.197:
Set csum packet forwarding mode
02/11/2020 02:40:57 dut.10.240.183.197: port stop all
02/11/2020 02:40:58 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:40:58 dut.10.240.183.197: port stop all
02/11/2020 02:40:58 dut.10.240.183.197:
Stopping ports...
Done
02/11/2020 02:40:58 dut.10.240.183.197: csum set ip hw 1
02/11/2020 02:40:58 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:40:58 dut.10.240.183.197: port start all
02/11/2020 02:40:58 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:40:58 dut.10.240.183.197: port stop all
02/11/2020 02:40:59 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:40:59 dut.10.240.183.197: csum set outer-ip hw 1
02/11/2020 02:40:59 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 02:40:59 dut.10.240.183.197: port start all
02/11/2020 02:40:59 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:40:59 dut.10.240.183.197: port stop all
02/11/2020 02:40:59 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:40:59 dut.10.240.183.197: csum set udp hw 1
02/11/2020 02:40:59 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is hw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 02:40:59 dut.10.240.183.197: port start all
02/11/2020 02:41:00 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:41:00 dut.10.240.183.197: port stop all
02/11/2020 02:41:00 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:41:00 dut.10.240.183.197: csum set tcp hw 1
02/11/2020 02:41:00 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 02:41:00 dut.10.240.183.197: port start all
02/11/2020 02:41:01 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:41:01 dut.10.240.183.197: port stop all
02/11/2020 02:41:01 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:41:01 dut.10.240.183.197: csum set sctp hw 1
02/11/2020 02:41:01 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 02:41:01 dut.10.240.183.197: port start all
02/11/2020 02:41:02 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:41:02 dut.10.240.183.197: port start all
02/11/2020 02:41:02 dut.10.240.183.197:
Port 0 is now not stopped
Port 1 is now not stopped
Please stop the ports first
Done
02/11/2020 02:41:02 dut.10.240.183.197: csum parse-tunnel on 1
02/11/2020 02:41:02 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is hw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 02:41:02 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 02:41:02 dut.10.240.183.197:
02/11/2020 02:41:02 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 02:41:02 dut.10.240.183.197:
02/11/2020 02:41:03 TestVxlan: chksums_ref{}
02/11/2020 02:41:03 TestVxlan: vxlan packet [outer_ip_invalid = 1][outer_udp_dst = 1234]
02/11/2020 02:41:03 dut.10.240.183.197: start
02/11/2020 02:41:03 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:41:03 tester: ls -d /tmp/tester/
02/11/2020 02:41:03 tester: /tmp/tester/
02/11/2020 02:41:03 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:41:03 tester:
02/11/2020 02:41:14 TestVxlan: chksums{}
02/11/2020 02:41:14 dut.10.240.183.197: stop
02/11/2020 02:41:15 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:41:16 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:41:16 TestVxlan: vxlan packet [inner_ip_invalid = 1]
02/11/2020 02:41:16 dut.10.240.183.197: start
02/11/2020 02:41:16 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:41:16 tester: ls -d /tmp/tester/
02/11/2020 02:41:16 tester: /tmp/tester/
02/11/2020 02:41:16 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:41:16 tester:
02/11/2020 02:41:27 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:41:27 dut.10.240.183.197: stop
02/11/2020 02:41:27 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:41:28 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:41:28 TestVxlan: vxlan packet [outer_ip_invalid = 1]
02/11/2020 02:41:28 dut.10.240.183.197: start
02/11/2020 02:41:28 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:41:28 tester: ls -d /tmp/tester/
02/11/2020 02:41:28 tester: /tmp/tester/
02/11/2020 02:41:28 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:41:29 tester:
02/11/2020 02:41:40 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:41:40 dut.10.240.183.197: stop
02/11/2020 02:41:40 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:41:41 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:41:41 TestVxlan: vxlan packet [outer_ip_invalid = 1][inner_ip_invalid = 1]
02/11/2020 02:41:41 dut.10.240.183.197: start
02/11/2020 02:41:41 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:41:41 tester: ls -d /tmp/tester/
02/11/2020 02:41:41 tester: /tmp/tester/
02/11/2020 02:41:41 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:41:41 tester:
02/11/2020 02:41:53 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:41:53 dut.10.240.183.197: stop
02/11/2020 02:41:53 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:41:54 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:41:54 TestVxlan: vxlan packet [inner_l4_invalid = 1]
02/11/2020 02:41:54 dut.10.240.183.197: start
02/11/2020 02:41:54 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:41:54 tester: ls -d /tmp/tester/
02/11/2020 02:41:54 tester: /tmp/tester/
02/11/2020 02:41:54 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:41:54 tester:
02/11/2020 02:42:05 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:42:05 dut.10.240.183.197: stop
02/11/2020 02:42:05 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:42:06 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 02:42:06 TestVxlan: vxlan packet [inner_l4_invalid = 1][inner_l4_type = TCP]
02/11/2020 02:42:06 dut.10.240.183.197: start
02/11/2020 02:42:06 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:42:06 tester: ls -d /tmp/tester/
02/11/2020 02:42:07 tester: /tmp/tester/
02/11/2020 02:42:07 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:42:07 tester:
02/11/2020 02:42:18 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 02:42:18 dut.10.240.183.197: stop
02/11/2020 02:42:18 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:42:19 TestVxlan: chksums_ref{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
02/11/2020 02:42:19 TestVxlan: vxlan packet [inner_l4_invalid = 1][inner_l4_type = SCTP]
02/11/2020 02:42:19 dut.10.240.183.197: start
02/11/2020 02:42:19 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:42:19 tester: ls -d /tmp/tester/
02/11/2020 02:42:19 tester: /tmp/tester/
02/11/2020 02:42:19 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:42:19 tester:
02/11/2020 02:42:31 TestVxlan: chksums{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
02/11/2020 02:42:31 dut.10.240.183.197: stop
02/11/2020 02:42:31 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:42:32 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:42:32 TestVxlan: vxlan packet [outer_vlan = 1][outer_ip_invalid = 1]
02/11/2020 02:42:32 dut.10.240.183.197: start
02/11/2020 02:42:32 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:42:32 tester: ls -d /tmp/tester/
02/11/2020 02:42:32 tester: /tmp/tester/
02/11/2020 02:42:32 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:42:32 tester:
02/11/2020 02:42:43 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:42:43 dut.10.240.183.197: stop
02/11/2020 02:42:43 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:42:44 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:42:44 TestVxlan: vxlan packet [outer_vlan = 1][inner_ip_invalid = 1]
02/11/2020 02:42:44 dut.10.240.183.197: start
02/11/2020 02:42:45 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:42:45 tester: ls -d /tmp/tester/
02/11/2020 02:42:45 tester: /tmp/tester/
02/11/2020 02:42:45 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:42:45 tester:
02/11/2020 02:42:56 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:42:56 dut.10.240.183.197: stop
02/11/2020 02:42:56 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:42:57 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:42:57 TestVxlan: vxlan packet [outer_vlan = 1][outer_ip_invalid = 1][inner_ip_invalid = 1]
02/11/2020 02:42:57 dut.10.240.183.197: start
02/11/2020 02:42:57 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:42:57 tester: ls -d /tmp/tester/
02/11/2020 02:42:57 tester: /tmp/tester/
02/11/2020 02:42:57 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:42:57 tester:
02/11/2020 02:43:09 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:43:09 dut.10.240.183.197: stop
02/11/2020 02:43:09 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:43:10 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:43:10 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][outer_ip_invalid = 1]
02/11/2020 02:43:10 dut.10.240.183.197: start
02/11/2020 02:43:10 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:43:10 tester: ls -d /tmp/tester/
02/11/2020 02:43:10 tester: /tmp/tester/
02/11/2020 02:43:10 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:43:10 tester:
02/11/2020 02:43:22 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:43:22 dut.10.240.183.197: stop
02/11/2020 02:43:22 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:43:23 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:43:23 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][inner_ip_invalid = 1]
02/11/2020 02:43:23 dut.10.240.183.197: start
02/11/2020 02:43:23 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:43:23 tester: ls -d /tmp/tester/
02/11/2020 02:43:23 tester: /tmp/tester/
02/11/2020 02:43:23 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:43:23 tester:
02/11/2020 02:43:34 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:43:34 dut.10.240.183.197: stop
02/11/2020 02:43:34 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:43:35 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:43:35 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][outer_ip_invalid = 1][inner_ip_invalid = 1]
02/11/2020 02:43:35 dut.10.240.183.197: start
02/11/2020 02:43:35 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:43:35 tester: ls -d /tmp/tester/
02/11/2020 02:43:36 tester: /tmp/tester/
02/11/2020 02:43:36 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:43:36 tester:
02/11/2020 02:43:47 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:43:47 dut.10.240.183.197: stop
02/11/2020 02:43:47 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:43:48 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:43:48 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = UDP]
02/11/2020 02:43:48 dut.10.240.183.197: start
02/11/2020 02:43:48 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:43:48 tester: ls -d /tmp/tester/
02/11/2020 02:43:48 tester: /tmp/tester/
02/11/2020 02:43:48 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:43:48 tester:
02/11/2020 02:44:00 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:44:00 dut.10.240.183.197: stop
02/11/2020 02:44:00 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:44:01 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 02:44:01 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = TCP]
02/11/2020 02:44:01 dut.10.240.183.197: start
02/11/2020 02:44:01 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:44:01 tester: ls -d /tmp/tester/
02/11/2020 02:44:01 tester: /tmp/tester/
02/11/2020 02:44:01 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:44:01 tester:
02/11/2020 02:44:12 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 02:44:12 dut.10.240.183.197: stop
02/11/2020 02:44:13 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:44:14 TestVxlan: chksums_ref{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
02/11/2020 02:44:14 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = SCTP]
02/11/2020 02:44:14 dut.10.240.183.197: start
02/11/2020 02:44:14 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 02:44:14 tester: ls -d /tmp/tester/
02/11/2020 02:44:14 tester: /tmp/tester/
02/11/2020 02:44:14 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:44:14 tester:
02/11/2020 02:44:25 TestVxlan: chksums{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
02/11/2020 02:44:25 dut.10.240.183.197: stop
02/11/2020 02:44:25 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:44:25 dut.10.240.183.197: quit
02/11/2020 02:44:28 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 02:44:28 TestVxlan: Test Case test_vxlan_ipv4_checksum_offload Result PASSED:
02/11/2020 02:44:28 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 02:44:29 TestVxlan: Test Case test_vxlan_ipv4_detect Begin
02/11/2020 02:44:29 dut.10.240.183.197:
02/11/2020 02:44:29 tester:
02/11/2020 02:44:29 dut.10.240.183.197: cat config/common_base
02/11/2020 02:44:29 dut.10.240.183.197: cat: config/common_base: No such file or directory
02/11/2020 02:44:29 TestVxlan: Test Case test_vxlan_ipv4_detect Result ERROR: Traceback (most recent call last):
File "/home/autoregression/dts/dts/framework/test_case.py", line 319, in _execute_test_case
case_obj()
File "tests/TestSuite_vxlan.py", line 563, in test_vxlan_ipv4_detect
src_vec_model = re.search("%s=." % self.compile_switch, out).group()[-1]
AttributeError: 'NoneType' object has no attribute 'group'
02/11/2020 02:44:29 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 02:44:30 TestVxlan: Test Case test_vxlan_ipv6_checksum_offload Begin
02/11/2020 02:44:30 dut.10.240.183.197:
02/11/2020 02:44:30 tester:
02/11/2020 02:44:30 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --portmask=0x3 --enable-rx-cksum
02/11/2020 02:44:31 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:44:31 dut.10.240.183.197: vlan set filter off 0
02/11/2020 02:44:31 dut.10.240.183.197:
02/11/2020 02:44:31 dut.10.240.183.197: set fwd csum
02/11/2020 02:44:31 dut.10.240.183.197:
Set csum packet forwarding mode
02/11/2020 02:44:31 dut.10.240.183.197: port stop all
02/11/2020 02:44:32 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:44:32 dut.10.240.183.197: csum set outer-ip hw 1
02/11/2020 02:44:32 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 02:44:32 dut.10.240.183.197: port start all
02/11/2020 02:44:33 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:44:33 dut.10.240.183.197: port stop all
02/11/2020 02:44:33 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:44:33 dut.10.240.183.197: csum set udp hw 1
02/11/2020 02:44:33 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 02:44:33 dut.10.240.183.197: port start all
02/11/2020 02:44:33 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:44:33 dut.10.240.183.197: port stop all
02/11/2020 02:44:33 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:44:33 dut.10.240.183.197: csum set tcp hw 1
02/11/2020 02:44:33 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 02:44:33 dut.10.240.183.197: port start all
02/11/2020 02:44:34 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:44:34 dut.10.240.183.197: port stop all
02/11/2020 02:44:34 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:44:34 dut.10.240.183.197: csum set sctp hw 1
02/11/2020 02:44:35 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 02:44:35 dut.10.240.183.197: port start all
02/11/2020 02:44:35 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:44:35 dut.10.240.183.197: csum parse-tunnel on 1
02/11/2020 02:44:35 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 02:44:35 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 02:44:35 dut.10.240.183.197:
02/11/2020 02:44:35 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 02:44:35 dut.10.240.183.197:
02/11/2020 02:44:35 dut.10.240.183.197: port stop all
02/11/2020 02:44:35 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:44:35 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 02:44:36 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:44:36 dut.10.240.183.197: port start all
02/11/2020 02:44:36 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:44:36 dut.10.240.183.197: port stop all
02/11/2020 02:44:36 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:44:36 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 02:44:36 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:44:36 dut.10.240.183.197: port start all
02/11/2020 02:44:37 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:44:38 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:44:38 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1]
02/11/2020 02:44:38 dut.10.240.183.197: start
02/11/2020 02:44:38 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 02:44:38 tester: ls -d /tmp/tester/
02/11/2020 02:44:38 tester: /tmp/tester/
02/11/2020 02:44:38 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:44:38 tester:
02/11/2020 02:44:49 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:44:49 dut.10.240.183.197: stop
02/11/2020 02:44:49 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:44:49 dut.10.240.183.197: port stop all
02/11/2020 02:44:49 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:44:49 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 02:44:50 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:44:50 dut.10.240.183.197: port start all
02/11/2020 02:44:50 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:44:50 dut.10.240.183.197: port stop all
02/11/2020 02:44:50 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:44:50 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 02:44:50 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:44:50 dut.10.240.183.197: port start all
02/11/2020 02:44:51 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:44:52 TestVxlan: chksums_ref{}
02/11/2020 02:44:52 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][outer_udp_dst = 1234]
02/11/2020 02:44:52 dut.10.240.183.197: start
02/11/2020 02:44:52 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 02:44:52 tester: ls -d /tmp/tester/
02/11/2020 02:44:52 tester: /tmp/tester/
02/11/2020 02:44:52 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:44:52 tester:
02/11/2020 02:45:03 TestVxlan: chksums{}
02/11/2020 02:45:03 dut.10.240.183.197: stop
02/11/2020 02:45:03 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:45:03 dut.10.240.183.197: port stop all
02/11/2020 02:45:03 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:45:03 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 02:45:04 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:45:04 dut.10.240.183.197: port start all
02/11/2020 02:45:04 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:45:04 dut.10.240.183.197: port stop all
02/11/2020 02:45:04 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:45:04 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 02:45:04 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:45:04 dut.10.240.183.197: port start all
02/11/2020 02:45:05 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:45:06 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:45:06 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_ip_invalid = 1]
02/11/2020 02:45:06 dut.10.240.183.197: start
02/11/2020 02:45:06 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 02:45:06 tester: ls -d /tmp/tester/
02/11/2020 02:45:06 tester: /tmp/tester/
02/11/2020 02:45:06 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:45:06 tester:
02/11/2020 02:45:17 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:45:17 dut.10.240.183.197: stop
02/11/2020 02:45:17 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:45:17 dut.10.240.183.197: port stop all
02/11/2020 02:45:17 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:45:17 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 02:45:17 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:45:17 dut.10.240.183.197: port start all
02/11/2020 02:45:18 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:45:18 dut.10.240.183.197: port stop all
02/11/2020 02:45:18 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:45:18 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 02:45:18 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:45:18 dut.10.240.183.197: port start all
02/11/2020 02:45:19 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:45:20 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:45:20 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = UDP]
02/11/2020 02:45:20 dut.10.240.183.197: start
02/11/2020 02:45:20 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 02:45:20 tester: ls -d /tmp/tester/
02/11/2020 02:45:20 tester: /tmp/tester/
02/11/2020 02:45:20 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:45:20 tester:
02/11/2020 02:45:31 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:45:31 dut.10.240.183.197: stop
02/11/2020 02:45:31 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:45:31 dut.10.240.183.197: port stop all
02/11/2020 02:45:31 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:45:31 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 02:45:31 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:45:31 dut.10.240.183.197: port start all
02/11/2020 02:45:32 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:45:32 dut.10.240.183.197: port stop all
02/11/2020 02:45:32 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:45:32 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 02:45:32 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:45:32 dut.10.240.183.197: port start all
02/11/2020 02:45:33 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:45:34 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:45:34 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = UDP]
02/11/2020 02:45:34 dut.10.240.183.197: start
02/11/2020 02:45:34 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 02:45:34 tester: ls -d /tmp/tester/
02/11/2020 02:45:34 tester: /tmp/tester/
02/11/2020 02:45:34 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:45:34 tester:
02/11/2020 02:45:45 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:45:45 dut.10.240.183.197: stop
02/11/2020 02:45:45 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:45:45 dut.10.240.183.197: port stop all
02/11/2020 02:45:45 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:45:45 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 02:45:45 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:45:45 dut.10.240.183.197: port start all
02/11/2020 02:45:46 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:45:46 dut.10.240.183.197: port stop all
02/11/2020 02:45:46 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:45:46 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 02:45:46 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:45:46 dut.10.240.183.197: port start all
02/11/2020 02:45:46 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:45:48 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 02:45:48 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = TCP]
02/11/2020 02:45:48 dut.10.240.183.197: start
02/11/2020 02:45:48 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 02:45:48 tester: ls -d /tmp/tester/
02/11/2020 02:45:48 tester: /tmp/tester/
02/11/2020 02:45:48 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:45:48 tester:
02/11/2020 02:45:59 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 02:45:59 dut.10.240.183.197: stop
02/11/2020 02:45:59 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:45:59 dut.10.240.183.197: port stop all
02/11/2020 02:45:59 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:45:59 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 02:45:59 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:45:59 dut.10.240.183.197: port start all
02/11/2020 02:46:00 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:46:00 dut.10.240.183.197: port stop all
02/11/2020 02:46:01 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:46:01 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 02:46:01 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:46:01 dut.10.240.183.197: port start all
02/11/2020 02:46:01 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:46:02 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:46:02 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = UDP][outer_vlan = 1]
02/11/2020 02:46:02 dut.10.240.183.197: start
02/11/2020 02:46:02 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 02:46:02 tester: ls -d /tmp/tester/
02/11/2020 02:46:03 tester: /tmp/tester/
02/11/2020 02:46:03 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:46:03 tester:
02/11/2020 02:46:14 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:46:14 dut.10.240.183.197: stop
02/11/2020 02:46:14 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:46:14 dut.10.240.183.197: port stop all
02/11/2020 02:46:14 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:46:14 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 02:46:14 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:46:14 dut.10.240.183.197: port start all
02/11/2020 02:46:14 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:46:14 dut.10.240.183.197: port stop all
02/11/2020 02:46:15 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:46:15 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 02:46:15 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:46:15 dut.10.240.183.197: port start all
02/11/2020 02:46:16 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:46:17 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 02:46:17 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = TCP][outer_vlan = 1]
02/11/2020 02:46:17 dut.10.240.183.197: start
02/11/2020 02:46:17 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 02:46:17 tester: ls -d /tmp/tester/
02/11/2020 02:46:17 tester: /tmp/tester/
02/11/2020 02:46:17 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:46:17 tester:
02/11/2020 02:46:29 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 02:46:29 dut.10.240.183.197: stop
02/11/2020 02:46:29 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:46:29 dut.10.240.183.197: port stop all
02/11/2020 02:46:29 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:46:29 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 02:46:29 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:46:29 dut.10.240.183.197: port start all
02/11/2020 02:46:29 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:46:29 dut.10.240.183.197: port stop all
02/11/2020 02:46:29 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:46:29 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 02:46:29 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:46:29 dut.10.240.183.197: port start all
02/11/2020 02:46:30 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:46:31 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:46:31 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = UDP][outer_vlan = 1][inner_vlan = 1]
02/11/2020 02:46:31 dut.10.240.183.197: start
02/11/2020 02:46:31 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 02:46:31 tester: ls -d /tmp/tester/
02/11/2020 02:46:31 tester: /tmp/tester/
02/11/2020 02:46:31 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:46:31 tester:
02/11/2020 02:46:43 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 02:46:43 dut.10.240.183.197: stop
02/11/2020 02:46:43 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:46:43 dut.10.240.183.197: port stop all
02/11/2020 02:46:43 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:46:43 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 02:46:43 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:46:43 dut.10.240.183.197: port start all
02/11/2020 02:46:43 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:46:43 dut.10.240.183.197: port stop all
02/11/2020 02:46:43 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 02:46:43 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 02:46:44 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 02:46:44 dut.10.240.183.197: port start all
02/11/2020 02:46:44 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 02:46:45 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 02:46:45 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = TCP][outer_vlan = 1][inner_vlan = 1]
02/11/2020 02:46:45 dut.10.240.183.197: start
02/11/2020 02:46:45 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 02:46:45 tester: ls -d /tmp/tester/
02/11/2020 02:46:45 tester: /tmp/tester/
02/11/2020 02:46:45 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 02:46:45 tester:
02/11/2020 02:46:57 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 02:46:57 dut.10.240.183.197: stop
02/11/2020 02:46:57 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 02:46:57 dut.10.240.183.197: quit
02/11/2020 02:46:59 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 02:46:59 TestVxlan: Test Case test_vxlan_ipv6_checksum_offload Result PASSED:
02/11/2020 02:46:59 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 02:47:00 TestVxlan: Test Case test_vxlan_ipv6_detect Begin
02/11/2020 02:47:00 dut.10.240.183.197:
02/11/2020 02:47:00 tester:
02/11/2020 02:47:00 dut.10.240.183.197: cat config/common_base
02/11/2020 02:47:00 dut.10.240.183.197: cat: config/common_base: No such file or directory
02/11/2020 02:47:00 TestVxlan: Test Case test_vxlan_ipv6_detect Result ERROR: Traceback (most recent call last):
File "/home/autoregression/dts/dts/framework/test_case.py", line 319, in _execute_test_case
case_obj()
File "tests/TestSuite_vxlan.py", line 621, in test_vxlan_ipv6_detect
src_vec_model = re.search("%s=." % self.compile_switch, out).group()[-1]
AttributeError: 'NoneType' object has no attribute 'group'
02/11/2020 02:47:00 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 02:47:01 dts:
TEST SUITE ENDED: TestVxlan
02/11/2020 19:19:55 dts:
TEST SUITE : TestVxlan
02/11/2020 19:19:55 dts: NIC : fortville_25g
02/11/2020 19:19:55 dut.10.240.183.197:
02/11/2020 19:19:55 tester:
02/11/2020 19:19:55 TestVxlan: Test Case test_tunnel_filter Begin
02/11/2020 19:19:55 dut.10.240.183.197:
02/11/2020 19:19:55 tester:
02/11/2020 19:19:55 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --disable-rss --rxq=4 --txq=4 --nb-cores=4 --portmask=0x3
02/11/2020 19:19:57 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
i40e_GLQF_reg_init(): i40e device 0000:86:00.0 changed global register [0x002689a0]. original: 0x00000000, new: 0x00000029
i40e_GLQF_reg_init(): i40e device 0000:86:00.0 changed global register [0x00268ca4]. original: 0x00001840, new: 0x00009420
i40e_aq_debug_write_global_register(): i40e device 0000:86:00.0 changed global register [0x0026c7a0]. original: 0xa8, after: 0x28
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:19:57 dut.10.240.183.197: set fwd rxonly
02/11/2020 19:19:57 dut.10.240.183.197:
Set rxonly packet forwarding mode
02/11/2020 19:19:57 dut.10.240.183.197: set verbose 1
02/11/2020 19:19:57 dut.10.240.183.197:
Change verbose level from 0 to 1
02/11/2020 19:19:57 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 19:19:57 dut.10.240.183.197:
02/11/2020 19:19:57 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 19:19:57 dut.10.240.183.197:
02/11/2020 19:19:57 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan imac-ivlan 1 3
02/11/2020 19:19:57 dut.10.240.183.197:
02/11/2020 19:19:57 dut.10.240.183.197: start
02/11/2020 19:19:57 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 19:19:59 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=114 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 19:19:59 dut.10.240.183.197: stop
02/11/2020 19:19:59 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:19:59 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan imac-ivlan-tenid 1 3
02/11/2020 19:19:59 dut.10.240.183.197:
02/11/2020 19:19:59 dut.10.240.183.197: start
02/11/2020 19:19:59 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 19:20:02 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=114 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 19:20:02 dut.10.240.183.197: stop
02/11/2020 19:20:02 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:20:02 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan imac-tenid 1 3
02/11/2020 19:20:02 dut.10.240.183.197:
02/11/2020 19:20:02 dut.10.240.183.197: start
02/11/2020 19:20:02 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 19:20:04 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=110 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 19:20:04 dut.10.240.183.197: stop
02/11/2020 19:20:04 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:20:04 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan imac 1 3
02/11/2020 19:20:04 dut.10.240.183.197:
02/11/2020 19:20:04 dut.10.240.183.197: start
02/11/2020 19:20:04 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 19:20:06 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=110 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 19:20:06 dut.10.240.183.197: stop
02/11/2020 19:20:06 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:20:06 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan omac-imac-tenid 1 3
02/11/2020 19:20:06 dut.10.240.183.197:
02/11/2020 19:20:06 dut.10.240.183.197: start
02/11/2020 19:20:06 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 19:20:08 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=110 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 19:20:08 dut.10.240.183.197: stop
02/11/2020 19:20:09 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:20:09 dut.10.240.183.197: quit
02/11/2020 19:20:10 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 19:20:10 TestVxlan: Test Case test_tunnel_filter Result PASSED:
02/11/2020 19:20:10 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 19:20:12 TestVxlan: Test Case test_tunnel_filter_invalid Begin
02/11/2020 19:20:12 dut.10.240.183.197:
02/11/2020 19:20:12 tester:
02/11/2020 19:20:12 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --disable-rss --rxq=4 --txq=4 --nb-cores=4 --portmask=0x3
02/11/2020 19:20:13 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:20:13 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 19:20:13 dut.10.240.183.197:
02/11/2020 19:20:13 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 19:20:13 dut.10.240.183.197:
02/11/2020 19:20:13 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:00:00:01 192.168.2.2 1 vxlan omac-imac-tenid 1 3
02/11/2020 19:20:13 dut.10.240.183.197:
Bad arguments
02/11/2020 19:20:13 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.1.256 1 vxlan omac-imac-tenid 1 3
02/11/2020 19:20:13 dut.10.240.183.197:
Bad arguments
02/11/2020 19:20:13 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 4097 vxlan omac-imac-tenid 1 3
02/11/2020 19:20:14 dut.10.240.183.197:
i40e_tunnel_filter_param_check(): Invalid inner VLAN ID
cmd_tunnel_filter_parsed error: (Input/output error)
02/11/2020 19:20:14 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan omac-imac-tenid 1 64
02/11/2020 19:20:14 dut.10.240.183.197:
i40e_tunnel_filter_param_check(): Invalid queue ID
cmd_tunnel_filter_parsed error: (Input/output error)
02/11/2020 19:20:14 dut.10.240.183.197: stop
02/11/2020 19:20:14 dut.10.240.183.197:
Packet forwarding not started
02/11/2020 19:20:14 dut.10.240.183.197: quit
02/11/2020 19:20:17 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 19:20:17 TestVxlan: Test Case test_tunnel_filter_invalid Result PASSED:
02/11/2020 19:20:17 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 19:20:18 TestVxlan: Test Case test_vxlan_ipv4_checksum_offload Begin
02/11/2020 19:20:18 dut.10.240.183.197:
02/11/2020 19:20:18 tester:
02/11/2020 19:20:18 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --portmask=0x3 --enable-rx-cksum
02/11/2020 19:20:20 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:20:20 dut.10.240.183.197: vlan set filter off 0
02/11/2020 19:20:20 dut.10.240.183.197:
02/11/2020 19:20:20 dut.10.240.183.197: set fwd csum
02/11/2020 19:20:20 dut.10.240.183.197:
Set csum packet forwarding mode
02/11/2020 19:20:20 dut.10.240.183.197: port stop all
02/11/2020 19:20:20 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:20:20 dut.10.240.183.197: port stop all
02/11/2020 19:20:20 dut.10.240.183.197:
Stopping ports...
Done
02/11/2020 19:20:20 dut.10.240.183.197: csum set ip hw 1
02/11/2020 19:20:21 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:20:21 dut.10.240.183.197: port start all
02/11/2020 19:20:21 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:20:21 dut.10.240.183.197: port stop all
02/11/2020 19:20:21 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:20:21 dut.10.240.183.197: csum set outer-ip hw 1
02/11/2020 19:20:21 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 19:20:21 dut.10.240.183.197: port start all
02/11/2020 19:20:21 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:20:21 dut.10.240.183.197: port stop all
02/11/2020 19:20:22 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:20:22 dut.10.240.183.197: csum set udp hw 1
02/11/2020 19:20:22 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is hw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 19:20:22 dut.10.240.183.197: port start all
02/11/2020 19:20:22 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:20:22 dut.10.240.183.197: port stop all
02/11/2020 19:20:23 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:20:23 dut.10.240.183.197: csum set tcp hw 1
02/11/2020 19:20:23 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 19:20:23 dut.10.240.183.197: port start all
02/11/2020 19:20:23 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:20:23 dut.10.240.183.197: port stop all
02/11/2020 19:20:24 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:20:24 dut.10.240.183.197: csum set sctp hw 1
02/11/2020 19:20:24 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 19:20:24 dut.10.240.183.197: port start all
02/11/2020 19:20:24 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:20:24 dut.10.240.183.197: port start all
02/11/2020 19:20:24 dut.10.240.183.197:
Port 0 is now not stopped
Port 1 is now not stopped
Please stop the ports first
Done
02/11/2020 19:20:24 dut.10.240.183.197: csum parse-tunnel on 1
02/11/2020 19:20:24 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is hw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 19:20:24 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 19:20:24 dut.10.240.183.197:
02/11/2020 19:20:24 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 19:20:24 dut.10.240.183.197:
02/11/2020 19:20:25 TestVxlan: chksums_ref{}
02/11/2020 19:20:25 TestVxlan: vxlan packet [outer_ip_invalid = 1][outer_udp_dst = 1234]
02/11/2020 19:20:25 dut.10.240.183.197: start
02/11/2020 19:20:26 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:20:26 tester: ls -d /tmp/tester/
02/11/2020 19:20:26 tester: /tmp/tester/
02/11/2020 19:20:26 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:20:26 tester:
02/11/2020 19:20:37 TestVxlan: chksums{}
02/11/2020 19:20:37 dut.10.240.183.197: stop
02/11/2020 19:20:37 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:20:38 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:20:38 TestVxlan: vxlan packet [inner_ip_invalid = 1]
02/11/2020 19:20:38 dut.10.240.183.197: start
02/11/2020 19:20:38 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:20:38 tester: ls -d /tmp/tester/
02/11/2020 19:20:38 tester: /tmp/tester/
02/11/2020 19:20:38 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:20:38 tester:
02/11/2020 19:20:50 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:20:50 dut.10.240.183.197: stop
02/11/2020 19:20:50 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:20:51 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:20:51 TestVxlan: vxlan packet [outer_ip_invalid = 1]
02/11/2020 19:20:51 dut.10.240.183.197: start
02/11/2020 19:20:51 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:20:51 tester: ls -d /tmp/tester/
02/11/2020 19:20:51 tester: /tmp/tester/
02/11/2020 19:20:51 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:20:51 tester:
02/11/2020 19:21:03 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:21:03 dut.10.240.183.197: stop
02/11/2020 19:21:03 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:21:04 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:21:04 TestVxlan: vxlan packet [outer_ip_invalid = 1][inner_ip_invalid = 1]
02/11/2020 19:21:04 dut.10.240.183.197: start
02/11/2020 19:21:04 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:21:04 tester: ls -d /tmp/tester/
02/11/2020 19:21:04 tester: /tmp/tester/
02/11/2020 19:21:04 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:21:04 tester:
02/11/2020 19:21:15 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:21:15 dut.10.240.183.197: stop
02/11/2020 19:21:15 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:21:16 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:21:16 TestVxlan: vxlan packet [inner_l4_invalid = 1]
02/11/2020 19:21:16 dut.10.240.183.197: start
02/11/2020 19:21:16 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:21:16 tester: ls -d /tmp/tester/
02/11/2020 19:21:17 tester: /tmp/tester/
02/11/2020 19:21:17 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:21:17 tester:
02/11/2020 19:21:28 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:21:28 dut.10.240.183.197: stop
02/11/2020 19:21:28 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:21:29 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 19:21:29 TestVxlan: vxlan packet [inner_l4_invalid = 1][inner_l4_type = TCP]
02/11/2020 19:21:29 dut.10.240.183.197: start
02/11/2020 19:21:29 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:21:29 tester: ls -d /tmp/tester/
02/11/2020 19:21:29 tester: /tmp/tester/
02/11/2020 19:21:29 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:21:29 tester:
02/11/2020 19:21:41 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 19:21:41 dut.10.240.183.197: stop
02/11/2020 19:21:41 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:21:42 TestVxlan: chksums_ref{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
02/11/2020 19:21:42 TestVxlan: vxlan packet [inner_l4_invalid = 1][inner_l4_type = SCTP]
02/11/2020 19:21:42 dut.10.240.183.197: start
02/11/2020 19:21:42 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:21:42 tester: ls -d /tmp/tester/
02/11/2020 19:21:42 tester: /tmp/tester/
02/11/2020 19:21:42 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:21:42 tester:
02/11/2020 19:21:53 TestVxlan: chksums{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
02/11/2020 19:21:53 dut.10.240.183.197: stop
02/11/2020 19:21:53 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:21:54 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:21:54 TestVxlan: vxlan packet [outer_vlan = 1][outer_ip_invalid = 1]
02/11/2020 19:21:54 dut.10.240.183.197: start
02/11/2020 19:21:55 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:21:55 tester: ls -d /tmp/tester/
02/11/2020 19:21:55 tester: /tmp/tester/
02/11/2020 19:21:55 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:21:55 tester:
02/11/2020 19:22:06 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:22:06 dut.10.240.183.197: stop
02/11/2020 19:22:06 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:22:07 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:22:07 TestVxlan: vxlan packet [outer_vlan = 1][inner_ip_invalid = 1]
02/11/2020 19:22:07 dut.10.240.183.197: start
02/11/2020 19:22:07 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:22:07 tester: ls -d /tmp/tester/
02/11/2020 19:22:07 tester: /tmp/tester/
02/11/2020 19:22:07 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:22:07 tester:
02/11/2020 19:22:19 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:22:19 dut.10.240.183.197: stop
02/11/2020 19:22:19 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:22:20 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:22:20 TestVxlan: vxlan packet [outer_vlan = 1][outer_ip_invalid = 1][inner_ip_invalid = 1]
02/11/2020 19:22:20 dut.10.240.183.197: start
02/11/2020 19:22:20 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:22:20 tester: ls -d /tmp/tester/
02/11/2020 19:22:20 tester: /tmp/tester/
02/11/2020 19:22:20 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:22:20 tester:
02/11/2020 19:22:32 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:22:32 dut.10.240.183.197: stop
02/11/2020 19:22:32 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:22:33 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:22:33 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][outer_ip_invalid = 1]
02/11/2020 19:22:33 dut.10.240.183.197: start
02/11/2020 19:22:33 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:22:33 tester: ls -d /tmp/tester/
02/11/2020 19:22:33 tester: /tmp/tester/
02/11/2020 19:22:33 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:22:33 tester:
02/11/2020 19:22:44 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:22:44 dut.10.240.183.197: stop
02/11/2020 19:22:44 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:22:45 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:22:45 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][inner_ip_invalid = 1]
02/11/2020 19:22:45 dut.10.240.183.197: start
02/11/2020 19:22:45 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:22:45 tester: ls -d /tmp/tester/
02/11/2020 19:22:46 tester: /tmp/tester/
02/11/2020 19:22:46 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:22:46 tester:
02/11/2020 19:22:57 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:22:57 dut.10.240.183.197: stop
02/11/2020 19:22:57 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:22:58 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:22:58 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][outer_ip_invalid = 1][inner_ip_invalid = 1]
02/11/2020 19:22:58 dut.10.240.183.197: start
02/11/2020 19:22:58 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:22:58 tester: ls -d /tmp/tester/
02/11/2020 19:22:58 tester: /tmp/tester/
02/11/2020 19:22:58 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:22:58 tester:
02/11/2020 19:23:10 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:23:10 dut.10.240.183.197: stop
02/11/2020 19:23:10 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:23:11 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:23:11 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = UDP]
02/11/2020 19:23:11 dut.10.240.183.197: start
02/11/2020 19:23:11 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:23:11 tester: ls -d /tmp/tester/
02/11/2020 19:23:11 tester: /tmp/tester/
02/11/2020 19:23:11 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:23:11 tester:
02/11/2020 19:23:22 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:23:22 dut.10.240.183.197: stop
02/11/2020 19:23:22 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:23:23 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 19:23:23 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = TCP]
02/11/2020 19:23:23 dut.10.240.183.197: start
02/11/2020 19:23:24 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:23:24 tester: ls -d /tmp/tester/
02/11/2020 19:23:24 tester: /tmp/tester/
02/11/2020 19:23:24 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:23:24 tester:
02/11/2020 19:23:35 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 19:23:35 dut.10.240.183.197: stop
02/11/2020 19:23:35 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:23:36 TestVxlan: chksums_ref{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
02/11/2020 19:23:36 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = SCTP]
02/11/2020 19:23:36 dut.10.240.183.197: start
02/11/2020 19:23:36 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 19:23:36 tester: ls -d /tmp/tester/
02/11/2020 19:23:36 tester: /tmp/tester/
02/11/2020 19:23:36 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:23:36 tester:
02/11/2020 19:23:48 TestVxlan: chksums{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
02/11/2020 19:23:48 dut.10.240.183.197: stop
02/11/2020 19:23:48 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:23:48 dut.10.240.183.197: quit
02/11/2020 19:23:50 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 19:23:50 TestVxlan: Test Case test_vxlan_ipv4_checksum_offload Result PASSED:
02/11/2020 19:23:50 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 19:23:51 TestVxlan: Test Case test_vxlan_ipv4_detect Begin
02/11/2020 19:23:51 dut.10.240.183.197:
02/11/2020 19:23:51 tester:
02/11/2020 19:23:51 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --disable-rss --rxq=4 --txq=4 --nb-cores=4 --portmask=0x3
02/11/2020 19:23:53 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:23:53 dut.10.240.183.197: set fwd rxonly
02/11/2020 19:23:53 dut.10.240.183.197:
Set rxonly packet forwarding mode
02/11/2020 19:23:53 dut.10.240.183.197: set verbose 1
02/11/2020 19:23:53 dut.10.240.183.197:
Change verbose level from 0 to 1
02/11/2020 19:23:53 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 19:23:53 dut.10.240.183.197:
02/11/2020 19:23:53 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 19:23:53 dut.10.240.183.197:
02/11/2020 19:23:53 TestVxlan: send vxlan pkts [outer_udp_dst = 1234]
02/11/2020 19:23:53 dut.10.240.183.197: start
02/11/2020 19:23:53 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 19:23:55 dut.10.240.183.197:
Port 0: link state change event
02/11/2020 19:23:55 TestVxlan: Test Case test_vxlan_ipv4_detect Result FAILED: 'Vxlan Packet not detected'
02/11/2020 19:23:55 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 19:23:58 dut.10.240.183.197:
Port 1: link state change event
Killed
[PEXPECT]#
02/11/2020 19:23:58 TestVxlan: Test Case test_vxlan_ipv6_checksum_offload Begin
02/11/2020 19:23:58 dut.10.240.183.197:
02/11/2020 19:23:59 tester:
02/11/2020 19:23:59 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --portmask=0x3 --enable-rx-cksum
02/11/2020 19:24:00 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:24:00 dut.10.240.183.197: vlan set filter off 0
02/11/2020 19:24:00 dut.10.240.183.197:
02/11/2020 19:24:00 dut.10.240.183.197: set fwd csum
02/11/2020 19:24:00 dut.10.240.183.197:
Set csum packet forwarding mode
02/11/2020 19:24:00 dut.10.240.183.197: port stop all
02/11/2020 19:24:01 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:24:01 dut.10.240.183.197: csum set outer-ip hw 1
02/11/2020 19:24:01 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 19:24:01 dut.10.240.183.197: port start all
02/11/2020 19:24:02 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: link state change event
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:24:02 dut.10.240.183.197: port stop all
02/11/2020 19:24:02 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:24:02 dut.10.240.183.197: csum set udp hw 1
02/11/2020 19:24:02 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 19:24:02 dut.10.240.183.197: port start all
02/11/2020 19:24:02 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:24:02 dut.10.240.183.197: port stop all
02/11/2020 19:24:02 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:24:02 dut.10.240.183.197: csum set tcp hw 1
02/11/2020 19:24:03 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 19:24:03 dut.10.240.183.197: port start all
02/11/2020 19:24:03 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:24:03 dut.10.240.183.197: port stop all
02/11/2020 19:24:03 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:24:03 dut.10.240.183.197: csum set sctp hw 1
02/11/2020 19:24:03 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 19:24:03 dut.10.240.183.197: port start all
02/11/2020 19:24:04 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:24:04 dut.10.240.183.197: csum parse-tunnel on 1
02/11/2020 19:24:04 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 19:24:04 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 19:24:04 dut.10.240.183.197:
02/11/2020 19:24:04 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 19:24:04 dut.10.240.183.197:
02/11/2020 19:24:04 dut.10.240.183.197: port stop all
02/11/2020 19:24:04 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:24:04 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 19:24:04 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:24:04 dut.10.240.183.197: port start all
02/11/2020 19:24:05 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:24:05 dut.10.240.183.197: port stop all
02/11/2020 19:24:05 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:24:05 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 19:24:05 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:24:05 dut.10.240.183.197: port start all
02/11/2020 19:24:05 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:24:06 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:24:06 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1]
02/11/2020 19:24:06 dut.10.240.183.197: start
02/11/2020 19:24:07 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 19:24:07 tester: ls -d /tmp/tester/
02/11/2020 19:24:07 tester: /tmp/tester/
02/11/2020 19:24:07 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:24:07 tester:
02/11/2020 19:24:18 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:24:18 dut.10.240.183.197: stop
02/11/2020 19:24:18 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:24:18 dut.10.240.183.197: port stop all
02/11/2020 19:24:18 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:24:18 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 19:24:18 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:24:18 dut.10.240.183.197: port start all
02/11/2020 19:24:19 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:24:19 dut.10.240.183.197: port stop all
02/11/2020 19:24:19 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:24:19 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 19:24:19 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:24:19 dut.10.240.183.197: port start all
02/11/2020 19:24:20 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:24:21 TestVxlan: chksums_ref{}
02/11/2020 19:24:21 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][outer_udp_dst = 1234]
02/11/2020 19:24:21 dut.10.240.183.197: start
02/11/2020 19:24:21 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 19:24:21 tester: ls -d /tmp/tester/
02/11/2020 19:24:21 tester: /tmp/tester/
02/11/2020 19:24:21 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:24:21 tester:
02/11/2020 19:24:32 TestVxlan: chksums{}
02/11/2020 19:24:32 dut.10.240.183.197: stop
02/11/2020 19:24:32 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:24:32 dut.10.240.183.197: port stop all
02/11/2020 19:24:32 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:24:32 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 19:24:32 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:24:32 dut.10.240.183.197: port start all
02/11/2020 19:24:33 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:24:33 dut.10.240.183.197: port stop all
02/11/2020 19:24:34 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:24:34 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 19:24:34 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:24:34 dut.10.240.183.197: port start all
02/11/2020 19:24:34 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:24:35 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:24:35 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_ip_invalid = 1]
02/11/2020 19:24:35 dut.10.240.183.197: start
02/11/2020 19:24:35 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 19:24:35 tester: ls -d /tmp/tester/
02/11/2020 19:24:35 tester: /tmp/tester/
02/11/2020 19:24:35 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:24:36 tester:
02/11/2020 19:24:47 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:24:47 dut.10.240.183.197: stop
02/11/2020 19:24:47 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:24:47 dut.10.240.183.197: port stop all
02/11/2020 19:24:47 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:24:47 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 19:24:47 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:24:47 dut.10.240.183.197: port start all
02/11/2020 19:24:47 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:24:47 dut.10.240.183.197: port stop all
02/11/2020 19:24:48 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:24:48 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 19:24:48 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:24:48 dut.10.240.183.197: port start all
02/11/2020 19:24:49 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:24:50 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:24:50 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = UDP]
02/11/2020 19:24:50 dut.10.240.183.197: start
02/11/2020 19:24:50 dut.10.240.183.197:
Port 0: link state change event
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 19:24:50 tester: ls -d /tmp/tester/
02/11/2020 19:24:50 tester: /tmp/tester/
02/11/2020 19:24:50 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:24:50 tester:
02/11/2020 19:25:02 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:25:02 dut.10.240.183.197: stop
02/11/2020 19:25:02 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:25:02 dut.10.240.183.197: port stop all
02/11/2020 19:25:02 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:25:02 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 19:25:02 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:25:02 dut.10.240.183.197: port start all
02/11/2020 19:25:02 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:25:02 dut.10.240.183.197: port stop all
02/11/2020 19:25:02 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:25:02 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 19:25:03 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:25:03 dut.10.240.183.197: port start all
02/11/2020 19:25:03 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:25:04 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:25:04 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = UDP]
02/11/2020 19:25:04 dut.10.240.183.197: start
02/11/2020 19:25:04 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 19:25:04 tester: ls -d /tmp/tester/
02/11/2020 19:25:04 tester: /tmp/tester/
02/11/2020 19:25:04 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:25:04 tester:
02/11/2020 19:25:16 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:25:16 dut.10.240.183.197: stop
02/11/2020 19:25:16 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:25:16 dut.10.240.183.197: port stop all
02/11/2020 19:25:16 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:25:16 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 19:25:16 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:25:16 dut.10.240.183.197: port start all
02/11/2020 19:25:16 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:25:16 dut.10.240.183.197: port stop all
02/11/2020 19:25:16 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:25:16 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 19:25:17 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:25:17 dut.10.240.183.197: port start all
02/11/2020 19:25:17 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:25:18 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 19:25:18 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = TCP]
02/11/2020 19:25:18 dut.10.240.183.197: start
02/11/2020 19:25:18 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 19:25:18 tester: ls -d /tmp/tester/
02/11/2020 19:25:18 tester: /tmp/tester/
02/11/2020 19:25:18 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:25:18 tester:
02/11/2020 19:25:30 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 19:25:30 dut.10.240.183.197: stop
02/11/2020 19:25:30 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:25:30 dut.10.240.183.197: port stop all
02/11/2020 19:25:30 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:25:30 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 19:25:30 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:25:30 dut.10.240.183.197: port start all
02/11/2020 19:25:30 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:25:30 dut.10.240.183.197: port stop all
02/11/2020 19:25:30 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:25:30 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 19:25:31 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:25:31 dut.10.240.183.197: port start all
02/11/2020 19:25:31 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:25:32 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:25:32 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = UDP][outer_vlan = 1]
02/11/2020 19:25:32 dut.10.240.183.197: start
02/11/2020 19:25:32 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 19:25:32 tester: ls -d /tmp/tester/
02/11/2020 19:25:32 tester: /tmp/tester/
02/11/2020 19:25:32 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:25:32 tester:
02/11/2020 19:25:44 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:25:44 dut.10.240.183.197: stop
02/11/2020 19:25:44 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:25:44 dut.10.240.183.197: port stop all
02/11/2020 19:25:44 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:25:44 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 19:25:44 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:25:44 dut.10.240.183.197: port start all
02/11/2020 19:25:44 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:25:44 dut.10.240.183.197: port stop all
02/11/2020 19:25:45 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:25:45 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 19:25:45 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:25:45 dut.10.240.183.197: port start all
02/11/2020 19:25:46 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:25:47 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 19:25:47 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = TCP][outer_vlan = 1]
02/11/2020 19:25:47 dut.10.240.183.197: start
02/11/2020 19:25:47 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 19:25:47 tester: ls -d /tmp/tester/
02/11/2020 19:25:47 tester: /tmp/tester/
02/11/2020 19:25:47 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:25:47 tester:
02/11/2020 19:25:58 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 19:25:58 dut.10.240.183.197: stop
02/11/2020 19:25:58 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:25:58 dut.10.240.183.197: port stop all
02/11/2020 19:25:59 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:25:59 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 19:25:59 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:25:59 dut.10.240.183.197: port start all
02/11/2020 19:25:59 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:25:59 dut.10.240.183.197: port stop all
02/11/2020 19:25:59 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:25:59 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 19:25:59 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:25:59 dut.10.240.183.197: port start all
02/11/2020 19:26:00 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:26:01 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:26:01 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = UDP][outer_vlan = 1][inner_vlan = 1]
02/11/2020 19:26:01 dut.10.240.183.197: start
02/11/2020 19:26:01 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 19:26:01 tester: ls -d /tmp/tester/
02/11/2020 19:26:01 tester: /tmp/tester/
02/11/2020 19:26:01 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:26:01 tester:
02/11/2020 19:26:12 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 19:26:12 dut.10.240.183.197: stop
02/11/2020 19:26:12 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:26:12 dut.10.240.183.197: port stop all
02/11/2020 19:26:13 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:26:13 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 19:26:13 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:26:13 dut.10.240.183.197: port start all
02/11/2020 19:26:13 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:26:13 dut.10.240.183.197: port stop all
02/11/2020 19:26:13 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 19:26:13 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 19:26:13 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 19:26:13 dut.10.240.183.197: port start all
02/11/2020 19:26:14 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:26:15 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 19:26:15 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = TCP][outer_vlan = 1][inner_vlan = 1]
02/11/2020 19:26:15 dut.10.240.183.197: start
02/11/2020 19:26:15 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 19:26:15 tester: ls -d /tmp/tester/
02/11/2020 19:26:15 tester: /tmp/tester/
02/11/2020 19:26:15 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 19:26:15 tester:
02/11/2020 19:26:26 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 19:26:26 dut.10.240.183.197: stop
02/11/2020 19:26:26 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 19:26:26 dut.10.240.183.197: quit
02/11/2020 19:26:28 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 19:26:28 TestVxlan: Test Case test_vxlan_ipv6_checksum_offload Result PASSED:
02/11/2020 19:26:28 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 19:26:30 TestVxlan: Test Case test_vxlan_ipv6_detect Begin
02/11/2020 19:26:30 dut.10.240.183.197:
02/11/2020 19:26:30 tester:
02/11/2020 19:26:30 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --disable-rss --rxq=4 --txq=4 --nb-cores=4 --portmask=0x3
02/11/2020 19:26:31 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 19:26:31 dut.10.240.183.197: set fwd rxonly
02/11/2020 19:26:31 dut.10.240.183.197:
Set rxonly packet forwarding mode
02/11/2020 19:26:31 dut.10.240.183.197: set verbose 1
02/11/2020 19:26:31 dut.10.240.183.197:
Change verbose level from 0 to 1
02/11/2020 19:26:31 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 19:26:31 dut.10.240.183.197:
02/11/2020 19:26:31 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 19:26:31 dut.10.240.183.197:
02/11/2020 19:26:31 TestVxlan: send vxlan pkts [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][outer_udp_dst = 1234]
02/11/2020 19:26:31 dut.10.240.183.197: start
02/11/2020 19:26:31 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 19:26:34 dut.10.240.183.197:
Port 0: link state change event
Port 1: link state change event
02/11/2020 19:26:34 TestVxlan: Test Case test_vxlan_ipv6_detect Result FAILED: 'Vxlan Packet not detected'
02/11/2020 19:26:34 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 19:26:37 dut.10.240.183.197: Killed
[PEXPECT]#
02/11/2020 19:26:37 dts:
TEST SUITE ENDED: TestVxlan
02/11/2020 20:11:04 dts:
TEST SUITE : TestVxlan
02/11/2020 20:11:04 dts: NIC : fortville_25g
02/11/2020 20:11:04 dut.10.240.183.197:
02/11/2020 20:11:04 tester:
02/11/2020 20:11:04 TestVxlan: Test Case test_tunnel_filter Begin
02/11/2020 20:11:04 dut.10.240.183.197:
02/11/2020 20:11:04 tester:
02/11/2020 20:11:04 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --disable-rss --rxq=4 --txq=4 --nb-cores=4 --portmask=0x3
02/11/2020 20:11:05 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:11:05 dut.10.240.183.197: set fwd rxonly
02/11/2020 20:11:05 dut.10.240.183.197:
Set rxonly packet forwarding mode
02/11/2020 20:11:05 dut.10.240.183.197: set verbose 1
02/11/2020 20:11:05 dut.10.240.183.197:
Change verbose level from 0 to 1
02/11/2020 20:11:05 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 20:11:05 dut.10.240.183.197:
02/11/2020 20:11:05 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 20:11:06 dut.10.240.183.197:
02/11/2020 20:11:06 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan imac-ivlan 1 3
02/11/2020 20:11:06 dut.10.240.183.197:
02/11/2020 20:11:06 dut.10.240.183.197: start
02/11/2020 20:11:06 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 20:11:08 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=114 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:11:08 dut.10.240.183.197: stop
02/11/2020 20:11:08 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:11:08 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan imac-ivlan-tenid 1 3
02/11/2020 20:11:08 dut.10.240.183.197:
02/11/2020 20:11:08 dut.10.240.183.197: start
02/11/2020 20:11:08 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 20:11:10 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=114 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:11:10 dut.10.240.183.197: stop
02/11/2020 20:11:10 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:11:10 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan imac-tenid 1 3
02/11/2020 20:11:10 dut.10.240.183.197:
02/11/2020 20:11:10 dut.10.240.183.197: start
02/11/2020 20:11:10 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 20:11:12 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=110 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:11:12 dut.10.240.183.197: stop
02/11/2020 20:11:12 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:11:12 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan imac 1 3
02/11/2020 20:11:13 dut.10.240.183.197:
02/11/2020 20:11:13 dut.10.240.183.197: start
02/11/2020 20:11:13 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 20:11:15 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=110 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:11:15 dut.10.240.183.197: stop
02/11/2020 20:11:15 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:11:15 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan omac-imac-tenid 1 3
02/11/2020 20:11:15 dut.10.240.183.197:
02/11/2020 20:11:15 dut.10.240.183.197: start
02/11/2020 20:11:15 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 20:11:17 dut.10.240.183.197: port 0/queue 3: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=110 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x3
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:11:17 dut.10.240.183.197: stop
02/11/2020 20:11:17 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 1/Queue= 3 -------
RX-packets: 1 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:11:17 dut.10.240.183.197: quit
02/11/2020 20:11:19 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 20:11:19 TestVxlan: Test Case test_tunnel_filter Result PASSED:
02/11/2020 20:11:19 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 20:11:20 TestVxlan: Test Case test_tunnel_filter_invalid Begin
02/11/2020 20:11:20 dut.10.240.183.197:
02/11/2020 20:11:20 tester:
02/11/2020 20:11:20 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --disable-rss --rxq=4 --txq=4 --nb-cores=4 --portmask=0x3
02/11/2020 20:11:22 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:11:22 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 20:11:22 dut.10.240.183.197:
02/11/2020 20:11:22 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 20:11:22 dut.10.240.183.197:
02/11/2020 20:11:22 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:00:00:01 192.168.2.2 1 vxlan omac-imac-tenid 1 3
02/11/2020 20:11:22 dut.10.240.183.197:
Bad arguments
02/11/2020 20:11:22 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.1.256 1 vxlan omac-imac-tenid 1 3
02/11/2020 20:11:22 dut.10.240.183.197:
Bad arguments
02/11/2020 20:11:22 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 4097 vxlan omac-imac-tenid 1 3
02/11/2020 20:11:22 dut.10.240.183.197:
i40e_tunnel_filter_param_check(): Invalid inner VLAN ID
cmd_tunnel_filter_parsed error: (Input/output error)
02/11/2020 20:11:22 dut.10.240.183.197: tunnel_filter add 0 3c:fd:fe:b8:97:64 00:00:20:00:00:01 192.168.2.2 1 vxlan omac-imac-tenid 1 64
02/11/2020 20:11:22 dut.10.240.183.197:
i40e_tunnel_filter_param_check(): Invalid queue ID
cmd_tunnel_filter_parsed error: (Input/output error)
02/11/2020 20:11:22 dut.10.240.183.197: stop
02/11/2020 20:11:22 dut.10.240.183.197:
Packet forwarding not started
02/11/2020 20:11:22 dut.10.240.183.197: quit
02/11/2020 20:11:24 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 20:11:24 TestVxlan: Test Case test_tunnel_filter_invalid Result PASSED:
02/11/2020 20:11:24 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 20:11:26 TestVxlan: Test Case test_vxlan_ipv4_checksum_offload Begin
02/11/2020 20:11:26 dut.10.240.183.197:
02/11/2020 20:11:26 tester:
02/11/2020 20:11:26 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --portmask=0x3 --enable-rx-cksum
02/11/2020 20:11:27 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:11:27 dut.10.240.183.197: vlan set filter off 0
02/11/2020 20:11:27 dut.10.240.183.197:
02/11/2020 20:11:27 dut.10.240.183.197: set fwd csum
02/11/2020 20:11:27 dut.10.240.183.197:
Set csum packet forwarding mode
02/11/2020 20:11:27 dut.10.240.183.197: port stop all
02/11/2020 20:11:28 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:11:28 dut.10.240.183.197: port stop all
02/11/2020 20:11:28 dut.10.240.183.197:
Stopping ports...
Done
02/11/2020 20:11:28 dut.10.240.183.197: csum set ip hw 1
02/11/2020 20:11:28 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:11:28 dut.10.240.183.197: port start all
02/11/2020 20:11:28 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:11:28 dut.10.240.183.197: port stop all
02/11/2020 20:11:29 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:11:29 dut.10.240.183.197: csum set outer-ip hw 1
02/11/2020 20:11:29 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 20:11:29 dut.10.240.183.197: port start all
02/11/2020 20:11:29 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:11:29 dut.10.240.183.197: port stop all
02/11/2020 20:11:29 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:11:29 dut.10.240.183.197: csum set udp hw 1
02/11/2020 20:11:29 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is hw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 20:11:29 dut.10.240.183.197: port start all
02/11/2020 20:11:30 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:11:30 dut.10.240.183.197: port stop all
02/11/2020 20:11:30 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:11:30 dut.10.240.183.197: csum set tcp hw 1
02/11/2020 20:11:30 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 20:11:30 dut.10.240.183.197: port start all
02/11/2020 20:11:31 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:11:31 dut.10.240.183.197: port stop all
02/11/2020 20:11:31 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:11:31 dut.10.240.183.197: csum set sctp hw 1
02/11/2020 20:11:31 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is hw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 20:11:31 dut.10.240.183.197: port start all
02/11/2020 20:11:31 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:11:31 dut.10.240.183.197: port start all
02/11/2020 20:11:31 dut.10.240.183.197:
Port 0 is now not stopped
Port 1 is now not stopped
Please stop the ports first
Done
02/11/2020 20:11:31 dut.10.240.183.197: csum parse-tunnel on 1
02/11/2020 20:11:31 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is hw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 20:11:31 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 20:11:32 dut.10.240.183.197:
02/11/2020 20:11:32 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 20:11:32 dut.10.240.183.197:
02/11/2020 20:11:33 TestVxlan: chksums_ref{}
02/11/2020 20:11:33 TestVxlan: vxlan packet [outer_ip_invalid = 1][outer_udp_dst = 1234]
02/11/2020 20:11:33 dut.10.240.183.197: start
02/11/2020 20:11:33 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:11:33 tester: ls -d /tmp/tester/
02/11/2020 20:11:33 tester: /tmp/tester/
02/11/2020 20:11:33 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:11:33 tester:
02/11/2020 20:11:44 TestVxlan: chksums{}
02/11/2020 20:11:44 dut.10.240.183.197: stop
02/11/2020 20:11:44 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:11:45 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:11:45 TestVxlan: vxlan packet [inner_ip_invalid = 1]
02/11/2020 20:11:45 dut.10.240.183.197: start
02/11/2020 20:11:45 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:11:45 tester: ls -d /tmp/tester/
02/11/2020 20:11:46 tester: /tmp/tester/
02/11/2020 20:11:46 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:11:46 tester:
02/11/2020 20:11:57 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:11:57 dut.10.240.183.197: stop
02/11/2020 20:11:57 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:11:58 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:11:58 TestVxlan: vxlan packet [outer_ip_invalid = 1]
02/11/2020 20:11:58 dut.10.240.183.197: start
02/11/2020 20:11:58 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:11:58 tester: ls -d /tmp/tester/
02/11/2020 20:11:58 tester: /tmp/tester/
02/11/2020 20:11:58 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:11:58 tester:
02/11/2020 20:12:10 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:12:10 dut.10.240.183.197: stop
02/11/2020 20:12:10 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:12:11 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:12:11 TestVxlan: vxlan packet [outer_ip_invalid = 1][inner_ip_invalid = 1]
02/11/2020 20:12:11 dut.10.240.183.197: start
02/11/2020 20:12:11 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:12:11 tester: ls -d /tmp/tester/
02/11/2020 20:12:11 tester: /tmp/tester/
02/11/2020 20:12:11 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:12:11 tester:
02/11/2020 20:12:22 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:12:22 dut.10.240.183.197: stop
02/11/2020 20:12:22 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:12:23 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:12:23 TestVxlan: vxlan packet [inner_l4_invalid = 1]
02/11/2020 20:12:23 dut.10.240.183.197: start
02/11/2020 20:12:24 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:12:24 tester: ls -d /tmp/tester/
02/11/2020 20:12:24 tester: /tmp/tester/
02/11/2020 20:12:24 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:12:24 tester:
02/11/2020 20:12:35 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:12:35 dut.10.240.183.197: stop
02/11/2020 20:12:35 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:12:36 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 20:12:36 TestVxlan: vxlan packet [inner_l4_invalid = 1][inner_l4_type = TCP]
02/11/2020 20:12:36 dut.10.240.183.197: start
02/11/2020 20:12:36 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:12:36 tester: ls -d /tmp/tester/
02/11/2020 20:12:36 tester: /tmp/tester/
02/11/2020 20:12:36 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:12:36 tester:
02/11/2020 20:12:48 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 20:12:48 dut.10.240.183.197: stop
02/11/2020 20:12:48 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:12:49 TestVxlan: chksums_ref{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
02/11/2020 20:12:49 TestVxlan: vxlan packet [inner_l4_invalid = 1][inner_l4_type = SCTP]
02/11/2020 20:12:49 dut.10.240.183.197: start
02/11/2020 20:12:49 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:12:49 tester: ls -d /tmp/tester/
02/11/2020 20:12:49 tester: /tmp/tester/
02/11/2020 20:12:49 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:12:49 tester:
02/11/2020 20:13:01 TestVxlan: chksums{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
02/11/2020 20:13:01 dut.10.240.183.197: stop
02/11/2020 20:13:01 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:13:02 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:13:02 TestVxlan: vxlan packet [outer_vlan = 1][outer_ip_invalid = 1]
02/11/2020 20:13:02 dut.10.240.183.197: start
02/11/2020 20:13:02 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:13:02 tester: ls -d /tmp/tester/
02/11/2020 20:13:02 tester: /tmp/tester/
02/11/2020 20:13:02 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:13:02 tester:
02/11/2020 20:13:13 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:13:13 dut.10.240.183.197: stop
02/11/2020 20:13:13 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:13:14 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:13:14 TestVxlan: vxlan packet [outer_vlan = 1][inner_ip_invalid = 1]
02/11/2020 20:13:14 dut.10.240.183.197: start
02/11/2020 20:13:14 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:13:14 tester: ls -d /tmp/tester/
02/11/2020 20:13:15 tester: /tmp/tester/
02/11/2020 20:13:15 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:13:15 tester:
02/11/2020 20:13:26 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:13:26 dut.10.240.183.197: stop
02/11/2020 20:13:26 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:13:27 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:13:27 TestVxlan: vxlan packet [outer_vlan = 1][outer_ip_invalid = 1][inner_ip_invalid = 1]
02/11/2020 20:13:27 dut.10.240.183.197: start
02/11/2020 20:13:27 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:13:27 tester: ls -d /tmp/tester/
02/11/2020 20:13:27 tester: /tmp/tester/
02/11/2020 20:13:27 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:13:27 tester:
02/11/2020 20:13:39 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:13:39 dut.10.240.183.197: stop
02/11/2020 20:13:39 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:13:40 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:13:40 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][outer_ip_invalid = 1]
02/11/2020 20:13:40 dut.10.240.183.197: start
02/11/2020 20:13:40 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:13:40 tester: ls -d /tmp/tester/
02/11/2020 20:13:40 tester: /tmp/tester/
02/11/2020 20:13:40 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:13:40 tester:
02/11/2020 20:13:51 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:13:51 dut.10.240.183.197: stop
02/11/2020 20:13:51 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:13:52 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:13:52 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][inner_ip_invalid = 1]
02/11/2020 20:13:52 dut.10.240.183.197: start
02/11/2020 20:13:53 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:13:53 tester: ls -d /tmp/tester/
02/11/2020 20:13:53 tester: /tmp/tester/
02/11/2020 20:13:53 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:13:53 tester:
02/11/2020 20:14:04 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:14:04 dut.10.240.183.197: stop
02/11/2020 20:14:04 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:14:05 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:14:05 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][outer_ip_invalid = 1][inner_ip_invalid = 1]
02/11/2020 20:14:05 dut.10.240.183.197: start
02/11/2020 20:14:05 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:14:05 tester: ls -d /tmp/tester/
02/11/2020 20:14:05 tester: /tmp/tester/
02/11/2020 20:14:05 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:14:05 tester:
02/11/2020 20:14:17 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:14:17 dut.10.240.183.197: stop
02/11/2020 20:14:17 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:14:18 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:14:18 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = UDP]
02/11/2020 20:14:18 dut.10.240.183.197: start
02/11/2020 20:14:18 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:14:18 tester: ls -d /tmp/tester/
02/11/2020 20:14:18 tester: /tmp/tester/
02/11/2020 20:14:18 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:14:18 tester:
02/11/2020 20:14:29 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:14:29 dut.10.240.183.197: stop
02/11/2020 20:14:30 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:14:31 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 20:14:31 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = TCP]
02/11/2020 20:14:31 dut.10.240.183.197: start
02/11/2020 20:14:31 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:14:31 tester: ls -d /tmp/tester/
02/11/2020 20:14:31 tester: /tmp/tester/
02/11/2020 20:14:31 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:14:31 tester:
02/11/2020 20:14:42 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 20:14:42 dut.10.240.183.197: stop
02/11/2020 20:14:42 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:14:43 TestVxlan: chksums_ref{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
02/11/2020 20:14:43 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = SCTP]
02/11/2020 20:14:43 dut.10.240.183.197: start
02/11/2020 20:14:43 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1009e
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1009e - TX RS bit threshold=32
02/11/2020 20:14:43 tester: ls -d /tmp/tester/
02/11/2020 20:14:44 tester: /tmp/tester/
02/11/2020 20:14:44 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:14:44 tester:
02/11/2020 20:14:55 TestVxlan: chksums{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
02/11/2020 20:14:55 dut.10.240.183.197: stop
02/11/2020 20:14:55 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:14:55 dut.10.240.183.197: quit
02/11/2020 20:14:57 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 20:14:57 TestVxlan: Test Case test_vxlan_ipv4_checksum_offload Result PASSED:
02/11/2020 20:14:57 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 20:14:59 TestVxlan: Test Case test_vxlan_ipv4_detect Begin
02/11/2020 20:14:59 dut.10.240.183.197:
02/11/2020 20:14:59 tester:
02/11/2020 20:14:59 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --disable-rss --rxq=4 --txq=4 --nb-cores=4 --portmask=0x3
02/11/2020 20:15:00 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:15:00 dut.10.240.183.197: set fwd rxonly
02/11/2020 20:15:00 dut.10.240.183.197:
Set rxonly packet forwarding mode
02/11/2020 20:15:00 dut.10.240.183.197: set verbose 1
02/11/2020 20:15:00 dut.10.240.183.197:
Change verbose level from 0 to 1
02/11/2020 20:15:00 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 20:15:00 dut.10.240.183.197:
02/11/2020 20:15:00 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 20:15:00 dut.10.240.183.197:
02/11/2020 20:15:00 TestVxlan: send vxlan pkts [outer_udp_dst = 1234]
02/11/2020 20:15:00 dut.10.240.183.197: start
02/11/2020 20:15:01 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 20:15:13 dut.10.240.183.197:
Port 1: link state change event
Port 0: link state change event
port 0/queue 0: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:15:13 TestVxlan: send vxlan pkts [inner_l4_type = UDP]
02/11/2020 20:15:13 dut.10.240.183.197: start
02/11/2020 20:15:13 dut.10.240.183.197:
Packet forwarding already ed
02/11/2020 20:15:25 dut.10.240.183.197: port 0/queue 0: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=110 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x0
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:15:25 TestVxlan: send vxlan pkts [inner_l4_type = TCP]
02/11/2020 20:15:25 dut.10.240.183.197: start
02/11/2020 20:15:25 dut.10.240.183.197:
Packet forwarding already ed
02/11/2020 20:15:37 dut.10.240.183.197: port 0/queue 0: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=122 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x0
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:15:37 TestVxlan: send vxlan pkts [inner_l4_type = SCTP]
02/11/2020 20:15:37 dut.10.240.183.197: start
02/11/2020 20:15:37 dut.10.240.183.197:
Packet forwarding already ed
02/11/2020 20:15:49 dut.10.240.183.197: port 0/queue 0: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x0800 - length=128 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_SCTP - sw ptype: L2_ETHER L3_IPV4 L4_UDP - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1 - Receive queue=0x0
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:15:49 TestVxlan: send vxlan pkts [outer_vlan = 1]
02/11/2020 20:15:49 dut.10.240.183.197: start
02/11/2020 20:15:49 dut.10.240.183.197:
Packet forwarding already ed
02/11/2020 20:16:01 dut.10.240.183.197: port 0/queue 0: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x8100 - length=114 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:16:01 TestVxlan: send vxlan pkts [outer_vlan = 1][inner_vlan = 1]
02/11/2020 20:16:01 dut.10.240.183.197: start
02/11/2020 20:16:01 dut.10.240.183.197:
Packet forwarding already ed
02/11/2020 20:16:14 dut.10.240.183.197: port 0/queue 0: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x8100 - length=118 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:16:14 dut.10.240.183.197: stop
02/11/2020 20:16:14 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
RX-packets: 6 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 6 RX-dropped: 0 RX-total: 6
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 6 RX-dropped: 0 RX-total: 6
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:16:14 dut.10.240.183.197: quit
02/11/2020 20:16:15 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 20:16:15 TestVxlan: Test Case test_vxlan_ipv4_detect Result PASSED:
02/11/2020 20:16:15 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 20:16:17 TestVxlan: Test Case test_vxlan_ipv6_checksum_offload Begin
02/11/2020 20:16:17 dut.10.240.183.197:
02/11/2020 20:16:17 tester:
02/11/2020 20:16:17 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --portmask=0x3 --enable-rx-cksum
02/11/2020 20:16:18 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:16:18 dut.10.240.183.197: vlan set filter off 0
02/11/2020 20:16:18 dut.10.240.183.197:
02/11/2020 20:16:18 dut.10.240.183.197: set fwd csum
02/11/2020 20:16:18 dut.10.240.183.197:
Set csum packet forwarding mode
02/11/2020 20:16:18 dut.10.240.183.197: port stop all
02/11/2020 20:16:19 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:16:19 dut.10.240.183.197: csum set outer-ip hw 1
02/11/2020 20:16:19 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 20:16:19 dut.10.240.183.197: port start all
02/11/2020 20:16:20 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:16:20 dut.10.240.183.197: port stop all
02/11/2020 20:16:20 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:16:20 dut.10.240.183.197: csum set udp hw 1
02/11/2020 20:16:20 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 20:16:20 dut.10.240.183.197: port start all
02/11/2020 20:16:20 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:16:20 dut.10.240.183.197: port stop all
02/11/2020 20:16:20 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:16:20 dut.10.240.183.197: csum set tcp hw 1
02/11/2020 20:16:20 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is sw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 20:16:20 dut.10.240.183.197: port start all
02/11/2020 20:16:21 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:16:21 dut.10.240.183.197: port stop all
02/11/2020 20:16:21 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:16:21 dut.10.240.183.197: csum set sctp hw 1
02/11/2020 20:16:22 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 20:16:22 dut.10.240.183.197: port start all
02/11/2020 20:16:22 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:16:22 dut.10.240.183.197: csum parse-tunnel on 1
02/11/2020 20:16:22 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
02/11/2020 20:16:22 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 20:16:22 dut.10.240.183.197:
02/11/2020 20:16:22 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 20:16:22 dut.10.240.183.197:
02/11/2020 20:16:22 dut.10.240.183.197: port stop all
02/11/2020 20:16:22 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:16:22 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 20:16:23 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:16:23 dut.10.240.183.197: port start all
02/11/2020 20:16:23 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:16:23 dut.10.240.183.197: port stop all
02/11/2020 20:16:23 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:16:23 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 20:16:23 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:16:23 dut.10.240.183.197: port start all
02/11/2020 20:16:24 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:16:25 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:16:25 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1]
02/11/2020 20:16:25 dut.10.240.183.197: start
02/11/2020 20:16:25 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 20:16:25 tester: ls -d /tmp/tester/
02/11/2020 20:16:25 tester: /tmp/tester/
02/11/2020 20:16:25 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:16:25 tester:
02/11/2020 20:16:36 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:16:36 dut.10.240.183.197: stop
02/11/2020 20:16:36 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:16:36 dut.10.240.183.197: port stop all
02/11/2020 20:16:36 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:16:36 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 20:16:37 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:16:37 dut.10.240.183.197: port start all
02/11/2020 20:16:37 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:16:37 dut.10.240.183.197: port stop all
02/11/2020 20:16:37 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:16:37 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 20:16:37 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:16:37 dut.10.240.183.197: port start all
02/11/2020 20:16:38 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:16:39 TestVxlan: chksums_ref{}
02/11/2020 20:16:39 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][outer_udp_dst = 1234]
02/11/2020 20:16:39 dut.10.240.183.197: start
02/11/2020 20:16:39 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 20:16:39 tester: ls -d /tmp/tester/
02/11/2020 20:16:39 tester: /tmp/tester/
02/11/2020 20:16:39 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:16:39 tester:
02/11/2020 20:16:50 TestVxlan: chksums{}
02/11/2020 20:16:50 dut.10.240.183.197: stop
02/11/2020 20:16:50 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:16:50 dut.10.240.183.197: port stop all
02/11/2020 20:16:50 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:16:50 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 20:16:51 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:16:51 dut.10.240.183.197: port start all
02/11/2020 20:16:51 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:16:51 dut.10.240.183.197: port stop all
02/11/2020 20:16:51 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:16:51 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 20:16:51 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:16:51 dut.10.240.183.197: port start all
02/11/2020 20:16:52 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:16:53 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:16:53 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_ip_invalid = 1]
02/11/2020 20:16:53 dut.10.240.183.197: start
02/11/2020 20:16:53 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 20:16:53 tester: ls -d /tmp/tester/
02/11/2020 20:16:53 tester: /tmp/tester/
02/11/2020 20:16:53 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:16:53 tester:
02/11/2020 20:17:04 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:17:04 dut.10.240.183.197: stop
02/11/2020 20:17:04 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 1 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:17:04 dut.10.240.183.197: port stop all
02/11/2020 20:17:04 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:17:04 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 20:17:05 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:17:05 dut.10.240.183.197: port start all
02/11/2020 20:17:05 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:17:05 dut.10.240.183.197: port stop all
02/11/2020 20:17:06 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:17:06 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 20:17:06 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:17:06 dut.10.240.183.197: port start all
02/11/2020 20:17:06 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:17:07 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:17:07 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = UDP]
02/11/2020 20:17:07 dut.10.240.183.197: start
02/11/2020 20:17:07 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 20:17:07 tester: ls -d /tmp/tester/
02/11/2020 20:17:08 tester: /tmp/tester/
02/11/2020 20:17:08 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:17:08 tester:
02/11/2020 20:17:19 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:17:19 dut.10.240.183.197: stop
02/11/2020 20:17:19 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:17:19 dut.10.240.183.197: port stop all
02/11/2020 20:17:19 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:17:19 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 20:17:19 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:17:19 dut.10.240.183.197: port start all
02/11/2020 20:17:20 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:17:20 dut.10.240.183.197: port stop all
02/11/2020 20:17:20 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:17:20 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 20:17:20 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:17:20 dut.10.240.183.197: port start all
02/11/2020 20:17:21 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:17:22 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:17:22 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = UDP]
02/11/2020 20:17:22 dut.10.240.183.197: start
02/11/2020 20:17:22 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 20:17:22 tester: ls -d /tmp/tester/
02/11/2020 20:17:22 tester: /tmp/tester/
02/11/2020 20:17:22 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:17:22 tester:
02/11/2020 20:17:34 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:17:34 dut.10.240.183.197: stop
02/11/2020 20:17:34 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:17:34 dut.10.240.183.197: port stop all
02/11/2020 20:17:34 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:17:34 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 20:17:34 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:17:34 dut.10.240.183.197: port start all
02/11/2020 20:17:34 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:17:34 dut.10.240.183.197: port stop all
02/11/2020 20:17:34 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:17:34 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 20:17:35 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:17:35 dut.10.240.183.197: port start all
02/11/2020 20:17:35 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:17:36 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 20:17:36 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = TCP]
02/11/2020 20:17:36 dut.10.240.183.197: start
02/11/2020 20:17:36 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 20:17:36 tester: ls -d /tmp/tester/
02/11/2020 20:17:36 tester: /tmp/tester/
02/11/2020 20:17:36 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:17:36 tester:
02/11/2020 20:17:48 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 20:17:48 dut.10.240.183.197: stop
02/11/2020 20:17:48 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:17:48 dut.10.240.183.197: port stop all
02/11/2020 20:17:48 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:17:48 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 20:17:48 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:17:48 dut.10.240.183.197: port start all
02/11/2020 20:17:48 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:17:48 dut.10.240.183.197: port stop all
02/11/2020 20:17:48 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:17:48 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 20:17:49 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:17:49 dut.10.240.183.197: port start all
02/11/2020 20:17:49 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:17:50 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:17:50 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = UDP][outer_vlan = 1]
02/11/2020 20:17:50 dut.10.240.183.197: start
02/11/2020 20:17:50 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 20:17:50 tester: ls -d /tmp/tester/
02/11/2020 20:17:50 tester: /tmp/tester/
02/11/2020 20:17:50 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:17:50 tester:
02/11/2020 20:18:02 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:18:02 dut.10.240.183.197: stop
02/11/2020 20:18:02 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:18:02 dut.10.240.183.197: port stop all
02/11/2020 20:18:02 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:18:02 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 20:18:02 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:18:02 dut.10.240.183.197: port start all
02/11/2020 20:18:02 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:18:02 dut.10.240.183.197: port stop all
02/11/2020 20:18:02 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:18:02 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 20:18:03 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:18:03 dut.10.240.183.197: port start all
02/11/2020 20:18:03 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:18:04 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 20:18:04 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = TCP][outer_vlan = 1]
02/11/2020 20:18:04 dut.10.240.183.197: start
02/11/2020 20:18:04 dut.10.240.183.197:
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 20:18:04 tester: ls -d /tmp/tester/
02/11/2020 20:18:04 tester: /tmp/tester/
02/11/2020 20:18:04 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:18:04 tester:
02/11/2020 20:18:16 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 20:18:16 dut.10.240.183.197: stop
02/11/2020 20:18:16 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:18:16 dut.10.240.183.197: port stop all
02/11/2020 20:18:16 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:18:16 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 20:18:16 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:18:16 dut.10.240.183.197: port start all
02/11/2020 20:18:16 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:18:16 dut.10.240.183.197: port stop all
02/11/2020 20:18:17 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:18:17 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 20:18:17 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:18:17 dut.10.240.183.197: port start all
02/11/2020 20:18:18 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:18:19 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:18:19 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = UDP][outer_vlan = 1][inner_vlan = 1]
02/11/2020 20:18:19 dut.10.240.183.197: start
02/11/2020 20:18:19 dut.10.240.183.197:
Port 0: link state change event
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 20:18:19 tester: ls -d /tmp/tester/
02/11/2020 20:18:19 tester: /tmp/tester/
02/11/2020 20:18:19 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:18:19 tester:
02/11/2020 20:18:30 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
02/11/2020 20:18:30 dut.10.240.183.197: stop
02/11/2020 20:18:31 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:18:31 dut.10.240.183.197: port stop all
02/11/2020 20:18:31 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:18:31 dut.10.240.183.197: csum set outer-ip sw 0
02/11/2020 20:18:31 dut.10.240.183.197:
Parse tunnel is off
IP checksum offload is sw
UDP checksum offload is sw
TCP checksum offload is sw
SCTP checksum offload is sw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:18:31 dut.10.240.183.197: port start all
02/11/2020 20:18:31 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:18:31 dut.10.240.183.197: port stop all
02/11/2020 20:18:32 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
02/11/2020 20:18:32 dut.10.240.183.197: csum set outer-ip sw 1
02/11/2020 20:18:32 dut.10.240.183.197:
Parse tunnel is on
IP checksum offload is sw
UDP checksum offload is hw
TCP checksum offload is hw
SCTP checksum offload is hw
Outer-Ip checksum offload is sw
Outer-Udp checksum offload is sw
02/11/2020 20:18:32 dut.10.240.183.197: port start all
02/11/2020 20:18:33 dut.10.240.183.197:
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:18:34 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 20:18:34 TestVxlan: vxlan packet [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_invalid = 1][inner_l4_type = TCP][outer_vlan = 1][inner_vlan = 1]
02/11/2020 20:18:34 dut.10.240.183.197: start
02/11/2020 20:18:34 dut.10.240.183.197:
Port 0: link state change event
csum packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
csum packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=2
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0xe Tx offloads=0x1001c
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0xe
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x1001c - TX RS bit threshold=32
02/11/2020 20:18:34 tester: ls -d /tmp/tester/
02/11/2020 20:18:34 tester: /tmp/tester/
02/11/2020 20:18:34 tester: rm -rf /tmp/tester/sniff_ens11.pcap
02/11/2020 20:18:34 tester:
02/11/2020 20:18:45 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
02/11/2020 20:18:45 dut.10.240.183.197: stop
02/11/2020 20:18:45 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
Bad-ipcsum: 0 Bad-l4csum: 1 Bad-outer-l4csum: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
Bad-ipcsum: 0 Bad-l4csum: 0 Bad-outer-l4csum: 0
TX-packets: 1 TX-dropped: 0 TX-total: 1
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 1 TX-dropped: 0 TX-total: 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:18:45 dut.10.240.183.197: quit
02/11/2020 20:18:47 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 20:18:47 TestVxlan: Test Case test_vxlan_ipv6_checksum_offload Result PASSED:
02/11/2020 20:18:47 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 20:18:48 TestVxlan: Test Case test_vxlan_ipv6_detect Begin
02/11/2020 20:18:49 dut.10.240.183.197:
02/11/2020 20:18:49 tester:
02/11/2020 20:18:49 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --disable-rss --rxq=4 --txq=4 --nb-cores=4 --portmask=0x3
02/11/2020 20:18:50 dut.10.240.183.197: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.0 (socket 1)
EAL: Probe PCI driver: net_i40e (8086:158b) device: 0000:86:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_1>: n=179456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 3C:FD:FE:B8:97:64
Configuring Port 1 (socket 1)
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
02/11/2020 20:18:50 dut.10.240.183.197: set fwd rxonly
02/11/2020 20:18:50 dut.10.240.183.197:
Set rxonly packet forwarding mode
02/11/2020 20:18:50 dut.10.240.183.197: set verbose 1
02/11/2020 20:18:50 dut.10.240.183.197:
Change verbose level from 0 to 1
02/11/2020 20:18:50 dut.10.240.183.197: rx_vxlan_port add 4789 0
02/11/2020 20:18:50 dut.10.240.183.197:
02/11/2020 20:18:50 dut.10.240.183.197: rx_vxlan_port add 4789 1
02/11/2020 20:18:50 dut.10.240.183.197:
02/11/2020 20:18:50 TestVxlan: send vxlan pkts [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][outer_udp_dst = 1234]
02/11/2020 20:18:50 dut.10.240.183.197: start
02/11/2020 20:18:50 dut.10.240.183.197:
rxonly packet forwarding - ports=2 - cores=4 - streams=8 - NUMA support enabled, MP allocation mode: native
Logical Core 32 (socket 1) forwards packets on 2 streams:
RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
Logical Core 33 (socket 1) forwards packets on 2 streams:
RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
Logical Core 34 (socket 1) forwards packets on 2 streams:
RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
Logical Core 35 (socket 1) forwards packets on 2 streams:
RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
rxonly packet forwarding packets/burst=32
nb forwarding cores=4 - nb forwarding ports=2
port 0: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 1: RX queue number: 4 Tx queue number: 4
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=256 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=256 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
02/11/2020 20:19:02 dut.10.240.183.197:
Port 1: link state change event
Port 0: link state change event
port 0/queue 0: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x86dd - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP - sw ptype: L2_ETHER L3_IPV6 L4_UDP - l2_len=14 - l3_len=40 - l4_len=8 - Receive queue=0x0
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:19:02 TestVxlan: send vxlan pkts [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_type = UDP]
02/11/2020 20:19:02 dut.10.240.183.197: start
02/11/2020 20:19:03 dut.10.240.183.197:
Packet forwarding already ed
02/11/2020 20:19:15 dut.10.240.183.197: port 0/queue 0: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x86dd - length=130 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP - sw ptype: L2_ETHER L3_IPV6 L4_UDP - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =24801, Destination UDP port =4789, VNI = 1 - Receive queue=0x0
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:19:15 TestVxlan: send vxlan pkts [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_type = TCP]
02/11/2020 20:19:15 dut.10.240.183.197: start
02/11/2020 20:19:15 dut.10.240.183.197:
Packet forwarding already ed
02/11/2020 20:19:27 dut.10.240.183.197: port 0/queue 0: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x86dd - length=142 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP - sw ptype: L2_ETHER L3_IPV6 L4_UDP - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =24801, Destination UDP port =4789, VNI = 1 - Receive queue=0x0
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:19:27 TestVxlan: send vxlan pkts [outer_ip6_src = FE80:0:0:0:0:0:0:0][outer_ip6_dst = FE80:0:0:0:0:0:0:1][inner_l4_type = SCTP]
02/11/2020 20:19:27 dut.10.240.183.197: start
02/11/2020 20:19:27 dut.10.240.183.197:
Packet forwarding already ed
02/11/2020 20:19:39 dut.10.240.183.197: port 0/queue 0: received 1 packets
src=00:00:10:00:00:00 - dst=3C:FD:FE:B8:97:64 - type=0x86dd - length=148 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_SCTP - sw ptype: L2_ETHER L3_IPV6 L4_UDP - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =24801, Destination UDP port =4789, VNI = 1 - Receive queue=0x0
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
02/11/2020 20:19:39 dut.10.240.183.197: stop
02/11/2020 20:19:39 dut.10.240.183.197:
Telling cores to ...
Waiting for lcores to finish...
------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
RX-packets: 4 TX-packets: 0 TX-dropped: 0
---------------------- Forward statistics for port 0 ----------------------
RX-packets: 4 RX-dropped: 0 RX-total: 4
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 4 RX-dropped: 0 RX-total: 4
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
02/11/2020 20:19:39 dut.10.240.183.197: quit
02/11/2020 20:19:41 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Invalid port_id=0
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Invalid port_id=1
Done
Bye...
02/11/2020 20:19:41 TestVxlan: Test Case test_vxlan_ipv6_detect Result PASSED:
02/11/2020 20:19:41 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
02/11/2020 20:19:42 dts:
TEST SUITE ENDED: TestVxlan
^ permalink raw reply [flat|nested] 3+ messages in thread
* [dts] [PATCH V2] delete modify switch RTE_LIBRTE_I40E_INC_VECTOR in dts
@ 2020-11-02 6:45 Zhou, Jun
2020-11-02 6:44 ` Zhou, JunX W
2020-11-03 4:24 ` Tu, Lijuan
0 siblings, 2 replies; 3+ messages in thread
From: Zhou, Jun @ 2020-11-02 6:45 UTC (permalink / raw)
To: dts; +Cc: Zhou, Jun, Zhou
delete modify switch RTE_LIBRTE_I40E_INC_VECTOR in dts
Signed-off-by: Zhou, Jun <junx.w.zhou@intel.com>
---
tests/TestSuite_nvgre.py | 38 --------------------------------------
tests/TestSuite_vxlan.py | 40 ----------------------------------------
2 files changed, 78 deletions(-)
diff --git a/tests/TestSuite_nvgre.py b/tests/TestSuite_nvgre.py
index ce02a857..22dfde48 100644
--- a/tests/TestSuite_nvgre.py
+++ b/tests/TestSuite_nvgre.py
@@ -656,14 +656,6 @@ class TestNvgre(TestCase):
if self.nic in ["columbiaville_25g","columbiaville_100g"]:
print("CVL support default none VECTOR")
src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- src_vec_model = re.findall("%s=." % self.compile_switch, out)[0][-1]
- if src_vec_model == 'y':
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=n/' config/common_base" % self.compile_switch, "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
# check no nvgre packet
self.nvgre_detect(outer_l3_type = "IPv6", outer_ip_proto=0xFF)
@@ -679,17 +671,6 @@ class TestNvgre(TestCase):
self.nvgre_detect(outer_l3_type = "IPv6", inner_l3_type="IPv6", outer_vlan=1)
# check vlan nvgre + vlan inner and outer packet
self.nvgre_detect(outer_l3_type = "IPv6", inner_l3_type="IPv6", outer_vlan=1, inner_vlan=1)
- if self.nic in ["columbiaville_25g","columbiaville_100g"]:
- print("CVL support default none VECTOR")
- src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- dst_vec_model = re.findall("%s=." % self.compile_switch, out)[0][-1]
- if src_vec_model != dst_vec_model:
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=%s/' config/common_base" % (self.compile_switch, src_vec_model), "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
def test_nvgre_ipv6_checksum_offload(self):
# check nvgre packet + inner IPv6 + inner L4 invalid
@@ -731,14 +712,6 @@ class TestNvgre(TestCase):
if self.nic in ["columbiaville_25g","columbiaville_100g"]:
print("CVL support default none VECTOR")
src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- src_vec_model = re.findall("%s=." % self.compile_switch, out)[0][-1]
- if src_vec_model == 'y':
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=n/' config/common_base" % self.compile_switch, "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
# check no nvgre packet
self.nvgre_detect(outer_ip_proto=0xFF)
@@ -752,17 +725,6 @@ class TestNvgre(TestCase):
self.nvgre_detect(outer_vlan=1)
# check vlan nvgre + vlan inner packet
self.nvgre_detect(outer_vlan=1, inner_vlan=1)
- if self.nic in ["columbiaville_25g","columbiaville_100g"]:
- print("CVL support default none VECTOR")
- src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- dst_vec_model = re.findall("%s=." % self.compile_switch, out)[0][-1]
- if src_vec_model != dst_vec_model:
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=%s/' config/common_base" % (self.compile_switch, src_vec_model), "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
def test_tunnel_filter(self):
# verify tunnel filter feature
diff --git a/tests/TestSuite_vxlan.py b/tests/TestSuite_vxlan.py
index eb324fbd..d080ebc9 100644
--- a/tests/TestSuite_vxlan.py
+++ b/tests/TestSuite_vxlan.py
@@ -558,14 +558,6 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
if self.nic in ["columbiaville_25g","columbiaville_100g"]:
print("CVL support default none VECTOR")
src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- src_vec_model = re.search("%s=." % self.compile_switch, out).group()[-1]
- if src_vec_model == 'y':
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=n/' config/common_base" % self.compile_switch, "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
pmd_temp = "./%(TARGET)s -c %(COREMASK)s -n " + \
"%(CHANNEL)d -- -i --disable-rss --rxq=4 --txq=4" + \
@@ -597,18 +589,6 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
out = self.dut.send_expect("stop", "testpmd>", 10)
self.dut.send_expect("quit", "#", 10)
- if self.nic in ["columbiaville_25g","columbiaville_100g"]:
- print("CVL support default none VECTOR")
- src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- dst_vec_model = re.findall("%s=." % self.compile_switch, out)[0][-1]
- if src_vec_model != dst_vec_model:
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=%s/' config/common_base" % (self.compile_switch, src_vec_model), "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
-
def test_vxlan_ipv6_detect(self):
"""
verify vxlan packet detection with ipv6 header
@@ -616,14 +596,6 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
if self.nic in ["columbiaville_25g","columbiaville_100g"]:
print("CVL support default none VECTOR")
src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- src_vec_model = re.search("%s=." % self.compile_switch, out).group()[-1]
- if src_vec_model == 'y':
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=n/' config/common_base" % self.compile_switch, "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
pmd_temp = "./%(TARGET)s -c %(COREMASK)s -n " + \
"%(CHANNEL)d -- -i --disable-rss --rxq=4 --txq=4" + \
@@ -659,18 +631,6 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
out = self.dut.send_expect("stop", "testpmd>", 10)
self.dut.send_expect("quit", "#", 10)
- if self.nic in ["columbiaville_25g","columbiaville_100g"]:
- print("CVL support default none VECTOR")
- src_vec_model = 'n'
- else:
- out = self.dut.send_expect("cat config/common_base", "]# ", 10)
- dst_vec_model = re.findall("%s=." % self.compile_switch, out)[0][-1]
- if src_vec_model != dst_vec_model:
- self.dut.send_expect("sed -i -e 's/%s=.*$/" % self.compile_switch
- + "%s=%s/' config/common_base" % (self.compile_switch, src_vec_model), "# ", 30)
- self.dut.skip_setup = False
- self.dut.build_install_dpdk(self.target)
-
def test_vxlan_ipv4_checksum_offload(self):
"""
verify vxlan packet checksum offload
--
2.17.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V2] delete modify switch RTE_LIBRTE_I40E_INC_VECTOR in dts
2020-11-02 6:45 [dts] [PATCH V2] delete modify switch RTE_LIBRTE_I40E_INC_VECTOR in dts Zhou, Jun
2020-11-02 6:44 ` Zhou, JunX W
@ 2020-11-03 4:24 ` Tu, Lijuan
1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2020-11-03 4:24 UTC (permalink / raw)
To: Zhou, JunX W, dts; +Cc: Zhou, JunX W, Zhou
> delete modify switch RTE_LIBRTE_I40E_INC_VECTOR in dts
>
> Signed-off-by: Zhou, Jun <junx.w.zhou@intel.com>
Applied
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-11-03 4:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-02 6:45 [dts] [PATCH V2] delete modify switch RTE_LIBRTE_I40E_INC_VECTOR in dts Zhou, Jun
2020-11-02 6:44 ` Zhou, JunX W
2020-11-03 4:24 ` Tu, Lijuan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).