* [dts] [PATCH V1] tests/TestSuite_vxlan/TestSuite_nvgre:Meson default RTE_ IXGBE_ INC_ VECTOR is n
@ 2020-09-24 9:34 xizhan4x
2020-09-24 9:35 ` Zhang, XiX
2020-09-29 8:33 ` Ma, LihongX
0 siblings, 2 replies; 3+ messages in thread
From: xizhan4x @ 2020-09-24 9:34 UTC (permalink / raw)
To: dts; +Cc: xizhan4x
Meson default RTE_IXGBE_ INC_ VECTOR is n , so skip compilation
Signed-off-by: xizhan4x <xix.zhang@intel.com>
---
tests/TestSuite_nvgre.py | 67 +++++++++++++++++++++++++---------------------
tests/TestSuite_vxlan.py | 69 +++++++++++++++++++++++++++---------------------
2 files changed, 76 insertions(+), 60 deletions(-)
diff --git a/tests/TestSuite_nvgre.py b/tests/TestSuite_nvgre.py
index e81b370..b36dc38 100644
--- a/tests/TestSuite_nvgre.py
+++ b/tests/TestSuite_nvgre.py
@@ -468,7 +468,9 @@ class TestNvgre(TestCase):
config.outer_mac_dst = self.dut_rx_port_mac
config.create_pcap()
self.dut.send_expect("start", "testpmd>", 10)
+ time.sleep(3)
config.send_pcap()
+ time.sleep(2)
# check whether detect nvgre type
out = self.dut.get_session_output()
print(out)
@@ -513,7 +515,9 @@ class TestNvgre(TestCase):
# send nvgre packet
config.create_pcap()
self.dut.send_expect("start", "testpmd>", 10)
+ time.sleep(3)
config.send_pcap()
+ time.sleep(2)
out = self.dut.get_session_output()
print(out)
queue = -1
@@ -581,12 +585,11 @@ class TestNvgre(TestCase):
self.logger.info("nvgre packet %s" % arg_str)
out = self.dut.send_expect("start", "testpmd>", 10)
-
+ time.sleep(5)
# create pcap file with supplied arguments
config = NvgreTestConfig(self, **kwargs)
config.outer_mac_dst = self.dut_rx_port_mac
config.create_pcap()
-
# remove temporary files
self.tester.send_expect("rm -rf %s" % config.capture_file, "# ")
# save the capture packet into pcap format
@@ -627,13 +630,14 @@ class TestNvgre(TestCase):
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)
+ if self.dut.build_type != "meson":
+ 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)
@@ -653,13 +657,14 @@ class TestNvgre(TestCase):
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)
+ if self.dut.build_type != "meson":
+ 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
@@ -702,13 +707,14 @@ class TestNvgre(TestCase):
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)
+ if self.dut.build_type != "meson":
+ 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)
@@ -726,13 +732,14 @@ class TestNvgre(TestCase):
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)
+ if self.dut.build_type != "meson":
+ 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 d6cd93c..58a1119 100644
--- a/tests/TestSuite_vxlan.py
+++ b/tests/TestSuite_vxlan.py
@@ -382,9 +382,11 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
config.outer_mac_dst = self.dut_port_mac
config.create_pcap()
self.dut.send_expect("start", "testpmd>", 10)
+ time.sleep(3)
config.send_pcap(self.tester_iface)
# check whether detect vxlan type
+ time.sleep(2)
out = self.dut.get_session_output(timeout=2)
print(out)
self.verify(config.packet_type() in out, "Vxlan Packet not detected")
@@ -438,15 +440,16 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
self.logger.info("vxlan packet %s" % arg_str)
out = self.dut.send_expect("start", "testpmd>", 10)
-
+ time.sleep(3)
# create pcap file with supplied arguments
config = VxlanTestConfig(self, **kwargs)
config.outer_mac_dst = self.dut_port_mac
config.create_pcap()
-
# save the capture packet into pcap format
inst = self.tester.tcpdump_sniff_packets(self.recv_iface)
+ time.sleep(2)
config.send_pcap(self.tester_iface)
+ time.sleep(2)
pkt = self.tester.load_tcpdump_sniff_packets(inst, timeout=3)
# extract the checksum offload from saved pcap file
@@ -505,7 +508,9 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
# send vxlan packet
config.create_pcap()
self.dut.send_expect("start", "testpmd>", 10)
+ time.sleep(2)
config.send_pcap(self.tester_iface)
+ time.sleep(2)
out = self.dut.get_session_output(timeout=2)
print(out)
@@ -528,13 +533,14 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
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)
+ if self.dut.build_type != "meson":
+ 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" + \
@@ -570,13 +576,14 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
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)
+ if self.dut.build_type != "meson":
+ 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):
"""
@@ -586,13 +593,14 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
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)
+ if self.dut.build_type != "meson":
+ 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" + \
@@ -632,13 +640,14 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
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)
+ if self.dut.build_type != "meson":
+ 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):
"""
--
1.8.3.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V1] tests/TestSuite_vxlan/TestSuite_nvgre:Meson default RTE_ IXGBE_ INC_ VECTOR is n
2020-09-24 9:34 [dts] [PATCH V1] tests/TestSuite_vxlan/TestSuite_nvgre:Meson default RTE_ IXGBE_ INC_ VECTOR is n xizhan4x
@ 2020-09-24 9:35 ` Zhang, XiX
2020-09-29 8:33 ` Ma, LihongX
1 sibling, 0 replies; 3+ messages in thread
From: Zhang, XiX @ 2020-09-24 9:35 UTC (permalink / raw)
To: dts
[-- Attachment #1: Type: text/plain, Size: 312 bytes --]
Tested-by: Zhang, XiX <xix.zhang@intel.com>
> -----Original Message-----
> From: Zhang, XiX
> Sent: Thursday, September 24, 2020 5:34 PM
> To: dts@dpdk.org
> Cc: Zhang, XiX <xix.zhang@intel.com>
> Subject: [PATCH V1] tests/TestSuite_vxlan/TestSuite_nvgre:Meson default
> RTE_ IXGBE_ INC_ VECTOR is n
[-- Attachment #2: TestNvgre.log --]
[-- Type: application/octet-stream, Size: 927105 bytes --]
[-- Attachment #3: TestVxlan.log --]
[-- Type: application/octet-stream, Size: 412859 bytes --]
24/09/2020 11:25:54 dts:
TEST SUITE : TestVxlan
24/09/2020 11:25:54 dts: NIC : fortville_25g
24/09/2020 11:25:54 dut.10.240.183.197:
24/09/2020 11:25:55 tester:
24/09/2020 11:25:55 TestVxlan: Test Case test_tunnel_filter Begin
24/09/2020 11:25:55 dut.10.240.183.197:
24/09/2020 11:25:55 tester:
24/09/2020 11:25: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
24/09/2020 11:25:56 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 <mbuf_pool_socket_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
24/09/2020 11:25:56 dut.10.240.183.197: set fwd rxonly
24/09/2020 11:25:56 dut.10.240.183.197:
Set rxonly packet forwarding mode
24/09/2020 11:25:56 dut.10.240.183.197: set verbose 1
24/09/2020 11:25:56 dut.10.240.183.197:
Change verbose level from 0 to 1
24/09/2020 11:25:56 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 11:25:56 dut.10.240.183.197:
24/09/2020 11:25:56 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 11:25:56 dut.10.240.183.197:
24/09/2020 11:25:56 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
24/09/2020 11:25:56 dut.10.240.183.197:
24/09/2020 11:25:56 dut.10.240.183.197: start
24/09/2020 11:25:56 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:26:09 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=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=0x0
ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN
24/09/2020 11:26:09 TestVxlan: Test Case test_tunnel_filter Result FAILED: 'invalid receive queue'
24/09/2020 11:26:09 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 11:26:11 dut.10.240.183.197: Killed
[PEXPECT]#
24/09/2020 11:26:12 TestVxlan: Test Case test_tunnel_filter_invalid Begin
24/09/2020 11:26:12 dut.10.240.183.197:
24/09/2020 11:26:12 tester:
24/09/2020 11:26: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
24/09/2020 11:26: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 <mbuf_pool_socket_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
24/09/2020 11:26:13 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 11:26:13 dut.10.240.183.197:
24/09/2020 11:26:13 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 11:26:13 dut.10.240.183.197:
24/09/2020 11:26: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
24/09/2020 11:26:13 dut.10.240.183.197:
Bad arguments
24/09/2020 11:26: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
24/09/2020 11:26:14 dut.10.240.183.197:
Bad arguments
24/09/2020 11:26: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 4097 vxlan omac-imac-tenid 1 3
24/09/2020 11:26:14 dut.10.240.183.197:
i40e_tunnel_filter_param_check(): Invalid inner VLAN ID
cmd_tunnel_filter_parsed error: (Input/output error)
24/09/2020 11:26: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
24/09/2020 11:26:14 dut.10.240.183.197:
i40e_tunnel_filter_param_check(): Invalid queue ID
cmd_tunnel_filter_parsed error: (Input/output error)
24/09/2020 11:26:14 dut.10.240.183.197: stop
24/09/2020 11:26:14 dut.10.240.183.197:
Packet forwarding not started
24/09/2020 11:26:14 dut.10.240.183.197: quit
24/09/2020 11:26:17 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Done
Shutting down port 1...
Closing ports...
Done
Bye...
24/09/2020 11:26:17 TestVxlan: Test Case test_tunnel_filter_invalid Result PASSED:
24/09/2020 11:26:17 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 11:26:18 TestVxlan: Test Case test_vxlan_ipv4_checksum_offload Begin
24/09/2020 11:26:18 dut.10.240.183.197:
24/09/2020 11:26:18 tester:
24/09/2020 11:26:18 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --portmask=0x3 --enable-rx-cksum
24/09/2020 11:26:19 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 <mbuf_pool_socket_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
24/09/2020 11:26:19 dut.10.240.183.197: vlan set filter off 0
24/09/2020 11:26:19 dut.10.240.183.197:
24/09/2020 11:26:19 dut.10.240.183.197: set fwd csum
24/09/2020 11:26:19 dut.10.240.183.197:
Set csum packet forwarding mode
24/09/2020 11:26:19 dut.10.240.183.197: port stop all
24/09/2020 11:26:20 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:26:20 dut.10.240.183.197: port stop all
24/09/2020 11:26:20 dut.10.240.183.197:
Stopping ports...
Done
24/09/2020 11:26:20 dut.10.240.183.197: csum set ip hw 1
24/09/2020 11:26:20 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
24/09/2020 11:26:20 dut.10.240.183.197: port start all
24/09/2020 11:26: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
24/09/2020 11:26:21 dut.10.240.183.197: port stop all
24/09/2020 11:26:21 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:26:21 dut.10.240.183.197: csum set outer-ip hw 1
24/09/2020 11:26: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
24/09/2020 11:26:21 dut.10.240.183.197: port start all
24/09/2020 11:26: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
24/09/2020 11:26:21 dut.10.240.183.197: port stop all
24/09/2020 11:26:22 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:26:22 dut.10.240.183.197: csum set udp hw 1
24/09/2020 11:26: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
24/09/2020 11:26:22 dut.10.240.183.197: port start all
24/09/2020 11:26: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
24/09/2020 11:26:22 dut.10.240.183.197: port stop all
24/09/2020 11:26:22 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:26:22 dut.10.240.183.197: csum set tcp hw 1
24/09/2020 11:26: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
24/09/2020 11:26:23 dut.10.240.183.197: port start all
24/09/2020 11:26: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
24/09/2020 11:26:23 dut.10.240.183.197: port stop all
24/09/2020 11:26:23 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:26:23 dut.10.240.183.197: csum set sctp hw 1
24/09/2020 11:26: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 hw
Outer-Ip checksum offload is hw
Outer-Udp checksum offload is sw
24/09/2020 11:26:23 dut.10.240.183.197: port start all
24/09/2020 11:26: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
24/09/2020 11:26:24 dut.10.240.183.197: port start all
24/09/2020 11:26:24 dut.10.240.183.197:
Port 0 is now not stopped
Port 1 is now not stopped
Please stop the ports first
Done
24/09/2020 11:26:24 dut.10.240.183.197: csum parse-tunnel on 1
24/09/2020 11:26: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
24/09/2020 11:26:24 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 11:26:24 dut.10.240.183.197:
24/09/2020 11:26:24 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 11:26:24 dut.10.240.183.197:
24/09/2020 11:26:25 TestVxlan: chksums_ref{}
24/09/2020 11:26:25 TestVxlan: vxlan packet [outer_ip_invalid = 1][outer_udp_dst = 1234]
24/09/2020 11:26:25 dut.10.240.183.197: start
24/09/2020 11:26: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:26:32 tester: ls -d /tmp/tester/
24/09/2020 11:26:32 tester: /tmp/tester/
24/09/2020 11:26:32 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:26:32 tester:
24/09/2020 11:26:51 TestVxlan: chksums{}
24/09/2020 11:26:51 dut.10.240.183.197: stop
24/09/2020 11:26:52 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.
24/09/2020 11:26:53 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:26:53 TestVxlan: vxlan packet [inner_ip_invalid = 1]
24/09/2020 11:26:53 dut.10.240.183.197: start
24/09/2020 11:26: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:27:00 tester: ls -d /tmp/tester/
24/09/2020 11:27:00 tester: /tmp/tester/
24/09/2020 11:27:00 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:27:00 tester:
24/09/2020 11:27:19 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:27:19 dut.10.240.183.197: stop
24/09/2020 11:27: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.
24/09/2020 11:27:20 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:27:20 TestVxlan: vxlan packet [outer_ip_invalid = 1]
24/09/2020 11:27:20 dut.10.240.183.197: start
24/09/2020 11:27: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:27:27 tester: ls -d /tmp/tester/
24/09/2020 11:27:27 tester: /tmp/tester/
24/09/2020 11:27:27 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:27:28 tester:
24/09/2020 11:27:47 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:27:47 dut.10.240.183.197: stop
24/09/2020 11:27: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: 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.
24/09/2020 11:27:48 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:27:48 TestVxlan: vxlan packet [outer_ip_invalid = 1][inner_ip_invalid = 1]
24/09/2020 11:27:48 dut.10.240.183.197: start
24/09/2020 11:27: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:27:55 tester: ls -d /tmp/tester/
24/09/2020 11:27:55 tester: /tmp/tester/
24/09/2020 11:27:55 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:27:55 tester:
24/09/2020 11:28:15 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:28:15 dut.10.240.183.197: stop
24/09/2020 11:28: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.
24/09/2020 11:28:16 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:28:16 TestVxlan: vxlan packet [inner_l4_invalid = 1]
24/09/2020 11:28:16 dut.10.240.183.197: start
24/09/2020 11:28: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:28:23 tester: ls -d /tmp/tester/
24/09/2020 11:28:23 tester: /tmp/tester/
24/09/2020 11:28:23 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:28:23 tester:
24/09/2020 11:28:42 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:28:42 dut.10.240.183.197: stop
24/09/2020 11:28: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.
24/09/2020 11:28:43 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 11:28:43 TestVxlan: vxlan packet [inner_l4_invalid = 1][inner_l4_type = TCP]
24/09/2020 11:28:43 dut.10.240.183.197: start
24/09/2020 11:28: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:28:51 tester: ls -d /tmp/tester/
24/09/2020 11:28:51 tester: /tmp/tester/
24/09/2020 11:28:51 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:28:51 tester:
24/09/2020 11:29:10 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 11:29:10 dut.10.240.183.197: stop
24/09/2020 11:29: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: 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.
24/09/2020 11:29:11 TestVxlan: chksums_ref{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
24/09/2020 11:29:11 TestVxlan: vxlan packet [inner_l4_invalid = 1][inner_l4_type = SCTP]
24/09/2020 11:29:11 dut.10.240.183.197: start
24/09/2020 11:29: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:29:18 tester: ls -d /tmp/tester/
24/09/2020 11:29:18 tester: /tmp/tester/
24/09/2020 11:29:18 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:29:18 tester:
24/09/2020 11:29:38 TestVxlan: chksums{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
24/09/2020 11:29:38 dut.10.240.183.197: stop
24/09/2020 11:29:38 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.
24/09/2020 11:29:39 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:29:39 TestVxlan: vxlan packet [outer_vlan = 1][outer_ip_invalid = 1]
24/09/2020 11:29:39 dut.10.240.183.197: start
24/09/2020 11:29: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:29:46 tester: ls -d /tmp/tester/
24/09/2020 11:29:46 tester: /tmp/tester/
24/09/2020 11:29:46 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:29:46 tester:
24/09/2020 11:30:06 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:30:06 dut.10.240.183.197: stop
24/09/2020 11:30: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.
24/09/2020 11:30:07 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:30:07 TestVxlan: vxlan packet [outer_vlan = 1][inner_ip_invalid = 1]
24/09/2020 11:30:07 dut.10.240.183.197: start
24/09/2020 11:30: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:30:14 tester: ls -d /tmp/tester/
24/09/2020 11:30:14 tester: /tmp/tester/
24/09/2020 11:30:14 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:30:14 tester:
24/09/2020 11:30:33 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:30:33 dut.10.240.183.197: stop
24/09/2020 11:30:33 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.
24/09/2020 11:30:34 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:30:34 TestVxlan: vxlan packet [outer_vlan = 1][outer_ip_invalid = 1][inner_ip_invalid = 1]
24/09/2020 11:30:34 dut.10.240.183.197: start
24/09/2020 11:30: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:30:41 tester: ls -d /tmp/tester/
24/09/2020 11:30:42 tester: /tmp/tester/
24/09/2020 11:30:42 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:30:42 tester:
24/09/2020 11:31:01 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:31:01 dut.10.240.183.197: stop
24/09/2020 11:31: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: 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.
24/09/2020 11:31:02 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:31:02 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][outer_ip_invalid = 1]
24/09/2020 11:31:02 dut.10.240.183.197: start
24/09/2020 11:31: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:31:09 tester: ls -d /tmp/tester/
24/09/2020 11:31:09 tester: /tmp/tester/
24/09/2020 11:31:09 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:31:09 tester:
24/09/2020 11:31:29 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:31:29 dut.10.240.183.197: stop
24/09/2020 11:31: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: 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.
24/09/2020 11:31:30 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:31:30 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][inner_ip_invalid = 1]
24/09/2020 11:31:30 dut.10.240.183.197: start
24/09/2020 11:31:30 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:31:37 tester: ls -d /tmp/tester/
24/09/2020 11:31:37 tester: /tmp/tester/
24/09/2020 11:31:37 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:31:37 tester:
24/09/2020 11:31:57 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:31:57 dut.10.240.183.197: stop
24/09/2020 11:31: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.
24/09/2020 11:31:58 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:31:58 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][outer_ip_invalid = 1][inner_ip_invalid = 1]
24/09/2020 11:31:58 dut.10.240.183.197: start
24/09/2020 11:31: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:32:05 tester: ls -d /tmp/tester/
24/09/2020 11:32:05 tester: /tmp/tester/
24/09/2020 11:32:05 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:32:05 tester:
24/09/2020 11:32:24 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:32:24 dut.10.240.183.197: stop
24/09/2020 11:32:24 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.
24/09/2020 11:32:25 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:32:25 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = UDP]
24/09/2020 11:32:25 dut.10.240.183.197: start
24/09/2020 11:32: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:32:32 tester: ls -d /tmp/tester/
24/09/2020 11:32:33 tester: /tmp/tester/
24/09/2020 11:32:33 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:32:33 tester:
24/09/2020 11:32:52 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:32:52 dut.10.240.183.197: stop
24/09/2020 11:32:52 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.
24/09/2020 11:32:53 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 11:32:53 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = TCP]
24/09/2020 11:32:53 dut.10.240.183.197: start
24/09/2020 11:32: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:33:00 tester: ls -d /tmp/tester/
24/09/2020 11:33:00 tester: /tmp/tester/
24/09/2020 11:33:00 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:33:00 tester:
24/09/2020 11:33:20 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 11:33:20 dut.10.240.183.197: stop
24/09/2020 11:33:20 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.
24/09/2020 11:33:21 TestVxlan: chksums_ref{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
24/09/2020 11:33:21 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = SCTP]
24/09/2020 11:33:21 dut.10.240.183.197: start
24/09/2020 11:33: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:33:28 tester: ls -d /tmp/tester/
24/09/2020 11:33:28 tester: /tmp/tester/
24/09/2020 11:33:28 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:33:28 tester:
24/09/2020 11:33:47 TestVxlan: chksums{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
24/09/2020 11:33:47 dut.10.240.183.197: stop
24/09/2020 11:33: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: 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.
24/09/2020 11:33:47 dut.10.240.183.197: quit
24/09/2020 11:33:49 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Done
Shutting down port 1...
Closing ports...
Done
Bye...
24/09/2020 11:33:49 TestVxlan: Test Case test_vxlan_ipv4_checksum_offload Result PASSED:
24/09/2020 11:33:49 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 11:33:51 TestVxlan: Test Case test_vxlan_ipv4_detect Begin
24/09/2020 11:33:51 dut.10.240.183.197:
24/09/2020 11:33:51 tester:
24/09/2020 11:33:51 dut.10.240.183.197: cat config/common_base
24/09/2020 11:33:51 dut.10.240.183.197: cat: config/common_base: No such file or directory
24/09/2020 11:33:51 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 538, in test_vxlan_ipv4_detect
src_vec_model = re.search("%s=." % self.compile_switch, out).group()[-1]
AttributeError: 'NoneType' object has no attribute 'group'
24/09/2020 11:33:51 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 11:33:51 TestVxlan: Test Case test_vxlan_ipv6_checksum_offload Begin
24/09/2020 11:33:52 dut.10.240.183.197:
24/09/2020 11:33:52 tester:
24/09/2020 11:33:52 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --portmask=0x3 --enable-rx-cksum
24/09/2020 11:33: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 <mbuf_pool_socket_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
24/09/2020 11:33:53 dut.10.240.183.197: vlan set filter off 0
24/09/2020 11:33:53 dut.10.240.183.197:
24/09/2020 11:33:53 dut.10.240.183.197: set fwd csum
24/09/2020 11:33:53 dut.10.240.183.197:
Set csum packet forwarding mode
24/09/2020 11:33:53 dut.10.240.183.197: port stop all
24/09/2020 11:33:54 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:33:54 dut.10.240.183.197: csum set outer-ip hw 1
24/09/2020 11:33:54 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
24/09/2020 11:33:54 dut.10.240.183.197: port start all
24/09/2020 11:33:54 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
24/09/2020 11:33:54 dut.10.240.183.197: port stop all
24/09/2020 11:33:54 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:33:54 dut.10.240.183.197: csum set udp hw 1
24/09/2020 11:33:55 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
24/09/2020 11:33:55 dut.10.240.183.197: port start all
24/09/2020 11:33:55 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
24/09/2020 11:33:55 dut.10.240.183.197: port stop all
24/09/2020 11:33:55 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:33:55 dut.10.240.183.197: csum set tcp hw 1
24/09/2020 11:33:55 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
24/09/2020 11:33:55 dut.10.240.183.197: port start all
24/09/2020 11:33:55 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
24/09/2020 11:33:55 dut.10.240.183.197: port stop all
24/09/2020 11:33:56 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:33:56 dut.10.240.183.197: csum set sctp hw 1
24/09/2020 11:33:56 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
24/09/2020 11:33:56 dut.10.240.183.197: port start all
24/09/2020 11:33:56 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
24/09/2020 11:33:56 dut.10.240.183.197: csum parse-tunnel on 1
24/09/2020 11:33:56 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
24/09/2020 11:33:56 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 11:33:56 dut.10.240.183.197:
24/09/2020 11:33:56 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 11:33:56 dut.10.240.183.197:
24/09/2020 11:33:56 dut.10.240.183.197: port stop all
24/09/2020 11:33:57 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:33:57 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 11:33:57 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
24/09/2020 11:33:57 dut.10.240.183.197: port start all
24/09/2020 11:33:57 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
24/09/2020 11:33:57 dut.10.240.183.197: port stop all
24/09/2020 11:33:58 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:33:58 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 11:33:58 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
24/09/2020 11:33:58 dut.10.240.183.197: port start all
24/09/2020 11:33: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
24/09/2020 11:33:59 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:33:59 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]
24/09/2020 11:33:59 dut.10.240.183.197: start
24/09/2020 11:33:59 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:34:06 tester: ls -d /tmp/tester/
24/09/2020 11:34:06 tester: /tmp/tester/
24/09/2020 11:34:06 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:34:06 tester:
24/09/2020 11:34:26 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:34:26 dut.10.240.183.197: stop
24/09/2020 11:34: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: 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.
24/09/2020 11:34:26 dut.10.240.183.197: port stop all
24/09/2020 11:34:26 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:34:26 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 11:34:26 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
24/09/2020 11:34:26 dut.10.240.183.197: port start all
24/09/2020 11:34:26 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
24/09/2020 11:34:26 dut.10.240.183.197: port stop all
24/09/2020 11:34:27 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:34:27 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 11:34:27 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
24/09/2020 11:34:27 dut.10.240.183.197: port start all
24/09/2020 11:34: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
24/09/2020 11:34:29 TestVxlan: chksums_ref{}
24/09/2020 11:34:29 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]
24/09/2020 11:34:29 dut.10.240.183.197: start
24/09/2020 11:34: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:34:36 tester: ls -d /tmp/tester/
24/09/2020 11:34:36 tester: /tmp/tester/
24/09/2020 11:34:36 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:34:36 tester:
24/09/2020 11:34:55 TestVxlan: chksums{}
24/09/2020 11:34:55 dut.10.240.183.197: stop
24/09/2020 11:34: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: 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.
24/09/2020 11:34:55 dut.10.240.183.197: port stop all
24/09/2020 11:34:56 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:34:56 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 11:34:56 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
24/09/2020 11:34:56 dut.10.240.183.197: port start all
24/09/2020 11:34:56 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
24/09/2020 11:34:56 dut.10.240.183.197: port stop all
24/09/2020 11:34:56 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:34:56 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 11:34:56 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
24/09/2020 11:34:56 dut.10.240.183.197: port start all
24/09/2020 11:34:57 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
24/09/2020 11:34:58 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:34:58 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]
24/09/2020 11:34:58 dut.10.240.183.197: start
24/09/2020 11:34: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:35:05 tester: ls -d /tmp/tester/
24/09/2020 11:35:05 tester: /tmp/tester/
24/09/2020 11:35:05 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:35:05 tester:
24/09/2020 11:35:25 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:35:25 dut.10.240.183.197: stop
24/09/2020 11:35: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: 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.
24/09/2020 11:35:25 dut.10.240.183.197: port stop all
24/09/2020 11:35:25 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:35:25 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 11:35:25 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
24/09/2020 11:35:25 dut.10.240.183.197: port start all
24/09/2020 11:35:25 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
24/09/2020 11:35:25 dut.10.240.183.197: port stop all
24/09/2020 11:35:25 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:35:25 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 11:35:25 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
24/09/2020 11:35:25 dut.10.240.183.197: port start all
24/09/2020 11:35:26 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
24/09/2020 11:35:27 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:35:27 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]
24/09/2020 11:35:27 dut.10.240.183.197: start
24/09/2020 11:35: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:35:34 tester: ls -d /tmp/tester/
24/09/2020 11:35:34 tester: /tmp/tester/
24/09/2020 11:35:34 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:35:34 tester:
24/09/2020 11:35:53 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:35:53 dut.10.240.183.197: stop
24/09/2020 11:35: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.
24/09/2020 11:35:53 dut.10.240.183.197: port stop all
24/09/2020 11:35:54 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:35:54 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 11:35:54 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
24/09/2020 11:35:54 dut.10.240.183.197: port start all
24/09/2020 11:35:54 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
24/09/2020 11:35:54 dut.10.240.183.197: port stop all
24/09/2020 11:35:55 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:35:55 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 11:35:55 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
24/09/2020 11:35:55 dut.10.240.183.197: port start all
24/09/2020 11:35:55 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
24/09/2020 11:35:56 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:35:56 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]
24/09/2020 11:35:56 dut.10.240.183.197: start
24/09/2020 11:35:56 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:36:03 tester: ls -d /tmp/tester/
24/09/2020 11:36:04 tester: /tmp/tester/
24/09/2020 11:36:04 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:36:04 tester:
24/09/2020 11:36:23 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:36:23 dut.10.240.183.197: stop
24/09/2020 11:36:23 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.
24/09/2020 11:36:23 dut.10.240.183.197: port stop all
24/09/2020 11:36:23 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:36:23 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 11:36: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
24/09/2020 11:36:23 dut.10.240.183.197: port start all
24/09/2020 11:36:24 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
24/09/2020 11:36:24 dut.10.240.183.197: port stop all
24/09/2020 11:36:24 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:36:24 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 11:36:24 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
24/09/2020 11:36:24 dut.10.240.183.197: port start all
24/09/2020 11:36:25 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
24/09/2020 11:36:26 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 11:36:26 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]
24/09/2020 11:36:26 dut.10.240.183.197: start
24/09/2020 11:36: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:36:33 tester: ls -d /tmp/tester/
24/09/2020 11:36:33 tester: /tmp/tester/
24/09/2020 11:36:33 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:36:33 tester:
24/09/2020 11:36:52 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 11:36:52 dut.10.240.183.197: stop
24/09/2020 11:36:52 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.
24/09/2020 11:36:52 dut.10.240.183.197: port stop all
24/09/2020 11:36:53 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:36:53 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 11:36:53 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
24/09/2020 11:36:53 dut.10.240.183.197: port start all
24/09/2020 11:36:53 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
24/09/2020 11:36:53 dut.10.240.183.197: port stop all
24/09/2020 11:36:53 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:36:53 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 11:36:53 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
24/09/2020 11:36:53 dut.10.240.183.197: port start all
24/09/2020 11:36:53 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
24/09/2020 11:36:54 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:36:54 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]
24/09/2020 11:36:54 dut.10.240.183.197: start
24/09/2020 11:36: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:37:01 tester: ls -d /tmp/tester/
24/09/2020 11:37:02 tester: /tmp/tester/
24/09/2020 11:37:02 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:37:02 tester:
24/09/2020 11:37:21 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:37:21 dut.10.240.183.197: stop
24/09/2020 11:37:21 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.
24/09/2020 11:37:21 dut.10.240.183.197: port stop all
24/09/2020 11:37:21 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:37:21 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 11:37:21 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
24/09/2020 11:37:21 dut.10.240.183.197: port start all
24/09/2020 11:37:22 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
24/09/2020 11:37:22 dut.10.240.183.197: port stop all
24/09/2020 11:37:23 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:37:23 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 11:37: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
24/09/2020 11:37:23 dut.10.240.183.197: port start all
24/09/2020 11:37: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
24/09/2020 11:37:25 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 11:37: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][inner_l4_invalid = 1][inner_l4_type = TCP][outer_vlan = 1]
24/09/2020 11:37:25 dut.10.240.183.197: start
24/09/2020 11:37:25 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:37:32 tester: ls -d /tmp/tester/
24/09/2020 11:37:32 tester: /tmp/tester/
24/09/2020 11:37:32 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:37:32 tester:
24/09/2020 11:37:51 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 11:37:51 dut.10.240.183.197: stop
24/09/2020 11:37: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: 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.
24/09/2020 11:37:51 dut.10.240.183.197: port stop all
24/09/2020 11:37:51 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:37:51 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 11:37:52 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
24/09/2020 11:37:52 dut.10.240.183.197: port start all
24/09/2020 11:37:52 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
24/09/2020 11:37:52 dut.10.240.183.197: port stop all
24/09/2020 11:37:52 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:37:52 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 11:37:52 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
24/09/2020 11:37:52 dut.10.240.183.197: port start all
24/09/2020 11:37:53 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
24/09/2020 11:37:54 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:37:54 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]
24/09/2020 11:37:54 dut.10.240.183.197: start
24/09/2020 11:37: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:38:01 tester: ls -d /tmp/tester/
24/09/2020 11:38:01 tester: /tmp/tester/
24/09/2020 11:38:01 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:38:01 tester:
24/09/2020 11:38:20 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 11:38:20 dut.10.240.183.197: stop
24/09/2020 11:38:20 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.
24/09/2020 11:38:20 dut.10.240.183.197: port stop all
24/09/2020 11:38:20 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:38:20 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 11:38:21 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
24/09/2020 11:38:21 dut.10.240.183.197: port start all
24/09/2020 11:38:21 dut.10.240.183.197:
Configuring Port 0 (socket 1)
Port 1: link state change event
Port 0: 3C:FD:FE:B8:97:64
Port 1: 3C:FD:FE:B8:97:65
Checking link statuses...
Done
24/09/2020 11:38:21 dut.10.240.183.197: port stop all
24/09/2020 11:38:22 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 11:38:22 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 11:38: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 sw
Outer-Udp checksum offload is sw
24/09/2020 11:38:22 dut.10.240.183.197: port start all
24/09/2020 11:38: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
24/09/2020 11:38:23 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 11:38:23 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]
24/09/2020 11:38:23 dut.10.240.183.197: start
24/09/2020 11:38: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 11:38:30 tester: ls -d /tmp/tester/
24/09/2020 11:38:31 tester: /tmp/tester/
24/09/2020 11:38:31 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 11:38:31 tester:
24/09/2020 11:38:50 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 11:38:50 dut.10.240.183.197: stop
24/09/2020 11:38: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: 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.
24/09/2020 11:38:50 dut.10.240.183.197: quit
24/09/2020 11:38:52 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Done
Shutting down port 1...
Closing ports...
Done
Bye...
24/09/2020 11:38:52 TestVxlan: Test Case test_vxlan_ipv6_checksum_offload Result PASSED:
24/09/2020 11:38:52 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 11:38:54 TestVxlan: Test Case test_vxlan_ipv6_detect Begin
24/09/2020 11:38:54 dut.10.240.183.197:
24/09/2020 11:38:54 tester:
24/09/2020 11:38:54 dut.10.240.183.197: cat config/common_base
24/09/2020 11:38:54 dut.10.240.183.197: cat: config/common_base: No such file or directory
24/09/2020 11:38:54 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 596, in test_vxlan_ipv6_detect
src_vec_model = re.search("%s=." % self.compile_switch, out).group()[-1]
AttributeError: 'NoneType' object has no attribute 'group'
24/09/2020 11:38:54 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 11:38:55 dts:
TEST SUITE ENDED: TestVxlan
24/09/2020 19:31:02 dts:
TEST SUITE : TestVxlan
24/09/2020 19:31:02 dts: NIC : fortville_25g
24/09/2020 19:31:02 dut.10.240.183.197:
24/09/2020 19:31:02 tester:
24/09/2020 19:31:02 TestVxlan: Test Case test_tunnel_filter Begin
24/09/2020 19:31:02 dut.10.240.183.197:
24/09/2020 19:31:02 tester:
24/09/2020 19:31:02 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
24/09/2020 19:31:03 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 <mbuf_pool_socket_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
24/09/2020 19:31:03 dut.10.240.183.197: set fwd rxonly
24/09/2020 19:31:03 dut.10.240.183.197:
Set rxonly packet forwarding mode
24/09/2020 19:31:03 dut.10.240.183.197: set verbose 1
24/09/2020 19:31:03 dut.10.240.183.197:
Change verbose level from 0 to 1
24/09/2020 19:31:03 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 19:31:04 dut.10.240.183.197:
24/09/2020 19:31:04 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 19:31:04 dut.10.240.183.197:
24/09/2020 19:31: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-ivlan 1 3
24/09/2020 19:31:04 dut.10.240.183.197:
24/09/2020 19:31:04 dut.10.240.183.197: start
24/09/2020 19:31: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:31:16 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
24/09/2020 19:31:16 dut.10.240.183.197: stop
24/09/2020 19:31:16 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.
24/09/2020 19:31:16 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
24/09/2020 19:31:16 dut.10.240.183.197:
24/09/2020 19:31:16 dut.10.240.183.197: start
24/09/2020 19:31:16 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:31:28 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
24/09/2020 19:31:28 dut.10.240.183.197: stop
24/09/2020 19:31:28 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.
24/09/2020 19:31:28 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
24/09/2020 19:31:28 dut.10.240.183.197:
24/09/2020 19:31:28 dut.10.240.183.197: start
24/09/2020 19:31:28 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:31:41 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
24/09/2020 19:31:41 dut.10.240.183.197: stop
24/09/2020 19:31:41 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.
24/09/2020 19:31:41 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
24/09/2020 19:31:41 dut.10.240.183.197:
24/09/2020 19:31:41 dut.10.240.183.197: start
24/09/2020 19:31:41 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:31:53 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
24/09/2020 19:31:53 dut.10.240.183.197: stop
24/09/2020 19:31:53 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.
24/09/2020 19:31:53 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
24/09/2020 19:31:53 dut.10.240.183.197:
24/09/2020 19:31:53 dut.10.240.183.197: start
24/09/2020 19:31: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:32:05 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
24/09/2020 19:32:05 dut.10.240.183.197: stop
24/09/2020 19:32:05 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.
24/09/2020 19:32:05 dut.10.240.183.197: quit
24/09/2020 19:32:07 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Done
Shutting down port 1...
Closing ports...
Done
Bye...
24/09/2020 19:32:07 TestVxlan: Test Case test_tunnel_filter Result PASSED:
24/09/2020 19:32:07 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 19:32:08 TestVxlan: Test Case test_tunnel_filter_invalid Begin
24/09/2020 19:32:08 dut.10.240.183.197:
24/09/2020 19:32:09 tester:
24/09/2020 19:32:09 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
24/09/2020 19:32:10 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 <mbuf_pool_socket_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
24/09/2020 19:32:10 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 19:32:10 dut.10.240.183.197:
24/09/2020 19:32:10 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 19:32:10 dut.10.240.183.197:
24/09/2020 19:32:10 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
24/09/2020 19:32:10 dut.10.240.183.197:
Bad arguments
24/09/2020 19:32:10 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
24/09/2020 19:32:10 dut.10.240.183.197:
Bad arguments
24/09/2020 19:32: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 4097 vxlan omac-imac-tenid 1 3
24/09/2020 19:32:10 dut.10.240.183.197:
i40e_tunnel_filter_param_check(): Invalid inner VLAN ID
cmd_tunnel_filter_parsed error: (Input/output error)
24/09/2020 19:32: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 omac-imac-tenid 1 64
24/09/2020 19:32:10 dut.10.240.183.197:
i40e_tunnel_filter_param_check(): Invalid queue ID
cmd_tunnel_filter_parsed error: (Input/output error)
24/09/2020 19:32:10 dut.10.240.183.197: stop
24/09/2020 19:32:10 dut.10.240.183.197:
Packet forwarding not started
24/09/2020 19:32:10 dut.10.240.183.197: quit
24/09/2020 19:32:12 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Done
Shutting down port 1...
Closing ports...
Done
Bye...
24/09/2020 19:32:12 TestVxlan: Test Case test_tunnel_filter_invalid Result PASSED:
24/09/2020 19:32:12 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 19:32:14 TestVxlan: Test Case test_vxlan_ipv4_checksum_offload Begin
24/09/2020 19:32:14 dut.10.240.183.197:
24/09/2020 19:32:14 tester:
24/09/2020 19:32:14 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --portmask=0x3 --enable-rx-cksum
24/09/2020 19:32:15 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 <mbuf_pool_socket_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
24/09/2020 19:32:15 dut.10.240.183.197: vlan set filter off 0
24/09/2020 19:32:15 dut.10.240.183.197:
24/09/2020 19:32:15 dut.10.240.183.197: set fwd csum
24/09/2020 19:32:15 dut.10.240.183.197:
Set csum packet forwarding mode
24/09/2020 19:32:15 dut.10.240.183.197: port stop all
24/09/2020 19:32:16 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:32:16 dut.10.240.183.197: port stop all
24/09/2020 19:32:16 dut.10.240.183.197:
Stopping ports...
Done
24/09/2020 19:32:16 dut.10.240.183.197: csum set ip hw 1
24/09/2020 19:32:16 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
24/09/2020 19:32:16 dut.10.240.183.197: port start all
24/09/2020 19:32: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
24/09/2020 19:32:16 dut.10.240.183.197: port stop all
24/09/2020 19:32:17 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:32:17 dut.10.240.183.197: csum set outer-ip hw 1
24/09/2020 19:32:17 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
24/09/2020 19:32:17 dut.10.240.183.197: port start all
24/09/2020 19:32: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
24/09/2020 19:32:17 dut.10.240.183.197: port stop all
24/09/2020 19:32:17 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:32:17 dut.10.240.183.197: csum set udp hw 1
24/09/2020 19:32:17 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
24/09/2020 19:32:17 dut.10.240.183.197: port start all
24/09/2020 19:32: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
24/09/2020 19:32:18 dut.10.240.183.197: port stop all
24/09/2020 19:32:18 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:32:18 dut.10.240.183.197: csum set tcp hw 1
24/09/2020 19:32:18 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
24/09/2020 19:32:18 dut.10.240.183.197: port start all
24/09/2020 19:32: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
24/09/2020 19:32:19 dut.10.240.183.197: port stop all
24/09/2020 19:32:19 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:32:19 dut.10.240.183.197: csum set sctp hw 1
24/09/2020 19:32:19 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
24/09/2020 19:32:19 dut.10.240.183.197: port start all
24/09/2020 19:32: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
24/09/2020 19:32:20 dut.10.240.183.197: port start all
24/09/2020 19:32:20 dut.10.240.183.197:
Port 0 is now not stopped
Port 1 is now not stopped
Please stop the ports first
Done
24/09/2020 19:32:20 dut.10.240.183.197: csum parse-tunnel on 1
24/09/2020 19:32:20 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
24/09/2020 19:32:20 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 19:32:20 dut.10.240.183.197:
24/09/2020 19:32:20 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 19:32:20 dut.10.240.183.197:
24/09/2020 19:32:21 TestVxlan: chksums_ref{}
24/09/2020 19:32:21 TestVxlan: vxlan packet [outer_ip_invalid = 1][outer_udp_dst = 1234]
24/09/2020 19:32:21 dut.10.240.183.197: start
24/09/2020 19:32: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:32:28 tester: ls -d /tmp/tester/
24/09/2020 19:32:28 tester: /tmp/tester/
24/09/2020 19:32:28 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:32:28 tester:
24/09/2020 19:32:48 TestVxlan: chksums{}
24/09/2020 19:32:48 dut.10.240.183.197: stop
24/09/2020 19:32: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: 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.
24/09/2020 19:32:49 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:32:49 TestVxlan: vxlan packet [inner_ip_invalid = 1]
24/09/2020 19:32:49 dut.10.240.183.197: start
24/09/2020 19:32: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:32:56 tester: ls -d /tmp/tester/
24/09/2020 19:32:56 tester: /tmp/tester/
24/09/2020 19:32:56 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:32:56 tester:
24/09/2020 19:33:15 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:33:15 dut.10.240.183.197: stop
24/09/2020 19:33: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: 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.
24/09/2020 19:33:17 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:33:17 TestVxlan: vxlan packet [outer_ip_invalid = 1]
24/09/2020 19:33:17 dut.10.240.183.197: start
24/09/2020 19:33: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:33:24 tester: ls -d /tmp/tester/
24/09/2020 19:33:24 tester: /tmp/tester/
24/09/2020 19:33:24 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:33:24 tester:
24/09/2020 19:33:43 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:33:43 dut.10.240.183.197: stop
24/09/2020 19:33: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.
24/09/2020 19:33:44 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:33:44 TestVxlan: vxlan packet [outer_ip_invalid = 1][inner_ip_invalid = 1]
24/09/2020 19:33:44 dut.10.240.183.197: start
24/09/2020 19:33:44 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:33:51 tester: ls -d /tmp/tester/
24/09/2020 19:33:51 tester: /tmp/tester/
24/09/2020 19:33:51 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:33:52 tester:
24/09/2020 19:34:11 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:34:11 dut.10.240.183.197: stop
24/09/2020 19:34:11 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.
24/09/2020 19:34:12 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:34:12 TestVxlan: vxlan packet [inner_l4_invalid = 1]
24/09/2020 19:34:12 dut.10.240.183.197: start
24/09/2020 19:34:12 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:34:19 tester: ls -d /tmp/tester/
24/09/2020 19:34:19 tester: /tmp/tester/
24/09/2020 19:34:19 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:34:19 tester:
24/09/2020 19:34:39 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:34:39 dut.10.240.183.197: stop
24/09/2020 19:34: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: 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.
24/09/2020 19:34:40 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 19:34:40 TestVxlan: vxlan packet [inner_l4_invalid = 1][inner_l4_type = TCP]
24/09/2020 19:34:40 dut.10.240.183.197: start
24/09/2020 19:34: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:34:47 tester: ls -d /tmp/tester/
24/09/2020 19:34:47 tester: /tmp/tester/
24/09/2020 19:34:47 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:34:47 tester:
24/09/2020 19:35:06 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 19:35:06 dut.10.240.183.197: stop
24/09/2020 19:35: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: 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.
24/09/2020 19:35:07 TestVxlan: chksums_ref{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
24/09/2020 19:35:07 TestVxlan: vxlan packet [inner_l4_invalid = 1][inner_l4_type = SCTP]
24/09/2020 19:35:07 dut.10.240.183.197: start
24/09/2020 19:35: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:35:14 tester: ls -d /tmp/tester/
24/09/2020 19:35:15 tester: /tmp/tester/
24/09/2020 19:35:15 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:35:15 tester:
24/09/2020 19:35:34 TestVxlan: chksums{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
24/09/2020 19:35:34 dut.10.240.183.197: stop
24/09/2020 19:35: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.
24/09/2020 19:35:35 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:35:35 TestVxlan: vxlan packet [outer_vlan = 1][outer_ip_invalid = 1]
24/09/2020 19:35:35 dut.10.240.183.197: start
24/09/2020 19:35: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:35:42 tester: ls -d /tmp/tester/
24/09/2020 19:35:42 tester: /tmp/tester/
24/09/2020 19:35:42 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:35:42 tester:
24/09/2020 19:36:02 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:36:02 dut.10.240.183.197: stop
24/09/2020 19:36: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: 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.
24/09/2020 19:36:03 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:36:03 TestVxlan: vxlan packet [outer_vlan = 1][inner_ip_invalid = 1]
24/09/2020 19:36:03 dut.10.240.183.197: start
24/09/2020 19:36: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:36:10 tester: ls -d /tmp/tester/
24/09/2020 19:36:10 tester: /tmp/tester/
24/09/2020 19:36:10 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:36:10 tester:
24/09/2020 19:36:29 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:36:29 dut.10.240.183.197: stop
24/09/2020 19:36: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: 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.
24/09/2020 19:36:31 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:36:31 TestVxlan: vxlan packet [outer_vlan = 1][outer_ip_invalid = 1][inner_ip_invalid = 1]
24/09/2020 19:36:31 dut.10.240.183.197: start
24/09/2020 19:36: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:36:38 tester: ls -d /tmp/tester/
24/09/2020 19:36:38 tester: /tmp/tester/
24/09/2020 19:36:38 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:36:38 tester:
24/09/2020 19:36:57 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:36:57 dut.10.240.183.197: stop
24/09/2020 19:36: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.
24/09/2020 19:36:58 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:36:58 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][outer_ip_invalid = 1]
24/09/2020 19:36:58 dut.10.240.183.197: start
24/09/2020 19:36: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:37:05 tester: ls -d /tmp/tester/
24/09/2020 19:37:05 tester: /tmp/tester/
24/09/2020 19:37:05 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:37:06 tester:
24/09/2020 19:37:25 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:37:25 dut.10.240.183.197: stop
24/09/2020 19:37: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: 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.
24/09/2020 19:37:26 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:37:26 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][inner_ip_invalid = 1]
24/09/2020 19:37:26 dut.10.240.183.197: start
24/09/2020 19:37: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:37:33 tester: ls -d /tmp/tester/
24/09/2020 19:37:33 tester: /tmp/tester/
24/09/2020 19:37:33 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:37:33 tester:
24/09/2020 19:37:53 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:37:53 dut.10.240.183.197: stop
24/09/2020 19:37: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.
24/09/2020 19:37:54 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:37:54 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][outer_ip_invalid = 1][inner_ip_invalid = 1]
24/09/2020 19:37:54 dut.10.240.183.197: start
24/09/2020 19:37: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:38:01 tester: ls -d /tmp/tester/
24/09/2020 19:38:01 tester: /tmp/tester/
24/09/2020 19:38:01 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:38:01 tester:
24/09/2020 19:38:20 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:38:20 dut.10.240.183.197: stop
24/09/2020 19:38:20 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.
24/09/2020 19:38:21 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:38:21 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = UDP]
24/09/2020 19:38:21 dut.10.240.183.197: start
24/09/2020 19:38: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:38:28 tester: ls -d /tmp/tester/
24/09/2020 19:38:29 tester: /tmp/tester/
24/09/2020 19:38:29 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:38:29 tester:
24/09/2020 19:38:48 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:38:48 dut.10.240.183.197: stop
24/09/2020 19:38: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.
24/09/2020 19:38:49 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 19:38:49 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = TCP]
24/09/2020 19:38:49 dut.10.240.183.197: start
24/09/2020 19:38: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:38:56 tester: ls -d /tmp/tester/
24/09/2020 19:38:56 tester: /tmp/tester/
24/09/2020 19:38:56 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:38:56 tester:
24/09/2020 19:39:16 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 19:39:16 dut.10.240.183.197: stop
24/09/2020 19:39: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.
24/09/2020 19:39:17 TestVxlan: chksums_ref{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
24/09/2020 19:39:17 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = SCTP]
24/09/2020 19:39:17 dut.10.240.183.197: start
24/09/2020 19:39: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:39:24 tester: ls -d /tmp/tester/
24/09/2020 19:39:24 tester: /tmp/tester/
24/09/2020 19:39:24 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:39:24 tester:
24/09/2020 19:39:43 TestVxlan: chksums{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
24/09/2020 19:39:43 dut.10.240.183.197: stop
24/09/2020 19:39: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.
24/09/2020 19:39:43 dut.10.240.183.197: quit
24/09/2020 19:39:45 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Done
Shutting down port 1...
Closing ports...
Done
Bye...
24/09/2020 19:39:45 TestVxlan: Test Case test_vxlan_ipv4_checksum_offload Result PASSED:
24/09/2020 19:39:45 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 19:39:47 TestVxlan: Test Case test_vxlan_ipv4_detect Begin
24/09/2020 19:39:47 dut.10.240.183.197:
24/09/2020 19:39:47 tester:
24/09/2020 19:39:47 dut.10.240.183.197: cat config/common_base
24/09/2020 19:39:47 dut.10.240.183.197: cat: config/common_base: No such file or directory
24/09/2020 19:39:47 TestVxlan: Test Case test_vxlan_ipv4_detect Result ERROR: Traceback (most recent call last):
File "/home/autoregression/9_24/dts/framework/test_case.py", line 319, in _execute_test_case
case_obj()
File "tests/TestSuite_vxlan.py", line 538, in test_vxlan_ipv4_detect
src_vec_model = re.search("%s=." % self.compile_switch, out).group()[-1]
AttributeError: 'NoneType' object has no attribute 'group'
24/09/2020 19:39:47 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 19:39:47 TestVxlan: Test Case test_vxlan_ipv6_checksum_offload Begin
24/09/2020 19:39:48 dut.10.240.183.197:
24/09/2020 19:39:48 tester:
24/09/2020 19:39:48 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --portmask=0x3 --enable-rx-cksum
24/09/2020 19:39:49 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 <mbuf_pool_socket_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
24/09/2020 19:39:49 dut.10.240.183.197: vlan set filter off 0
24/09/2020 19:39:49 dut.10.240.183.197:
24/09/2020 19:39:49 dut.10.240.183.197: set fwd csum
24/09/2020 19:39:49 dut.10.240.183.197:
Set csum packet forwarding mode
24/09/2020 19:39:49 dut.10.240.183.197: port stop all
24/09/2020 19:39:50 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:39:50 dut.10.240.183.197: csum set outer-ip hw 1
24/09/2020 19:39: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 hw
Outer-Udp checksum offload is sw
24/09/2020 19:39:50 dut.10.240.183.197: port start all
24/09/2020 19:39:50 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
24/09/2020 19:39:50 dut.10.240.183.197: port stop all
24/09/2020 19:39:50 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:39:50 dut.10.240.183.197: csum set udp hw 1
24/09/2020 19:39:51 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
24/09/2020 19:39:51 dut.10.240.183.197: port start all
24/09/2020 19:39: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
24/09/2020 19:39:51 dut.10.240.183.197: port stop all
24/09/2020 19:39:51 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:39:51 dut.10.240.183.197: csum set tcp hw 1
24/09/2020 19:39:51 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
24/09/2020 19:39:51 dut.10.240.183.197: port start all
24/09/2020 19:39: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
24/09/2020 19:39:52 dut.10.240.183.197: port stop all
24/09/2020 19:39:52 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:39:52 dut.10.240.183.197: csum set sctp hw 1
24/09/2020 19:39:52 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
24/09/2020 19:39:52 dut.10.240.183.197: port start all
24/09/2020 19:39:53 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
24/09/2020 19:39:53 dut.10.240.183.197: csum parse-tunnel on 1
24/09/2020 19:39:53 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
24/09/2020 19:39:53 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 19:39:53 dut.10.240.183.197:
24/09/2020 19:39:53 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 19:39:53 dut.10.240.183.197:
24/09/2020 19:39:53 dut.10.240.183.197: port stop all
24/09/2020 19:39:53 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:39:53 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 19:39:53 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
24/09/2020 19:39:53 dut.10.240.183.197: port start all
24/09/2020 19:39:53 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
24/09/2020 19:39:53 dut.10.240.183.197: port stop all
24/09/2020 19:39:54 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:39:54 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 19:39:54 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
24/09/2020 19:39:54 dut.10.240.183.197: port start all
24/09/2020 19:39:54 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
24/09/2020 19:39:55 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:39:55 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]
24/09/2020 19:39:55 dut.10.240.183.197: start
24/09/2020 19:39: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:40:02 tester: ls -d /tmp/tester/
24/09/2020 19:40:02 tester: /tmp/tester/
24/09/2020 19:40:02 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:40:03 tester:
24/09/2020 19:40:22 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:40:22 dut.10.240.183.197: stop
24/09/2020 19:40: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.
24/09/2020 19:40:22 dut.10.240.183.197: port stop all
24/09/2020 19:40:22 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:40:22 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 19:40:22 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
24/09/2020 19:40:22 dut.10.240.183.197: port start all
24/09/2020 19:40:22 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
24/09/2020 19:40:22 dut.10.240.183.197: port stop all
24/09/2020 19:40:23 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:40:23 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 19:40: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
24/09/2020 19:40:23 dut.10.240.183.197: port start all
24/09/2020 19:40: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
24/09/2020 19:40:25 TestVxlan: chksums_ref{}
24/09/2020 19:40: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][outer_udp_dst = 1234]
24/09/2020 19:40:25 dut.10.240.183.197: start
24/09/2020 19:40: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:40:32 tester: ls -d /tmp/tester/
24/09/2020 19:40:32 tester: /tmp/tester/
24/09/2020 19:40:32 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:40:32 tester:
24/09/2020 19:40:52 TestVxlan: chksums{}
24/09/2020 19:40:52 dut.10.240.183.197: stop
24/09/2020 19:40:52 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.
24/09/2020 19:40:52 dut.10.240.183.197: port stop all
24/09/2020 19:40:52 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:40:52 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 19:40:52 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
24/09/2020 19:40:52 dut.10.240.183.197: port start all
24/09/2020 19:40:52 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
24/09/2020 19:40:52 dut.10.240.183.197: port stop all
24/09/2020 19:40:53 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:40:53 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 19:40:53 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
24/09/2020 19:40:53 dut.10.240.183.197: port start all
24/09/2020 19:40:54 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
24/09/2020 19:40:55 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:40:55 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]
24/09/2020 19:40:55 dut.10.240.183.197: start
24/09/2020 19:40: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:41:02 tester: ls -d /tmp/tester/
24/09/2020 19:41:02 tester: /tmp/tester/
24/09/2020 19:41:02 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:41:02 tester:
24/09/2020 19:41:21 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:41:21 dut.10.240.183.197: stop
24/09/2020 19:41:21 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.
24/09/2020 19:41:21 dut.10.240.183.197: port stop all
24/09/2020 19:41:22 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:41:22 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 19:41:22 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
24/09/2020 19:41:22 dut.10.240.183.197: port start all
24/09/2020 19:41:22 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
24/09/2020 19:41:22 dut.10.240.183.197: port stop all
24/09/2020 19:41:22 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:41:22 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 19:41: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 sw
Outer-Udp checksum offload is sw
24/09/2020 19:41:22 dut.10.240.183.197: port start all
24/09/2020 19:41: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
24/09/2020 19:41:24 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:41:24 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]
24/09/2020 19:41:24 dut.10.240.183.197: start
24/09/2020 19:41: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:41:31 tester: ls -d /tmp/tester/
24/09/2020 19:41:31 tester: /tmp/tester/
24/09/2020 19:41:31 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:41:31 tester:
24/09/2020 19:41:50 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:41:50 dut.10.240.183.197: stop
24/09/2020 19:41: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: 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.
24/09/2020 19:41:50 dut.10.240.183.197: port stop all
24/09/2020 19:41:51 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:41:51 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 19:41: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
24/09/2020 19:41:51 dut.10.240.183.197: port start all
24/09/2020 19:41: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
24/09/2020 19:41:51 dut.10.240.183.197: port stop all
24/09/2020 19:41:52 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:41:52 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 19:41:52 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
24/09/2020 19:41:52 dut.10.240.183.197: port start all
24/09/2020 19:41: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
24/09/2020 19:41:53 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:41: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_l4_invalid = 1][inner_l4_type = UDP]
24/09/2020 19:41:53 dut.10.240.183.197: start
24/09/2020 19: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:42:01 tester: ls -d /tmp/tester/
24/09/2020 19:42:01 tester: /tmp/tester/
24/09/2020 19:42:01 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:42:01 tester:
24/09/2020 19:42:20 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:42:20 dut.10.240.183.197: stop
24/09/2020 19:42:20 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.
24/09/2020 19:42:20 dut.10.240.183.197: port stop all
24/09/2020 19:42:20 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:42:20 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 19:42:20 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
24/09/2020 19:42:20 dut.10.240.183.197: port start all
24/09/2020 19:42:21 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
24/09/2020 19:42:21 dut.10.240.183.197: port stop all
24/09/2020 19:42:22 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:42:22 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 19:42: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 sw
Outer-Udp checksum offload is sw
24/09/2020 19:42:22 dut.10.240.183.197: port start all
24/09/2020 19:42: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
24/09/2020 19:42:23 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 19:42:23 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]
24/09/2020 19:42:23 dut.10.240.183.197: start
24/09/2020 19:42: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:42:30 tester: ls -d /tmp/tester/
24/09/2020 19:42:30 tester: /tmp/tester/
24/09/2020 19:42:30 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:42:31 tester:
24/09/2020 19:42:50 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 19:42:50 dut.10.240.183.197: stop
24/09/2020 19:42: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: 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.
24/09/2020 19:42:50 dut.10.240.183.197: port stop all
24/09/2020 19:42:50 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:42:50 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 19:42: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
24/09/2020 19:42:50 dut.10.240.183.197: port start all
24/09/2020 19:42: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
24/09/2020 19:42:50 dut.10.240.183.197: port stop all
24/09/2020 19:42:51 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:42:51 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 19:42: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
24/09/2020 19:42:51 dut.10.240.183.197: port start all
24/09/2020 19:42: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
24/09/2020 19:42:53 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:42: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_l4_invalid = 1][inner_l4_type = UDP][outer_vlan = 1]
24/09/2020 19:42:53 dut.10.240.183.197: start
24/09/2020 19:42: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:43:00 tester: ls -d /tmp/tester/
24/09/2020 19:43:00 tester: /tmp/tester/
24/09/2020 19:43:00 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:43:00 tester:
24/09/2020 19:43:20 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:43:20 dut.10.240.183.197: stop
24/09/2020 19:43:20 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.
24/09/2020 19:43:20 dut.10.240.183.197: port stop all
24/09/2020 19:43:20 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:43:20 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 19:43:20 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
24/09/2020 19:43:20 dut.10.240.183.197: port start all
24/09/2020 19:43: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
24/09/2020 19:43:20 dut.10.240.183.197: port stop all
24/09/2020 19:43:20 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:43:20 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 19:43: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
24/09/2020 19:43:20 dut.10.240.183.197: port start all
24/09/2020 19:43: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
24/09/2020 19:43:22 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 19:43: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 = TCP][outer_vlan = 1]
24/09/2020 19:43:22 dut.10.240.183.197: start
24/09/2020 19:43: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:43:29 tester: ls -d /tmp/tester/
24/09/2020 19:43:29 tester: /tmp/tester/
24/09/2020 19:43:29 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:43:29 tester:
24/09/2020 19:43:49 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 19:43:49 dut.10.240.183.197: stop
24/09/2020 19:43: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: 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.
24/09/2020 19:43:49 dut.10.240.183.197: port stop all
24/09/2020 19:43:49 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:43:49 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 19:43:49 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
24/09/2020 19:43:49 dut.10.240.183.197: port start all
24/09/2020 19:43:49 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
24/09/2020 19:43:49 dut.10.240.183.197: port stop all
24/09/2020 19:43:49 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:43:49 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 19:43: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
24/09/2020 19:43:49 dut.10.240.183.197: port start all
24/09/2020 19:43:50 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
24/09/2020 19:43:51 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:43:51 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]
24/09/2020 19:43:51 dut.10.240.183.197: start
24/09/2020 19:43: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:43:58 tester: ls -d /tmp/tester/
24/09/2020 19:43:58 tester: /tmp/tester/
24/09/2020 19:43:58 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:43:58 tester:
24/09/2020 19:44:18 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 19:44:18 dut.10.240.183.197: stop
24/09/2020 19:44: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.
24/09/2020 19:44:18 dut.10.240.183.197: port stop all
24/09/2020 19:44:18 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:44:18 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 19:44: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
24/09/2020 19:44:18 dut.10.240.183.197: port start all
24/09/2020 19:44: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
24/09/2020 19:44:18 dut.10.240.183.197: port stop all
24/09/2020 19:44:18 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 19:44:18 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 19:44: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
24/09/2020 19:44:18 dut.10.240.183.197: port start all
24/09/2020 19:44: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
24/09/2020 19:44:20 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 19:44: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 = TCP][outer_vlan = 1][inner_vlan = 1]
24/09/2020 19:44:20 dut.10.240.183.197: start
24/09/2020 19:44: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 19:44:27 tester: ls -d /tmp/tester/
24/09/2020 19:44:27 tester: /tmp/tester/
24/09/2020 19:44:27 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 19:44:27 tester:
24/09/2020 19:44:47 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 19:44:47 dut.10.240.183.197: stop
24/09/2020 19:44: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: 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.
24/09/2020 19:44:47 dut.10.240.183.197: quit
24/09/2020 19:44:48 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Done
Shutting down port 1...
Closing ports...
Done
Bye...
24/09/2020 19:44:48 TestVxlan: Test Case test_vxlan_ipv6_checksum_offload Result PASSED:
24/09/2020 19:44:48 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 19:44:50 TestVxlan: Test Case test_vxlan_ipv6_detect Begin
24/09/2020 19:44:50 dut.10.240.183.197:
24/09/2020 19:44:50 tester:
24/09/2020 19:44:50 dut.10.240.183.197: cat config/common_base
24/09/2020 19:44:50 dut.10.240.183.197: cat: config/common_base: No such file or directory
24/09/2020 19:44:50 TestVxlan: Test Case test_vxlan_ipv6_detect Result ERROR: Traceback (most recent call last):
File "/home/autoregression/9_24/dts/framework/test_case.py", line 319, in _execute_test_case
case_obj()
File "tests/TestSuite_vxlan.py", line 596, in test_vxlan_ipv6_detect
src_vec_model = re.search("%s=." % self.compile_switch, out).group()[-1]
AttributeError: 'NoneType' object has no attribute 'group'
24/09/2020 19:44:50 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 19:44:51 dts:
TEST SUITE ENDED: TestVxlan
24/09/2020 21:50:00 dts:
TEST SUITE : TestVxlan
24/09/2020 21:50:00 dts: NIC : fortville_25g
24/09/2020 21:50:01 dut.10.240.183.197:
24/09/2020 21:50:01 tester:
24/09/2020 21:50:01 TestVxlan: Test Case test_tunnel_filter Begin
24/09/2020 21:50:01 dut.10.240.183.197:
24/09/2020 21:50:01 tester:
24/09/2020 21:50:01 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
24/09/2020 21:50:02 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 <mbuf_pool_socket_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
24/09/2020 21:50:02 dut.10.240.183.197: set fwd rxonly
24/09/2020 21:50:02 dut.10.240.183.197:
Set rxonly packet forwarding mode
24/09/2020 21:50:02 dut.10.240.183.197: set verbose 1
24/09/2020 21:50:02 dut.10.240.183.197:
Change verbose level from 0 to 1
24/09/2020 21:50:02 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 21:50:02 dut.10.240.183.197:
24/09/2020 21:50:02 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 21:50:02 dut.10.240.183.197:
24/09/2020 21:50: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-ivlan 1 3
24/09/2020 21:50:02 dut.10.240.183.197:
24/09/2020 21:50:02 dut.10.240.183.197: start
24/09/2020 21:50:03 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:50:09 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
24/09/2020 21:50:09 dut.10.240.183.197: stop
24/09/2020 21:50: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.
24/09/2020 21:50:09 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
24/09/2020 21:50:09 dut.10.240.183.197:
24/09/2020 21:50:09 dut.10.240.183.197: start
24/09/2020 21:50:09 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:50: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=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
24/09/2020 21:50:15 dut.10.240.183.197: stop
24/09/2020 21:50: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.
24/09/2020 21:50: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 imac-tenid 1 3
24/09/2020 21:50:15 dut.10.240.183.197:
24/09/2020 21:50:15 dut.10.240.183.197: start
24/09/2020 21:50: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:50:21 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
24/09/2020 21:50:21 dut.10.240.183.197: stop
24/09/2020 21:50:21 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.
24/09/2020 21:50:21 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
24/09/2020 21:50:21 dut.10.240.183.197:
24/09/2020 21:50:21 dut.10.240.183.197: start
24/09/2020 21:50:21 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:50:28 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
24/09/2020 21:50:28 dut.10.240.183.197: stop
24/09/2020 21:50:28 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.
24/09/2020 21:50:28 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
24/09/2020 21:50:28 dut.10.240.183.197:
24/09/2020 21:50:28 dut.10.240.183.197: start
24/09/2020 21:50:28 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:50:34 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
24/09/2020 21:50:34 dut.10.240.183.197: stop
24/09/2020 21:50:34 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.
24/09/2020 21:50:34 dut.10.240.183.197: quit
24/09/2020 21:50:36 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Done
Shutting down port 1...
Closing ports...
Done
Bye...
24/09/2020 21:50:36 TestVxlan: Test Case test_tunnel_filter Result PASSED:
24/09/2020 21:50:36 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 21:50:37 TestVxlan: Test Case test_tunnel_filter_invalid Begin
24/09/2020 21:50:37 dut.10.240.183.197:
24/09/2020 21:50:37 tester:
24/09/2020 21:50:37 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
24/09/2020 21:50:39 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 <mbuf_pool_socket_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
24/09/2020 21:50:39 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 21:50:39 dut.10.240.183.197:
24/09/2020 21:50:39 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 21:50:39 dut.10.240.183.197:
24/09/2020 21:50:39 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
24/09/2020 21:50:39 dut.10.240.183.197:
Bad arguments
24/09/2020 21:50:39 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
24/09/2020 21:50:39 dut.10.240.183.197:
Bad arguments
24/09/2020 21:50:39 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
24/09/2020 21:50:39 dut.10.240.183.197:
i40e_tunnel_filter_param_check(): Invalid inner VLAN ID
cmd_tunnel_filter_parsed error: (Input/output error)
24/09/2020 21:50:39 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
24/09/2020 21:50:39 dut.10.240.183.197:
i40e_tunnel_filter_param_check(): Invalid queue ID
cmd_tunnel_filter_parsed error: (Input/output error)
24/09/2020 21:50:39 dut.10.240.183.197: stop
24/09/2020 21:50:39 dut.10.240.183.197:
Packet forwarding not started
24/09/2020 21:50:39 dut.10.240.183.197: quit
24/09/2020 21:50:42 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Done
Shutting down port 1...
Closing ports...
Done
Bye...
24/09/2020 21:50:42 TestVxlan: Test Case test_tunnel_filter_invalid Result PASSED:
24/09/2020 21:50:42 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 21:50:43 TestVxlan: Test Case test_vxlan_ipv4_checksum_offload Begin
24/09/2020 21:50:43 dut.10.240.183.197:
24/09/2020 21:50:43 tester:
24/09/2020 21:50:43 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --portmask=0x3 --enable-rx-cksum
24/09/2020 21:50:45 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 <mbuf_pool_socket_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
24/09/2020 21:50:45 dut.10.240.183.197: vlan set filter off 0
24/09/2020 21:50:45 dut.10.240.183.197:
24/09/2020 21:50:45 dut.10.240.183.197: set fwd csum
24/09/2020 21:50:45 dut.10.240.183.197:
Set csum packet forwarding mode
24/09/2020 21:50:45 dut.10.240.183.197: port stop all
24/09/2020 21:50:45 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:50:45 dut.10.240.183.197: port stop all
24/09/2020 21:50:46 dut.10.240.183.197:
Stopping ports...
Done
24/09/2020 21:50:46 dut.10.240.183.197: csum set ip hw 1
24/09/2020 21:50:46 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
24/09/2020 21:50:46 dut.10.240.183.197: port start all
24/09/2020 21:50: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
24/09/2020 21:50:46 dut.10.240.183.197: port stop all
24/09/2020 21:50:46 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:50:46 dut.10.240.183.197: csum set outer-ip hw 1
24/09/2020 21:50:46 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
24/09/2020 21:50:46 dut.10.240.183.197: port start all
24/09/2020 21:50: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
24/09/2020 21:50:46 dut.10.240.183.197: port stop all
24/09/2020 21:50:47 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:50:47 dut.10.240.183.197: csum set udp hw 1
24/09/2020 21:50:47 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
24/09/2020 21:50:47 dut.10.240.183.197: port start all
24/09/2020 21:50:47 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
24/09/2020 21:50:47 dut.10.240.183.197: port stop all
24/09/2020 21:50:48 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:50:48 dut.10.240.183.197: csum set tcp hw 1
24/09/2020 21:50:48 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
24/09/2020 21:50:48 dut.10.240.183.197: port start all
24/09/2020 21:50:48 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
24/09/2020 21:50:48 dut.10.240.183.197: port stop all
24/09/2020 21:50:49 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:50:49 dut.10.240.183.197: csum set sctp hw 1
24/09/2020 21:50:49 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
24/09/2020 21:50:49 dut.10.240.183.197: port start all
24/09/2020 21:50: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
24/09/2020 21:50:49 dut.10.240.183.197: port start all
24/09/2020 21:50:49 dut.10.240.183.197:
Port 0 is now not stopped
Port 1 is now not stopped
Please stop the ports first
Done
24/09/2020 21:50:49 dut.10.240.183.197: csum parse-tunnel on 1
24/09/2020 21:50:49 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
24/09/2020 21:50:49 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 21:50:49 dut.10.240.183.197:
24/09/2020 21:50:49 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 21:50:49 dut.10.240.183.197:
24/09/2020 21:50:50 TestVxlan: chksums_ref{}
24/09/2020 21:50:50 TestVxlan: vxlan packet [outer_ip_invalid = 1][outer_udp_dst = 1234]
24/09/2020 21:50:50 dut.10.240.183.197: start
24/09/2020 21:50: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:50:53 tester: ls -d /tmp/tester/
24/09/2020 21:50:53 tester: /tmp/tester/
24/09/2020 21:50:53 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:50:53 tester:
24/09/2020 21:51:09 TestVxlan: chksums{}
24/09/2020 21:51:09 dut.10.240.183.197: stop
24/09/2020 21:51: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.
24/09/2020 21:51:10 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:51:10 TestVxlan: vxlan packet [inner_ip_invalid = 1]
24/09/2020 21:51:10 dut.10.240.183.197: start
24/09/2020 21:51: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:51:13 tester: ls -d /tmp/tester/
24/09/2020 21:51:13 tester: /tmp/tester/
24/09/2020 21:51:13 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:51:13 tester:
24/09/2020 21:51:28 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:51:28 dut.10.240.183.197: stop
24/09/2020 21:51: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: 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.
24/09/2020 21:51:30 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:51:30 TestVxlan: vxlan packet [outer_ip_invalid = 1]
24/09/2020 21:51:30 dut.10.240.183.197: start
24/09/2020 21:51:30 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:51:33 tester: ls -d /tmp/tester/
24/09/2020 21:51:33 tester: /tmp/tester/
24/09/2020 21:51:33 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:51:33 tester:
24/09/2020 21:51:48 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:51:48 dut.10.240.183.197: stop
24/09/2020 21:51: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: 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.
24/09/2020 21:51:49 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:51:49 TestVxlan: vxlan packet [outer_ip_invalid = 1][inner_ip_invalid = 1]
24/09/2020 21:51:49 dut.10.240.183.197: start
24/09/2020 21:51: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:51:52 tester: ls -d /tmp/tester/
24/09/2020 21:51:52 tester: /tmp/tester/
24/09/2020 21:51:52 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:51:52 tester:
24/09/2020 21:52:08 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:52:08 dut.10.240.183.197: stop
24/09/2020 21:52:08 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.
24/09/2020 21:52:09 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:52:09 TestVxlan: vxlan packet [inner_l4_invalid = 1]
24/09/2020 21:52:09 dut.10.240.183.197: start
24/09/2020 21:52:09 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:52:12 tester: ls -d /tmp/tester/
24/09/2020 21:52:12 tester: /tmp/tester/
24/09/2020 21:52:12 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:52:12 tester:
24/09/2020 21:52:27 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:52:27 dut.10.240.183.197: stop
24/09/2020 21:52: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.
24/09/2020 21:52:29 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 21:52:29 TestVxlan: vxlan packet [inner_l4_invalid = 1][inner_l4_type = TCP]
24/09/2020 21:52:29 dut.10.240.183.197: start
24/09/2020 21:52: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:52:32 tester: ls -d /tmp/tester/
24/09/2020 21:52:32 tester: /tmp/tester/
24/09/2020 21:52:32 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:52:32 tester:
24/09/2020 21:52:47 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 21:52:47 dut.10.240.183.197: stop
24/09/2020 21:52: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: 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.
24/09/2020 21:52:48 TestVxlan: chksums_ref{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
24/09/2020 21:52:48 TestVxlan: vxlan packet [inner_l4_invalid = 1][inner_l4_type = SCTP]
24/09/2020 21:52:48 dut.10.240.183.197: start
24/09/2020 21:52: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:52:51 tester: ls -d /tmp/tester/
24/09/2020 21:52:51 tester: /tmp/tester/
24/09/2020 21:52:51 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:52:52 tester:
24/09/2020 21:53:07 TestVxlan: chksums{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
24/09/2020 21:53:07 dut.10.240.183.197: stop
24/09/2020 21:53:07 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.
24/09/2020 21:53:08 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:53:08 TestVxlan: vxlan packet [outer_vlan = 1][outer_ip_invalid = 1]
24/09/2020 21:53:08 dut.10.240.183.197: start
24/09/2020 21:53:08 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:53:11 tester: ls -d /tmp/tester/
24/09/2020 21:53:11 tester: /tmp/tester/
24/09/2020 21:53:11 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:53:11 tester:
24/09/2020 21:53:27 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:53:27 dut.10.240.183.197: stop
24/09/2020 21:53: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: 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.
24/09/2020 21:53:28 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:53:28 TestVxlan: vxlan packet [outer_vlan = 1][inner_ip_invalid = 1]
24/09/2020 21:53:28 dut.10.240.183.197: start
24/09/2020 21:53: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:53:31 tester: ls -d /tmp/tester/
24/09/2020 21:53:31 tester: /tmp/tester/
24/09/2020 21:53:31 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:53:31 tester:
24/09/2020 21:53:46 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:53:46 dut.10.240.183.197: stop
24/09/2020 21:53:46 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.
24/09/2020 21:53:47 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:53:47 TestVxlan: vxlan packet [outer_vlan = 1][outer_ip_invalid = 1][inner_ip_invalid = 1]
24/09/2020 21:53:47 dut.10.240.183.197: start
24/09/2020 21:53: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:53:51 tester: ls -d /tmp/tester/
24/09/2020 21:53:51 tester: /tmp/tester/
24/09/2020 21:53:51 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:53:51 tester:
24/09/2020 21:54:06 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:54:06 dut.10.240.183.197: stop
24/09/2020 21:54: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: 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.
24/09/2020 21:54:07 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:54:07 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][outer_ip_invalid = 1]
24/09/2020 21:54:07 dut.10.240.183.197: start
24/09/2020 21:54: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:54:10 tester: ls -d /tmp/tester/
24/09/2020 21:54:10 tester: /tmp/tester/
24/09/2020 21:54:10 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:54:10 tester:
24/09/2020 21:54:26 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:54:26 dut.10.240.183.197: stop
24/09/2020 21:54: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: 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.
24/09/2020 21:54:27 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:54:27 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][inner_ip_invalid = 1]
24/09/2020 21:54:27 dut.10.240.183.197: start
24/09/2020 21:54: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:54:30 tester: ls -d /tmp/tester/
24/09/2020 21:54:30 tester: /tmp/tester/
24/09/2020 21:54:30 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:54:30 tester:
24/09/2020 21:54:45 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:54:45 dut.10.240.183.197: stop
24/09/2020 21:54:46 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.
24/09/2020 21:54:47 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:54:47 TestVxlan: vxlan packet [outer_vlan = 1][inner_vlan = 1][outer_ip_invalid = 1][inner_ip_invalid = 1]
24/09/2020 21:54:47 dut.10.240.183.197: start
24/09/2020 21:54: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:54:50 tester: ls -d /tmp/tester/
24/09/2020 21:54:50 tester: /tmp/tester/
24/09/2020 21:54:50 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:54:50 tester:
24/09/2020 21:55:05 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:55:05 dut.10.240.183.197: stop
24/09/2020 21:55: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: 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.
24/09/2020 21:55:06 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:55:06 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = UDP]
24/09/2020 21:55:06 dut.10.240.183.197: start
24/09/2020 21:55: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:55:09 tester: ls -d /tmp/tester/
24/09/2020 21:55:09 tester: /tmp/tester/
24/09/2020 21:55:09 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:55:10 tester:
24/09/2020 21:55:25 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:55:25 dut.10.240.183.197: stop
24/09/2020 21:55: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.
24/09/2020 21:55:26 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 21:55:26 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = TCP]
24/09/2020 21:55:26 dut.10.240.183.197: start
24/09/2020 21:55: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:55:29 tester: ls -d /tmp/tester/
24/09/2020 21:55:29 tester: /tmp/tester/
24/09/2020 21:55:29 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:55:29 tester:
24/09/2020 21:55:45 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 21:55:45 dut.10.240.183.197: stop
24/09/2020 21:55: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.
24/09/2020 21:55:46 TestVxlan: chksums_ref{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
24/09/2020 21:55:46 TestVxlan: vxlan packet [outer_vlan = 1][inner_l4_invalid = 1][inner_l4_type = SCTP]
24/09/2020 21:55:46 dut.10.240.183.197: start
24/09/2020 21:55:46 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:55:49 tester: ls -d /tmp/tester/
24/09/2020 21:55:49 tester: /tmp/tester/
24/09/2020 21:55:49 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:55:49 tester:
24/09/2020 21:56:04 TestVxlan: chksums{'inner_ip': '0xf4e5', 'inner_sctp': '0x73f0cf41'}
24/09/2020 21:56:04 dut.10.240.183.197: stop
24/09/2020 21:56: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: 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.
24/09/2020 21:56:04 dut.10.240.183.197: quit
24/09/2020 21:56:06 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Done
Shutting down port 1...
Closing ports...
Done
Bye...
24/09/2020 21:56:06 TestVxlan: Test Case test_vxlan_ipv4_checksum_offload Result PASSED:
24/09/2020 21:56:06 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 21:56:07 TestVxlan: Test Case test_vxlan_ipv4_detect Begin
24/09/2020 21:56:08 dut.10.240.183.197:
24/09/2020 21:56:08 tester:
24/09/2020 21:56:08 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
24/09/2020 21:56:09 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 <mbuf_pool_socket_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
24/09/2020 21:56:09 dut.10.240.183.197: set fwd rxonly
24/09/2020 21:56:09 dut.10.240.183.197:
Set rxonly packet forwarding mode
24/09/2020 21:56:09 dut.10.240.183.197: set verbose 1
24/09/2020 21:56:09 dut.10.240.183.197:
Change verbose level from 0 to 1
24/09/2020 21:56:09 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 21:56:09 dut.10.240.183.197:
24/09/2020 21:56:09 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 21:56:09 dut.10.240.183.197:
24/09/2020 21:56:09 TestVxlan: send vxlan pkts [outer_udp_dst = 1234]
24/09/2020 21:56:09 dut.10.240.183.197: start
24/09/2020 21:56:09 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:56:17 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
24/09/2020 21:56:17 TestVxlan: send vxlan pkts [inner_l4_type = UDP]
24/09/2020 21:56:17 dut.10.240.183.197: start
24/09/2020 21:56:17 dut.10.240.183.197:
Packet forwarding already ed
24/09/2020 21:56:24 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
24/09/2020 21:56:24 TestVxlan: send vxlan pkts [inner_l4_type = TCP]
24/09/2020 21:56:24 dut.10.240.183.197: start
24/09/2020 21:56:24 dut.10.240.183.197:
Packet forwarding already ed
24/09/2020 21:56:31 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
24/09/2020 21:56:31 TestVxlan: send vxlan pkts [inner_l4_type = SCTP]
24/09/2020 21:56:31 dut.10.240.183.197: start
24/09/2020 21:56:31 dut.10.240.183.197:
Packet forwarding already ed
24/09/2020 21:56:38 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
24/09/2020 21:56:38 TestVxlan: send vxlan pkts [outer_vlan = 1]
24/09/2020 21:56:38 dut.10.240.183.197: start
24/09/2020 21:56:38 dut.10.240.183.197:
Packet forwarding already ed
24/09/2020 21:56:45 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
24/09/2020 21:56:45 TestVxlan: send vxlan pkts [outer_vlan = 1][inner_vlan = 1]
24/09/2020 21:56:45 dut.10.240.183.197: start
24/09/2020 21:56:45 dut.10.240.183.197:
Packet forwarding already ed
24/09/2020 21:56:52 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
24/09/2020 21:56:52 dut.10.240.183.197: stop
24/09/2020 21:56:52 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.
24/09/2020 21:56:52 dut.10.240.183.197: quit
24/09/2020 21:56:54 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Done
Shutting down port 1...
Closing ports...
Done
Bye...
24/09/2020 21:56:54 TestVxlan: Test Case test_vxlan_ipv4_detect Result PASSED:
24/09/2020 21:56:54 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 21:56:56 TestVxlan: Test Case test_vxlan_ipv6_checksum_offload Begin
24/09/2020 21:56:56 dut.10.240.183.197:
24/09/2020 21:56:56 tester:
24/09/2020 21:56:56 dut.10.240.183.197: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xf00040000 -n 4 -- -i --portmask=0x3 --enable-rx-cksum
24/09/2020 21:56: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 <mbuf_pool_socket_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
24/09/2020 21:56:57 dut.10.240.183.197: vlan set filter off 0
24/09/2020 21:56:57 dut.10.240.183.197:
24/09/2020 21:56:57 dut.10.240.183.197: set fwd csum
24/09/2020 21:56:57 dut.10.240.183.197:
Set csum packet forwarding mode
24/09/2020 21:56:57 dut.10.240.183.197: port stop all
24/09/2020 21:56:58 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:56:58 dut.10.240.183.197: csum set outer-ip hw 1
24/09/2020 21:56:58 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
24/09/2020 21:56:58 dut.10.240.183.197: port start all
24/09/2020 21:56: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
24/09/2020 21:56:58 dut.10.240.183.197: port stop all
24/09/2020 21:56:59 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:56:59 dut.10.240.183.197: csum set udp hw 1
24/09/2020 21:56:59 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
24/09/2020 21:56:59 dut.10.240.183.197: port start all
24/09/2020 21:56: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
24/09/2020 21:56:59 dut.10.240.183.197: port stop all
24/09/2020 21:56:59 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:56:59 dut.10.240.183.197: csum set tcp hw 1
24/09/2020 21:56:59 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
24/09/2020 21:56:59 dut.10.240.183.197: port start all
24/09/2020 21:57: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
24/09/2020 21:57:00 dut.10.240.183.197: port stop all
24/09/2020 21:57:00 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:57:00 dut.10.240.183.197: csum set sctp hw 1
24/09/2020 21:57:00 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
24/09/2020 21:57:00 dut.10.240.183.197: port start all
24/09/2020 21:57: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
24/09/2020 21:57:01 dut.10.240.183.197: csum parse-tunnel on 1
24/09/2020 21:57: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 hw
Outer-Udp checksum offload is sw
24/09/2020 21:57:01 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 21:57:01 dut.10.240.183.197:
24/09/2020 21:57:01 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 21:57:01 dut.10.240.183.197:
24/09/2020 21:57:01 dut.10.240.183.197: port stop all
24/09/2020 21:57:01 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:57:01 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 21:57: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 sw
Outer-Udp checksum offload is sw
24/09/2020 21:57:01 dut.10.240.183.197: port start all
24/09/2020 21:57: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
24/09/2020 21:57:02 dut.10.240.183.197: port stop all
24/09/2020 21:57:02 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:57:02 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 21:57:02 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
24/09/2020 21:57:02 dut.10.240.183.197: port start all
24/09/2020 21:57: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
24/09/2020 21:57:04 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:57: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]
24/09/2020 21:57:04 dut.10.240.183.197: start
24/09/2020 21:57: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:57:07 tester: ls -d /tmp/tester/
24/09/2020 21:57:07 tester: /tmp/tester/
24/09/2020 21:57:07 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:57:07 tester:
24/09/2020 21:57:22 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:57:22 dut.10.240.183.197: stop
24/09/2020 21:57: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.
24/09/2020 21:57:22 dut.10.240.183.197: port stop all
24/09/2020 21:57:22 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:57:22 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 21:57: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
24/09/2020 21:57:23 dut.10.240.183.197: port start all
24/09/2020 21:57: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
24/09/2020 21:57:23 dut.10.240.183.197: port stop all
24/09/2020 21:57:23 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:57:23 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 21:57: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
24/09/2020 21:57:23 dut.10.240.183.197: port start all
24/09/2020 21:57: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
24/09/2020 21:57:25 TestVxlan: chksums_ref{}
24/09/2020 21:57: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][outer_udp_dst = 1234]
24/09/2020 21:57:25 dut.10.240.183.197: start
24/09/2020 21:57: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:57:28 tester: ls -d /tmp/tester/
24/09/2020 21:57:28 tester: /tmp/tester/
24/09/2020 21:57:28 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:57:28 tester:
24/09/2020 21:57:43 TestVxlan: chksums{}
24/09/2020 21:57:43 dut.10.240.183.197: stop
24/09/2020 21:57: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.
24/09/2020 21:57:43 dut.10.240.183.197: port stop all
24/09/2020 21:57:43 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:57:43 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 21:57: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
24/09/2020 21:57:44 dut.10.240.183.197: port start all
24/09/2020 21:57: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
24/09/2020 21:57:44 dut.10.240.183.197: port stop all
24/09/2020 21:57:45 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:57:45 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 21:57: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
24/09/2020 21:57:45 dut.10.240.183.197: port start all
24/09/2020 21:57:45 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
24/09/2020 21:57:46 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:57:46 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]
24/09/2020 21:57:46 dut.10.240.183.197: start
24/09/2020 21:57:46 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:57:49 tester: ls -d /tmp/tester/
24/09/2020 21:57:50 tester: /tmp/tester/
24/09/2020 21:57:50 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:57:50 tester:
24/09/2020 21:58:05 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:58:05 dut.10.240.183.197: stop
24/09/2020 21:58: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: 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.
24/09/2020 21:58:05 dut.10.240.183.197: port stop all
24/09/2020 21:58:05 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:58:05 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 21:58: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
24/09/2020 21:58:05 dut.10.240.183.197: port start all
24/09/2020 21:58:06 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
24/09/2020 21:58:06 dut.10.240.183.197: port stop all
24/09/2020 21:58:06 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:58:06 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 21:58: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
24/09/2020 21:58:06 dut.10.240.183.197: port start all
24/09/2020 21:58: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
24/09/2020 21:58:07 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:58: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]
24/09/2020 21:58:07 dut.10.240.183.197: start
24/09/2020 21:58: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:58:10 tester: ls -d /tmp/tester/
24/09/2020 21:58:11 tester: /tmp/tester/
24/09/2020 21:58:11 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:58:11 tester:
24/09/2020 21:58:26 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:58:26 dut.10.240.183.197: stop
24/09/2020 21:58: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.
24/09/2020 21:58:26 dut.10.240.183.197: port stop all
24/09/2020 21:58:26 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:58:26 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 21:58:26 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
24/09/2020 21:58:26 dut.10.240.183.197: port start all
24/09/2020 21:58:27 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
24/09/2020 21:58:27 dut.10.240.183.197: port stop all
24/09/2020 21:58:27 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:58:27 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 21:58:27 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
24/09/2020 21:58:27 dut.10.240.183.197: port start all
24/09/2020 21:58:27 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
24/09/2020 21:58:28 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:58:28 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]
24/09/2020 21:58:28 dut.10.240.183.197: start
24/09/2020 21:58: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:58:31 tester: ls -d /tmp/tester/
24/09/2020 21:58:32 tester: /tmp/tester/
24/09/2020 21:58:32 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:58:32 tester:
24/09/2020 21:58:47 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:58:47 dut.10.240.183.197: stop
24/09/2020 21:58: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: 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.
24/09/2020 21:58:47 dut.10.240.183.197: port stop all
24/09/2020 21:58:47 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:58:47 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 21:58: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
24/09/2020 21:58:47 dut.10.240.183.197: port start all
24/09/2020 21:58: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
24/09/2020 21:58:48 dut.10.240.183.197: port stop all
24/09/2020 21:58:48 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:58:48 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 21:58: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
24/09/2020 21:58:48 dut.10.240.183.197: port start all
24/09/2020 21:58:48 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
24/09/2020 21:58:49 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 21:58:49 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]
24/09/2020 21:58:49 dut.10.240.183.197: start
24/09/2020 21:58: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:58:52 tester: ls -d /tmp/tester/
24/09/2020 21:58:53 tester: /tmp/tester/
24/09/2020 21:58:53 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:58:53 tester:
24/09/2020 21:59:08 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 21:59:08 dut.10.240.183.197: stop
24/09/2020 21:59:08 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.
24/09/2020 21:59:08 dut.10.240.183.197: port stop all
24/09/2020 21:59:08 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:59:08 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 21:59:08 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
24/09/2020 21:59:08 dut.10.240.183.197: port start all
24/09/2020 21:59:08 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
24/09/2020 21:59:08 dut.10.240.183.197: port stop all
24/09/2020 21:59:09 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:59:09 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 21:59:09 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
24/09/2020 21:59:09 dut.10.240.183.197: port start all
24/09/2020 21:59:09 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
24/09/2020 21:59:10 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:59:10 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]
24/09/2020 21:59:10 dut.10.240.183.197: start
24/09/2020 21:59: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:59:13 tester: ls -d /tmp/tester/
24/09/2020 21:59:14 tester: /tmp/tester/
24/09/2020 21:59:14 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:59:14 tester:
24/09/2020 21:59:29 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:59:29 dut.10.240.183.197: stop
24/09/2020 21:59: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.
24/09/2020 21:59:29 dut.10.240.183.197: port stop all
24/09/2020 21:59:29 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:59:29 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 21:59: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
24/09/2020 21:59:29 dut.10.240.183.197: port start all
24/09/2020 21:59: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
24/09/2020 21:59:29 dut.10.240.183.197: port stop all
24/09/2020 21:59:30 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:59:30 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 21:59:30 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
24/09/2020 21:59:30 dut.10.240.183.197: port start all
24/09/2020 21:59: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
24/09/2020 21:59:31 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 21:59: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 = TCP][outer_vlan = 1]
24/09/2020 21:59:31 dut.10.240.183.197: start
24/09/2020 21:59: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:59:34 tester: ls -d /tmp/tester/
24/09/2020 21:59:35 tester: /tmp/tester/
24/09/2020 21:59:35 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:59:35 tester:
24/09/2020 21:59:50 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 21:59:50 dut.10.240.183.197: stop
24/09/2020 21:59: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: 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.
24/09/2020 21:59:50 dut.10.240.183.197: port stop all
24/09/2020 21:59:50 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:59:50 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 21:59: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
24/09/2020 21:59:50 dut.10.240.183.197: port start all
24/09/2020 21:59: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
24/09/2020 21:59:50 dut.10.240.183.197: port stop all
24/09/2020 21:59:51 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 21:59:51 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 21:59: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
24/09/2020 21:59:51 dut.10.240.183.197: port start all
24/09/2020 21:59: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
24/09/2020 21:59:52 TestVxlan: chksums_ref{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 21:59: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][inner_l4_invalid = 1][inner_l4_type = UDP][outer_vlan = 1][inner_vlan = 1]
24/09/2020 21:59:52 dut.10.240.183.197: start
24/09/2020 21:59: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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 21:59:55 tester: ls -d /tmp/tester/
24/09/2020 21:59:55 tester: /tmp/tester/
24/09/2020 21:59:55 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 21:59:56 tester:
24/09/2020 22:00:11 TestVxlan: chksums{'inner_ip': '0xf56a', 'inner_udp': '0x5ee1'}
24/09/2020 22:00:11 dut.10.240.183.197: stop
24/09/2020 22:00:11 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.
24/09/2020 22:00:11 dut.10.240.183.197: port stop all
24/09/2020 22:00:11 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 22:00:11 dut.10.240.183.197: csum set outer-ip sw 0
24/09/2020 22:00:11 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
24/09/2020 22:00:11 dut.10.240.183.197: port start all
24/09/2020 22:00:11 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
24/09/2020 22:00:11 dut.10.240.183.197: port stop all
24/09/2020 22:00:12 dut.10.240.183.197:
Stopping ports...
Checking link statuses...
Done
24/09/2020 22:00:12 dut.10.240.183.197: csum set outer-ip sw 1
24/09/2020 22:00:12 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
24/09/2020 22:00:12 dut.10.240.183.197: port start all
24/09/2020 22:00:12 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
24/09/2020 22:00:13 TestVxlan: chksums_ref{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 22:00:13 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]
24/09/2020 22:00:13 dut.10.240.183.197: start
24/09/2020 22:00:13 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 22:00:16 tester: ls -d /tmp/tester/
24/09/2020 22:00:17 tester: /tmp/tester/
24/09/2020 22:00:17 tester: rm -rf /tmp/tester/sniff_ens11.pcap
24/09/2020 22:00:17 tester:
24/09/2020 22:00:32 TestVxlan: chksums{'inner_ip': '0xf569', 'inner_tcp': '0xeefd'}
24/09/2020 22:00:32 dut.10.240.183.197: stop
24/09/2020 22:00: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: 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.
24/09/2020 22:00:32 dut.10.240.183.197: quit
24/09/2020 22:00:34 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Done
Shutting down port 1...
Closing ports...
Done
Bye...
24/09/2020 22:00:34 TestVxlan: Test Case test_vxlan_ipv6_checksum_offload Result PASSED:
24/09/2020 22:00:34 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 22:00:35 TestVxlan: Test Case test_vxlan_ipv6_detect Begin
24/09/2020 22:00:35 dut.10.240.183.197:
24/09/2020 22:00:35 tester:
24/09/2020 22:00:35 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
24/09/2020 22:00:37 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 <mbuf_pool_socket_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
24/09/2020 22:00:37 dut.10.240.183.197: set fwd rxonly
24/09/2020 22:00:37 dut.10.240.183.197:
Set rxonly packet forwarding mode
24/09/2020 22:00:37 dut.10.240.183.197: set verbose 1
24/09/2020 22:00:37 dut.10.240.183.197:
Change verbose level from 0 to 1
24/09/2020 22:00:37 dut.10.240.183.197: rx_vxlan_port add 4789 0
24/09/2020 22:00:37 dut.10.240.183.197:
24/09/2020 22:00:37 dut.10.240.183.197: rx_vxlan_port add 4789 1
24/09/2020 22:00:37 dut.10.240.183.197:
24/09/2020 22:00:37 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]
24/09/2020 22:00:37 dut.10.240.183.197: start
24/09/2020 22:00:37 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=8 hthresh=8 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=8 hthresh=8 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
24/09/2020 22:00:44 dut.10.240.183.197:
Port 0: link state change event
Port 1: 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
24/09/2020 22:00:44 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]
24/09/2020 22:00:44 dut.10.240.183.197: start
24/09/2020 22:00:44 dut.10.240.183.197:
Packet forwarding already ed
24/09/2020 22:00:51 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
24/09/2020 22:00:51 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]
24/09/2020 22:00:51 dut.10.240.183.197: start
24/09/2020 22:00:51 dut.10.240.183.197:
Packet forwarding already ed
24/09/2020 22:00:59 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
24/09/2020 22:00:59 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]
24/09/2020 22:00:59 dut.10.240.183.197: start
24/09/2020 22:00:59 dut.10.240.183.197:
Packet forwarding already ed
24/09/2020 22:01:06 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
24/09/2020 22:01:06 dut.10.240.183.197: stop
24/09/2020 22:01:06 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.
24/09/2020 22:01:06 dut.10.240.183.197: quit
24/09/2020 22:01:08 dut.10.240.183.197:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Done
Shutting down port 1...
Closing ports...
Done
Bye...
24/09/2020 22:01:08 TestVxlan: Test Case test_vxlan_ipv6_detect Result PASSED:
24/09/2020 22:01:08 dut.10.240.183.197: kill_all: called by dut and has no prefix list.
24/09/2020 22:01:09 dts:
TEST SUITE ENDED: TestVxlan
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V1] tests/TestSuite_vxlan/TestSuite_nvgre:Meson default RTE_ IXGBE_ INC_ VECTOR is n
2020-09-24 9:34 [dts] [PATCH V1] tests/TestSuite_vxlan/TestSuite_nvgre:Meson default RTE_ IXGBE_ INC_ VECTOR is n xizhan4x
2020-09-24 9:35 ` Zhang, XiX
@ 2020-09-29 8:33 ` Ma, LihongX
1 sibling, 0 replies; 3+ messages in thread
From: Ma, LihongX @ 2020-09-29 8:33 UTC (permalink / raw)
To: Zhang, XiX, dts; +Cc: Zhang, XiX
> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of xizhan4x
> Sent: Thursday, September 24, 2020 5:34 PM
> To: dts@dpdk.org
> Cc: Zhang, XiX <xix.zhang@intel.com>
> Subject: [dts] [PATCH V1] tests/TestSuite_vxlan/TestSuite_nvgre:Meson
> default RTE_ IXGBE_ INC_ VECTOR is n
>
> Meson default RTE_IXGBE_ INC_ VECTOR is n , so skip compilation
>
>
> Signed-off-by: xizhan4x <xix.zhang@intel.com>
As the suite is want to test the N-Vector path of dpdk
I think it should take some investigate to know how to configure the path.
I do not think this patch configure the Non-Vector path of dpdk.
Regards,
Ma,lihong
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-09-29 8:33 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-24 9:34 [dts] [PATCH V1] tests/TestSuite_vxlan/TestSuite_nvgre:Meson default RTE_ IXGBE_ INC_ VECTOR is n xizhan4x
2020-09-24 9:35 ` Zhang, XiX
2020-09-29 8:33 ` Ma, LihongX
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).