* [dts] [PATCH V1] tests/cvl_dcf_switch_filter: set vf vlan for dcf mode
@ 2021-04-30 16:57 Qin Sun
2021-05-06 4:07 ` Sun, QinX
0 siblings, 1 reply; 3+ messages in thread
From: Qin Sun @ 2021-04-30 16:57 UTC (permalink / raw)
To: dts; +Cc: Qin Sun
Confirm with developer, dpdk is changed for VF DCF mode,
'vf-vlan-prune-disable' needs to be set before VF receives VLAN packets
Signed-off-by: Qin Sun <qinx.sun@intel.com>
---
tests/TestSuite_cvl_dcf_switch_filter.py | 4 ++++
tests/TestSuite_cvl_dcf_switch_filter_pppoe.py | 4 ++++
2 files changed, 8 insertions(+)
mode change 100755 => 100644 tests/TestSuite_cvl_dcf_switch_filter.py
diff --git a/tests/TestSuite_cvl_dcf_switch_filter.py b/tests/TestSuite_cvl_dcf_switch_filter.py
old mode 100755
new mode 100644
index fc257cbe..dd7e0109
--- a/tests/TestSuite_cvl_dcf_switch_filter.py
+++ b/tests/TestSuite_cvl_dcf_switch_filter.py
@@ -1025,6 +1025,8 @@ class CVLDCFSwitchFilterTest(TestCase):
# Verify that enough ports are available
self.verify(len(self.dut_ports) >= 1, "Insufficient ports")
localPort = self.tester.get_local_port(self.dut_ports[0])
+ self.used_dut_port_0 = self.dut_ports[0]
+ self.pf0_intf = self.dut.ports_info[self.used_dut_port_0]['intf']
self.__tx_iface = self.tester.get_interface(localPort)
self.pkt = Packet()
self.testpmd_status = "close"
@@ -1042,6 +1044,7 @@ class CVLDCFSwitchFilterTest(TestCase):
#get PF interface name
self.pf0_intf = self.dut.ports_info[self.used_dut_port_0]['intf']
out = self.dut.send_expect('ethtool -i %s' % self.pf0_intf, '#')
+ self.dut.send_expect('ethtool --set-priv-flags {} vf-vlan-prune-disable on'.format(self.pf0_intf), '#')
#generate 4 VFs on PF
self.dut.generate_sriov_vfs_by_port(self.used_dut_port_0, 4, driver=driver)
self.sriov_vfs_port_0 = self.dut.ports_info[self.used_dut_port_0]['vfs_port']
@@ -1877,4 +1880,5 @@ class CVLDCFSwitchFilterTest(TestCase):
"""
Run after each test suite.
"""
+ self.dut.send_expect('ethtool --set-priv-flags {} vf-vlan-prune-disable off'.format(self.pf0_intf), '#')
self.dut.kill_all()
diff --git a/tests/TestSuite_cvl_dcf_switch_filter_pppoe.py b/tests/TestSuite_cvl_dcf_switch_filter_pppoe.py
index a3f09ec9..c51d14b1 100644
--- a/tests/TestSuite_cvl_dcf_switch_filter_pppoe.py
+++ b/tests/TestSuite_cvl_dcf_switch_filter_pppoe.py
@@ -521,6 +521,8 @@ class CVLDCFSwitchFilterPPPOETest(TestCase):
# Verify that enough ports are available
self.verify(len(self.dut_ports) >= 1, "Insufficient ports")
localPort = self.tester.get_local_port(self.dut_ports[0])
+ self.used_dut_port_0 = self.dut_ports[0]
+ self.pf0_intf = self.dut.ports_info[self.used_dut_port_0]['intf']
self.__tx_iface = self.tester.get_interface(localPort)
self.pkt = Packet()
self.testpmd_status = "close"
@@ -538,6 +540,7 @@ class CVLDCFSwitchFilterPPPOETest(TestCase):
#get PF interface name
self.pf0_intf = self.dut.ports_info[self.used_dut_port_0]['intf']
out = self.dut.send_expect('ethtool -i %s' % self.pf0_intf, '#')
+ self.dut.send_expect('ethtool --set-priv-flags {} vf-vlan-prune-disable on'.format(self.pf0_intf), '#')
#generate 4 VFs on PF
self.dut.generate_sriov_vfs_by_port(self.used_dut_port_0, 4, driver=driver)
self.sriov_vfs_port_0 = self.dut.ports_info[self.used_dut_port_0]['vfs_port']
@@ -913,4 +916,5 @@ class CVLDCFSwitchFilterPPPOETest(TestCase):
"""
Run after each test suite.
"""
+ self.dut.send_expect('ethtool --set-priv-flags {} vf-vlan-prune-disable off'.format(self.pf0_intf), '#')
self.dut.kill_all()
--
2.17.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V1] tests/cvl_dcf_switch_filter: set vf vlan for dcf mode
2021-04-30 16:57 [dts] [PATCH V1] tests/cvl_dcf_switch_filter: set vf vlan for dcf mode Qin Sun
@ 2021-05-06 4:07 ` Sun, QinX
2021-05-07 6:32 ` Tu, Lijuan
0 siblings, 1 reply; 3+ messages in thread
From: Sun, QinX @ 2021-05-06 4:07 UTC (permalink / raw)
To: dts
[-- Attachment #1: Type: text/plain, Size: 296 bytes --]
> -----Original Message-----
> From: Sun, QinX <qinx.sun@intel.com>
> Sent: Saturday, May 1, 2021 12:57 AM
> To: dts@dpdk.org
> Cc: Sun, QinX <qinx.sun@intel.com>
> Subject: [dts] [PATCH V1] tests/cvl_dcf_switch_filter: set vf vlan for dcf mode
Tested-by: Qin Sun <qinx.sun@intel.com>
[-- Attachment #2: CVLDCFSwitchFilterTest.log --]
[-- Type: application/octet-stream, Size: 703404 bytes --]
05/05/2021 22:23:47 dts:
TEST SUITE : CVLDCFSwitchFilterTest
05/05/2021 22:23:47 dts: NIC : columbiaville_25g
05/05/2021 22:23:47 dut.10.240.183.254:
05/05/2021 22:23:47 tester:
05/05/2021 22:23:56 dut.10.240.183.254: modprobe vfio-pci
05/05/2021 22:23:56 dut.10.240.183.254:
05/05/2021 22:23:56 CVLDCFSwitchFilterTest: Test Case test_add_existing_rules_but_with_different_vfs Begin
05/05/2021 22:23:56 dut.10.240.183.254:
05/05/2021 22:23:56 tester:
05/05/2021 22:23:56 dut.10.240.183.254: rmmod ice
05/05/2021 22:24:00 dut.10.240.183.254:
05/05/2021 22:24:00 dut.10.240.183.254: modprobe ice
05/05/2021 22:24:03 dut.10.240.183.254:
05/05/2021 22:24:03 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:24:03 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:24:03 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:24:03 dut.10.240.183.254:
05/05/2021 22:24:06 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.0/vendor
05/05/2021 22:24:06 dut.10.240.183.254: 0x8086
05/05/2021 22:24:06 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.0/device
05/05/2021 22:24:06 dut.10.240.183.254: 0x1889
05/05/2021 22:24:06 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.0/vendor
05/05/2021 22:24:06 dut.10.240.183.254: 0x8086
05/05/2021 22:24:06 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.0/device
05/05/2021 22:24:06 dut.10.240.183.254: 0x1889
05/05/2021 22:24:06 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.1/vendor
05/05/2021 22:24:06 dut.10.240.183.254: 0x8086
05/05/2021 22:24:06 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.1/device
05/05/2021 22:24:06 dut.10.240.183.254: 0x1889
05/05/2021 22:24:06 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.1/vendor
05/05/2021 22:24:07 dut.10.240.183.254: 0x8086
05/05/2021 22:24:07 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.1/device
05/05/2021 22:24:07 dut.10.240.183.254: 0x1889
05/05/2021 22:24:07 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.2/vendor
05/05/2021 22:24:07 dut.10.240.183.254: 0x8086
05/05/2021 22:24:07 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.2/device
05/05/2021 22:24:07 dut.10.240.183.254: 0x1889
05/05/2021 22:24:07 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.2/vendor
05/05/2021 22:24:07 dut.10.240.183.254: 0x8086
05/05/2021 22:24:07 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.2/device
05/05/2021 22:24:07 dut.10.240.183.254: 0x1889
05/05/2021 22:24:07 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.3/vendor
05/05/2021 22:24:07 dut.10.240.183.254: 0x8086
05/05/2021 22:24:07 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.3/device
05/05/2021 22:24:07 dut.10.240.183.254: 0x1889
05/05/2021 22:24:07 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.3/vendor
05/05/2021 22:24:07 dut.10.240.183.254: 0x8086
05/05/2021 22:24:07 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.3/device
05/05/2021 22:24:07 dut.10.240.183.254: 0x1889
05/05/2021 22:24:08 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:24:08 dut.10.240.183.254:
05/05/2021 22:24:19 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 -a 0000:03:01.2 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:24:27 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.2 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Configuring Port 2 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 2: link state change event
Port 2: link state change event
Port 2: CE:B5:AD:95:65:79
Checking link statuses...
Done
05/05/2021 22:24:27 dut.10.240.183.254: set portlist 1,2
05/05/2021 22:24:27 dut.10.240.183.254:
previous number of forwarding ports 3 - changed to number of configured ports 2
05/05/2021 22:24:27 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:24:27 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:24:27 dut.10.240.183.254: set verbose 1
05/05/2021 22:24:27 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:24:27 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:24:28 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:24:28 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / udp src is 25 dst is 23 / end actions vf id 2 / end
05/05/2021 22:24:28 dut.10.240.183.254:
Flow rule #1 created
05/05/2021 22:24:28 dut.10.240.183.254: flow list 0
05/05/2021 22:24:28 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP => VF
1 0 0 i-- ETH IPV4 UDP => VF
05/05/2021 22:24:28 dut.10.240.183.254: start
05/05/2021 22:24:28 dut.10.240.183.254:
rxonly packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 2 streams:
RX P=1/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
RX P=2/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly 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=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 2: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:24:33 dut.10.240.183.254: stop
05/05/2021 22:24:33 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 2 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:24:33 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:24:33 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:24:33 dut.10.240.183.254: flow list 0
05/05/2021 22:24:33 dut.10.240.183.254:
ID Group Prio Attr Rule
1 0 0 i-- ETH IPV4 UDP => VF
05/05/2021 22:24:33 dut.10.240.183.254: start
05/05/2021 22:24:33 dut.10.240.183.254:
rxonly packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 2 streams:
RX P=1/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
RX P=2/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly 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=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 2: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:24:39 dut.10.240.183.254: stop
05/05/2021 22:24:39 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 2 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:24:39 dut.10.240.183.254: flow destroy 0 rule 1
05/05/2021 22:24:39 dut.10.240.183.254:
Flow rule #1 destroyed
05/05/2021 22:24:39 dut.10.240.183.254: flow list 0
05/05/2021 22:24:39 dut.10.240.183.254:
05/05/2021 22:24:39 dut.10.240.183.254: start
05/05/2021 22:24:39 dut.10.240.183.254:
rxonly packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 2 streams:
RX P=1/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
RX P=2/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly 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=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 2: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:24:44 dut.10.240.183.254: stop
05/05/2021 22:24:44 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 2 ----------------------
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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:24:44 CVLDCFSwitchFilterTest: Test Case test_add_existing_rules_but_with_different_vfs Result PASSED:
05/05/2021 22:24:44 dut.10.240.183.254: flow flush 0
05/05/2021 22:24:44 dut.10.240.183.254:
05/05/2021 22:24:44 dut.10.240.183.254: clear port stats all
05/05/2021 22:24:44 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
NIC statistics for port 2 cleared
05/05/2021 22:24:44 dut.10.240.183.254: quit
05/05/2021 22:24:46 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Stopping port 2...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Shutting down port 2...
Closing ports...
Port 2 is closed
Done
Bye...
05/05/2021 22:24:46 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:24:51 CVLDCFSwitchFilterTest: Test Case test_add_existing_rules_with_the_same_vfs Begin
05/05/2021 22:24:51 dut.10.240.183.254:
05/05/2021 22:24:51 tester:
05/05/2021 22:24:51 dut.10.240.183.254: rmmod ice
05/05/2021 22:24:54 dut.10.240.183.254:
05/05/2021 22:24:54 dut.10.240.183.254: modprobe ice
05/05/2021 22:24:58 dut.10.240.183.254:
05/05/2021 22:24:58 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:24:58 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:24:58 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:24:58 dut.10.240.183.254:
05/05/2021 22:25:00 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:25:00 dut.10.240.183.254:
05/05/2021 22:25:11 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:25:19 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:25:19 dut.10.240.183.254: set portlist 1
05/05/2021 22:25:19 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:25:19 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:25:19 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:25:19 dut.10.240.183.254: set verbose 1
05/05/2021 22:25:19 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:25:19 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:25:20 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:25:20 dut.10.240.183.254: flow list 0
05/05/2021 22:25:20 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP => VF
05/05/2021 22:25:20 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:25:20 dut.10.240.183.254:
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): switch filter create flow fail: Invalid argument
05/05/2021 22:25:20 dut.10.240.183.254: flow list 0
05/05/2021 22:25:20 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP => VF
05/05/2021 22:25:20 CVLDCFSwitchFilterTest: Test Case test_add_existing_rules_with_the_same_vfs Result PASSED:
05/05/2021 22:25:20 dut.10.240.183.254: flow flush 0
05/05/2021 22:25:20 dut.10.240.183.254:
05/05/2021 22:25:20 dut.10.240.183.254: clear port stats all
05/05/2021 22:25:20 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:25:20 dut.10.240.183.254: quit
05/05/2021 22:25:21 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:25:21 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:25:27 CVLDCFSwitchFilterTest: Test Case test_add_two_rules_with_different_input_set_different_vf_id Begin
05/05/2021 22:25:27 dut.10.240.183.254:
05/05/2021 22:25:27 tester:
05/05/2021 22:25:27 dut.10.240.183.254: rmmod ice
05/05/2021 22:25:30 dut.10.240.183.254:
05/05/2021 22:25:30 dut.10.240.183.254: modprobe ice
05/05/2021 22:25:33 dut.10.240.183.254:
05/05/2021 22:25:33 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:25:33 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:25:33 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:25:34 dut.10.240.183.254:
05/05/2021 22:25:36 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:25:36 dut.10.240.183.254:
05/05/2021 22:25:47 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 -a 0000:03:01.2 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:25:55 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.2 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Configuring Port 2 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 2: link state change event
Port 2: link state change event
Port 2: CE:B5:AD:95:65:79
Checking link statuses...
Done
05/05/2021 22:25:55 dut.10.240.183.254: set portlist 1,2
05/05/2021 22:25:55 dut.10.240.183.254:
previous number of forwarding ports 3 - changed to number of configured ports 2
05/05/2021 22:25:55 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:25:55 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:25:55 dut.10.240.183.254: set verbose 1
05/05/2021 22:25:56 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:25:56 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions vf id 1 / end
05/05/2021 22:25:56 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:25:56 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 1 / end actions vf id 2 / end
05/05/2021 22:25:56 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:25:56 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions vf id 1 / end
05/05/2021 22:25:56 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:25:56 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 1 / end actions vf id 2 / end
05/05/2021 22:25:56 dut.10.240.183.254:
Flow rule #1 created
05/05/2021 22:25:56 dut.10.240.183.254: flow list 0
05/05/2021 22:25:56 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP PFCP => VF
1 0 0 i-- ETH IPV4 UDP PFCP => VF
05/05/2021 22:25:56 dut.10.240.183.254: start
05/05/2021 22:25:56 dut.10.240.183.254:
rxonly packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 2 streams:
RX P=1/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
RX P=2/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly 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=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 2: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:26:02 dut.10.240.183.254: stop
05/05/2021 22:26:02 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 2 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:26:02 dut.10.240.183.254: start
05/05/2021 22:26:02 dut.10.240.183.254:
rxonly packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 2 streams:
RX P=1/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
RX P=2/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly 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=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 2: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:26:07 dut.10.240.183.254: stop
05/05/2021 22:26:07 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 2 ----------------------
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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:26:07 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:26:07 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:26:07 dut.10.240.183.254: flow destroy 0 rule 1
05/05/2021 22:26:07 dut.10.240.183.254:
Flow rule #1 destroyed
05/05/2021 22:26:07 dut.10.240.183.254: flow list 0
05/05/2021 22:26:07 dut.10.240.183.254:
05/05/2021 22:26:07 dut.10.240.183.254: start
05/05/2021 22:26:07 dut.10.240.183.254:
rxonly packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 2 streams:
RX P=1/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
RX P=2/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly 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=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 2: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:26:12 dut.10.240.183.254: stop
05/05/2021 22:26:12 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 2 ----------------------
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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:26:12 CVLDCFSwitchFilterTest: Test Case test_add_two_rules_with_different_input_set_different_vf_id Result PASSED:
05/05/2021 22:26:12 dut.10.240.183.254: flow flush 0
05/05/2021 22:26:12 dut.10.240.183.254:
05/05/2021 22:26:12 dut.10.240.183.254: clear port stats all
05/05/2021 22:26:13 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
NIC statistics for port 2 cleared
05/05/2021 22:26:13 dut.10.240.183.254: quit
05/05/2021 22:26:14 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Stopping port 2...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Shutting down port 2...
Closing ports...
Port 2 is closed
Done
Bye...
05/05/2021 22:26:14 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:26:19 CVLDCFSwitchFilterTest: Test Case test_add_two_rules_with_different_input_set_same_vf_id Begin
05/05/2021 22:26:19 dut.10.240.183.254:
05/05/2021 22:26:19 tester:
05/05/2021 22:26:19 dut.10.240.183.254: rmmod ice
05/05/2021 22:26:23 dut.10.240.183.254:
05/05/2021 22:26:23 dut.10.240.183.254: modprobe ice
05/05/2021 22:26:26 dut.10.240.183.254:
05/05/2021 22:26:26 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:26:26 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:26:26 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:26:26 dut.10.240.183.254:
05/05/2021 22:26:29 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:26:29 dut.10.240.183.254:
05/05/2021 22:26:39 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:26:48 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:26:48 dut.10.240.183.254: set portlist 1
05/05/2021 22:26:48 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:26:48 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:26:48 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:26:48 dut.10.240.183.254: set verbose 1
05/05/2021 22:26:48 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:26:48 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions vf id 1 / end
05/05/2021 22:26:48 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:26:48 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 1 / end actions vf id 1 / end
05/05/2021 22:26:48 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:26:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions vf id 1 / end
05/05/2021 22:26:48 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:26:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 1 / end actions vf id 1 / end
05/05/2021 22:26:49 dut.10.240.183.254:
Flow rule #1 created
05/05/2021 22:26:49 dut.10.240.183.254: flow list 0
05/05/2021 22:26:49 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP PFCP => VF
1 0 0 i-- ETH IPV4 UDP PFCP => VF
05/05/2021 22:26:49 dut.10.240.183.254: start
05/05/2021 22:26:49 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:26:54 dut.10.240.183.254: stop
05/05/2021 22:26:54 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:26:54 dut.10.240.183.254: start
05/05/2021 22:26:54 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:26:59 dut.10.240.183.254: stop
05/05/2021 22:26:59 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:26:59 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:26:59 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:26:59 dut.10.240.183.254: flow destroy 0 rule 1
05/05/2021 22:26:59 dut.10.240.183.254:
Flow rule #1 destroyed
05/05/2021 22:26:59 dut.10.240.183.254: flow list 0
05/05/2021 22:26:59 dut.10.240.183.254:
05/05/2021 22:26:59 dut.10.240.183.254: start
05/05/2021 22:26:59 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:27:05 dut.10.240.183.254: stop
05/05/2021 22:27:05 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:27:05 CVLDCFSwitchFilterTest: Test Case test_add_two_rules_with_different_input_set_same_vf_id Result PASSED:
05/05/2021 22:27:05 dut.10.240.183.254: flow flush 0
05/05/2021 22:27:05 dut.10.240.183.254:
05/05/2021 22:27:05 dut.10.240.183.254: clear port stats all
05/05/2021 22:27:05 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:27:05 dut.10.240.183.254: quit
05/05/2021 22:27:06 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:27:06 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:27:11 CVLDCFSwitchFilterTest: Test Case test_add_two_rules_with_one_rule_input_set_included_in_the_other Begin
05/05/2021 22:27:11 dut.10.240.183.254:
05/05/2021 22:27:11 tester:
05/05/2021 22:27:11 dut.10.240.183.254: rmmod ice
05/05/2021 22:27:15 dut.10.240.183.254:
05/05/2021 22:27:15 dut.10.240.183.254: modprobe ice
05/05/2021 22:27:18 dut.10.240.183.254:
05/05/2021 22:27:18 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:27:18 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:27:18 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:27:18 dut.10.240.183.254:
05/05/2021 22:27:21 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:27:21 dut.10.240.183.254:
05/05/2021 22:27:32 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 -a 0000:03:01.2 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:27:40 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.2 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Configuring Port 2 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 2: link state change event
Port 2: link state change event
Port 2: CE:B5:AD:95:65:79
Checking link statuses...
Done
05/05/2021 22:27:40 dut.10.240.183.254: set portlist 1,2
05/05/2021 22:27:40 dut.10.240.183.254:
previous number of forwarding ports 3 - changed to number of configured ports 2
05/05/2021 22:27:40 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:27:40 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:27:40 dut.10.240.183.254: set verbose 1
05/05/2021 22:27:40 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:27:40 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 / end actions vf id 1 / end
05/05/2021 22:27:41 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:27:41 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 / end actions vf id 2 / end
05/05/2021 22:27:41 dut.10.240.183.254:
Flow rule #1 created
05/05/2021 22:27:41 dut.10.240.183.254: flow list 0
05/05/2021 22:27:41 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 => VF
1 0 0 i-- ETH IPV4 => VF
05/05/2021 22:27:41 dut.10.240.183.254: start
05/05/2021 22:27:41 dut.10.240.183.254:
rxonly packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 2 streams:
RX P=1/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
RX P=2/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly 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=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 2: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:27:46 dut.10.240.183.254: stop
05/05/2021 22:27:46 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 2 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:27:46 dut.10.240.183.254: start
05/05/2021 22:27:47 dut.10.240.183.254:
rxonly packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 2 streams:
RX P=1/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
RX P=2/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly 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=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 2: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:27:52 dut.10.240.183.254: stop
05/05/2021 22:27:52 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 2 ----------------------
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.
05/05/2021 22:27:52 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:27:52 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:27:52 dut.10.240.183.254: flow list 0
05/05/2021 22:27:52 dut.10.240.183.254:
ID Group Prio Attr Rule
1 0 0 i-- ETH IPV4 => VF
05/05/2021 22:27:52 dut.10.240.183.254: start
05/05/2021 22:27:52 dut.10.240.183.254:
rxonly packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 2 streams:
RX P=1/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
RX P=2/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly 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=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 2: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:27:57 dut.10.240.183.254: stop
05/05/2021 22:27:57 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 2 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:27:57 dut.10.240.183.254: flow destroy 0 rule 1
05/05/2021 22:27:57 dut.10.240.183.254:
Flow rule #1 destroyed
05/05/2021 22:27:57 dut.10.240.183.254: flow list 0
05/05/2021 22:27:57 dut.10.240.183.254:
05/05/2021 22:27:57 dut.10.240.183.254: start
05/05/2021 22:27:57 dut.10.240.183.254:
rxonly packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 2 streams:
RX P=1/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
RX P=2/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly 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=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 2: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:28:03 dut.10.240.183.254: stop
05/05/2021 22:28:03 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 2 ----------------------
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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:28:03 CVLDCFSwitchFilterTest: Test Case test_add_two_rules_with_one_rule_input_set_included_in_the_other Result PASSED:
05/05/2021 22:28:03 dut.10.240.183.254: flow flush 0
05/05/2021 22:28:03 dut.10.240.183.254:
05/05/2021 22:28:03 dut.10.240.183.254: clear port stats all
05/05/2021 22:28:03 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
NIC statistics for port 2 cleared
05/05/2021 22:28:03 dut.10.240.183.254: quit
05/05/2021 22:28:04 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Stopping port 2...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Shutting down port 2...
Closing ports...
Port 2 is closed
Done
Bye...
05/05/2021 22:28:04 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:28:09 CVLDCFSwitchFilterTest: Test Case test_dcf_stop_start Begin
05/05/2021 22:28:10 dut.10.240.183.254:
05/05/2021 22:28:10 tester:
05/05/2021 22:28:10 dut.10.240.183.254: rmmod ice
05/05/2021 22:28:13 dut.10.240.183.254:
05/05/2021 22:28:13 dut.10.240.183.254: modprobe ice
05/05/2021 22:28:16 dut.10.240.183.254:
05/05/2021 22:28:16 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:28:17 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:28:17 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:28:17 dut.10.240.183.254:
05/05/2021 22:28:19 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:28:19 dut.10.240.183.254:
05/05/2021 22:28:30 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:28:38 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:28:38 dut.10.240.183.254: set portlist 1
05/05/2021 22:28:38 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:28:38 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:28:38 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:28:38 dut.10.240.183.254: set verbose 1
05/05/2021 22:28:38 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:28:38 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:28:39 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:28:39 dut.10.240.183.254: flow list 0
05/05/2021 22:28:39 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP => VF
05/05/2021 22:28:39 dut.10.240.183.254: start
05/05/2021 22:28:39 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:28:44 dut.10.240.183.254: stop
05/05/2021 22:28:44 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:28:44 dut.10.240.183.254: port stop 0
05/05/2021 22:28:44 dut.10.240.183.254:
Stopping ports...
Checking link statuses...
Done
05/05/2021 22:28:44 dut.10.240.183.254: port start 0
05/05/2021 22:28:44 dut.10.240.183.254:
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Checking link statuses...
Done
05/05/2021 22:28:44 dut.10.240.183.254: start
05/05/2021 22:28:44 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:28:49 dut.10.240.183.254: stop
05/05/2021 22:28:50 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:28:50 CVLDCFSwitchFilterTest: Test Case test_dcf_stop_start Result PASSED:
05/05/2021 22:28:50 dut.10.240.183.254: flow flush 0
05/05/2021 22:28:50 dut.10.240.183.254:
05/05/2021 22:28:50 dut.10.240.183.254: clear port stats all
05/05/2021 22:28:50 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:28:50 dut.10.240.183.254: quit
05/05/2021 22:28:51 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:28:51 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:28:56 CVLDCFSwitchFilterTest: Test Case test_ethertype_filter_ipv6 Begin
05/05/2021 22:28:56 dut.10.240.183.254:
05/05/2021 22:28:56 tester:
05/05/2021 22:28:56 dut.10.240.183.254: rmmod ice
05/05/2021 22:29:00 dut.10.240.183.254:
05/05/2021 22:29:00 dut.10.240.183.254: modprobe ice
05/05/2021 22:29:03 dut.10.240.183.254:
05/05/2021 22:29:03 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:29:03 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:29:03 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:29:03 dut.10.240.183.254:
05/05/2021 22:29:06 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:29:06 dut.10.240.183.254:
05/05/2021 22:29:17 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:29:25 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:29:25 dut.10.240.183.254: set portlist 1
05/05/2021 22:29:25 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:29:25 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:29:25 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:29:25 dut.10.240.183.254: set verbose 1
05/05/2021 22:29:25 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:29:25 dut.10.240.183.254: flow validate 0 ingress pattern eth type is 0x86dd / end actions vf id 1 / end
05/05/2021 22:29:25 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:29:25 dut.10.240.183.254: flow create 0 ingress pattern eth type is 0x86dd / end actions vf id 1 / end
05/05/2021 22:29:26 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:29:26 dut.10.240.183.254: flow list 0
05/05/2021 22:29:26 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH => VF
05/05/2021 22:29:26 dut.10.240.183.254: start
05/05/2021 22:29:26 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:29:31 dut.10.240.183.254: stop
05/05/2021 22:29:32 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:29:32 dut.10.240.183.254: start
05/05/2021 22:29:32 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:29:37 dut.10.240.183.254: stop
05/05/2021 22:29:37 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:29:37 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:29:37 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:29:37 dut.10.240.183.254: flow list 0
05/05/2021 22:29:37 dut.10.240.183.254:
05/05/2021 22:29:37 dut.10.240.183.254: start
05/05/2021 22:29:37 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:29:42 dut.10.240.183.254: stop
05/05/2021 22:29:42 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:29:42 CVLDCFSwitchFilterTest: Test Case test_ethertype_filter_ipv6 Result PASSED:
05/05/2021 22:29:42 dut.10.240.183.254: flow flush 0
05/05/2021 22:29:42 dut.10.240.183.254:
05/05/2021 22:29:42 dut.10.240.183.254: clear port stats all
05/05/2021 22:29:42 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:29:42 dut.10.240.183.254: quit
05/05/2021 22:29:44 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:29:44 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:29:49 CVLDCFSwitchFilterTest: Test Case test_ethertype_filter_pppod Begin
05/05/2021 22:29:49 dut.10.240.183.254:
05/05/2021 22:29:49 tester:
05/05/2021 22:29:49 dut.10.240.183.254: rmmod ice
05/05/2021 22:29:53 dut.10.240.183.254:
05/05/2021 22:29:53 dut.10.240.183.254: modprobe ice
05/05/2021 22:29:56 dut.10.240.183.254:
05/05/2021 22:29:56 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:29:56 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:29:56 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:29:56 dut.10.240.183.254:
05/05/2021 22:29:58 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:29:59 dut.10.240.183.254:
05/05/2021 22:30:09 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:30:18 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:30:18 dut.10.240.183.254: set portlist 1
05/05/2021 22:30:18 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:30:18 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:30:18 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:30:18 dut.10.240.183.254: set verbose 1
05/05/2021 22:30:18 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:30:18 dut.10.240.183.254: flow validate 0 ingress pattern eth type is 0x8863 / end actions vf id 1 / end
05/05/2021 22:30:18 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:30:18 dut.10.240.183.254: flow create 0 ingress pattern eth type is 0x8863 / end actions vf id 1 / end
05/05/2021 22:30:19 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:30:19 dut.10.240.183.254: flow list 0
05/05/2021 22:30:19 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH => VF
05/05/2021 22:30:19 dut.10.240.183.254: start
05/05/2021 22:30:19 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:30:24 dut.10.240.183.254: stop
05/05/2021 22:30:24 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:30:24 dut.10.240.183.254: start
05/05/2021 22:30:24 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:30:29 dut.10.240.183.254: stop
05/05/2021 22:30:29 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:30:29 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:30:30 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:30:30 dut.10.240.183.254: flow list 0
05/05/2021 22:30:30 dut.10.240.183.254:
05/05/2021 22:30:30 dut.10.240.183.254: start
05/05/2021 22:30:30 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:30:35 dut.10.240.183.254: stop
05/05/2021 22:30:35 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:30:35 CVLDCFSwitchFilterTest: Test Case test_ethertype_filter_pppod Result PASSED:
05/05/2021 22:30:35 dut.10.240.183.254: flow flush 0
05/05/2021 22:30:35 dut.10.240.183.254:
05/05/2021 22:30:35 dut.10.240.183.254: clear port stats all
05/05/2021 22:30:35 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:30:35 dut.10.240.183.254: quit
05/05/2021 22:30:36 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:30:36 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:30:42 CVLDCFSwitchFilterTest: Test Case test_ethertype_filter_pppoe Begin
05/05/2021 22:30:42 dut.10.240.183.254:
05/05/2021 22:30:42 tester:
05/05/2021 22:30:42 dut.10.240.183.254: rmmod ice
05/05/2021 22:30:45 dut.10.240.183.254:
05/05/2021 22:30:45 dut.10.240.183.254: modprobe ice
05/05/2021 22:30:49 dut.10.240.183.254:
05/05/2021 22:30:49 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:30:49 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:30:49 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:30:49 dut.10.240.183.254:
05/05/2021 22:30:51 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:30:51 dut.10.240.183.254:
05/05/2021 22:31:02 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:31:10 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:31:10 dut.10.240.183.254: set portlist 1
05/05/2021 22:31:10 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:31:10 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:31:10 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:31:10 dut.10.240.183.254: set verbose 1
05/05/2021 22:31:10 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:31:10 dut.10.240.183.254: flow validate 0 ingress pattern eth type is 0x8864 / end actions vf id 1 / end
05/05/2021 22:31:11 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:31:11 dut.10.240.183.254: flow create 0 ingress pattern eth type is 0x8864 / end actions vf id 1 / end
05/05/2021 22:31:12 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:31:12 dut.10.240.183.254: flow list 0
05/05/2021 22:31:12 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH => VF
05/05/2021 22:31:12 dut.10.240.183.254: start
05/05/2021 22:31:12 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:31:17 dut.10.240.183.254: stop
05/05/2021 22:31:17 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:31:17 dut.10.240.183.254: start
05/05/2021 22:31:17 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:31:22 dut.10.240.183.254: stop
05/05/2021 22:31:22 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:31:22 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:31:22 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:31:22 dut.10.240.183.254: flow list 0
05/05/2021 22:31:22 dut.10.240.183.254:
05/05/2021 22:31:22 dut.10.240.183.254: start
05/05/2021 22:31:22 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:31:28 dut.10.240.183.254: stop
05/05/2021 22:31:28 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:31:28 CVLDCFSwitchFilterTest: Test Case test_ethertype_filter_pppoe Result PASSED:
05/05/2021 22:31:28 dut.10.240.183.254: flow flush 0
05/05/2021 22:31:28 dut.10.240.183.254:
05/05/2021 22:31:28 dut.10.240.183.254: clear port stats all
05/05/2021 22:31:28 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:31:28 dut.10.240.183.254: quit
05/05/2021 22:31:29 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:31:29 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:31:34 CVLDCFSwitchFilterTest: Test Case test_fwd_with_multi_vfs Begin
05/05/2021 22:31:34 dut.10.240.183.254:
05/05/2021 22:31:35 tester:
05/05/2021 22:31:35 dut.10.240.183.254: rmmod ice
05/05/2021 22:31:38 dut.10.240.183.254:
05/05/2021 22:31:38 dut.10.240.183.254: modprobe ice
05/05/2021 22:31:42 dut.10.240.183.254:
05/05/2021 22:31:42 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:31:42 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:31:42 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:31:42 dut.10.240.183.254:
05/05/2021 22:31:44 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:31:44 dut.10.240.183.254:
05/05/2021 22:31:55 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 -a 0000:03:01.2 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:32:04 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.2 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Configuring Port 2 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 2: link state change event
Port 2: link state change event
Port 2: CE:B5:AD:95:65:79
Checking link statuses...
Done
05/05/2021 22:32:04 dut.10.240.183.254: set portlist 1,2
05/05/2021 22:32:04 dut.10.240.183.254:
previous number of forwarding ports 3 - changed to number of configured ports 2
05/05/2021 22:32:04 dut.10.240.183.254: set fwd mac
05/05/2021 22:32:04 dut.10.240.183.254:
Set mac packet forwarding mode
05/05/2021 22:32:04 dut.10.240.183.254: set verbose 1
05/05/2021 22:32:04 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:32:04 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.1 dst is 192.168.0.2 / end actions vf id 1 / end
05/05/2021 22:32:04 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:32:04 dut.10.240.183.254: flow list 0
05/05/2021 22:32:04 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 => VF
05/05/2021 22:32:04 dut.10.240.183.254: start
05/05/2021 22:32:04 dut.10.240.183.254:
mac packet forwarding - ports=2 - cores=1 - streams=2 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 2 streams:
RX P=1/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
RX P=2/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
mac 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=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
port 2: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:32:10 dut.10.240.183.254: stop
05/05/2021 22:32:10 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
---------------------- Forward statistics for port 2 ----------------------
RX-packets: 0 RX-dropped: 0 RX-total: 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.
05/05/2021 22:32:10 CVLDCFSwitchFilterTest: Test Case test_fwd_with_multi_vfs Result PASSED:
05/05/2021 22:32:10 dut.10.240.183.254: flow flush 0
05/05/2021 22:32:10 dut.10.240.183.254:
05/05/2021 22:32:10 dut.10.240.183.254: clear port stats all
05/05/2021 22:32:10 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
NIC statistics for port 2 cleared
05/05/2021 22:32:10 dut.10.240.183.254: quit
05/05/2021 22:32:11 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Stopping port 2...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Shutting down port 2...
Closing ports...
Port 2 is closed
Done
Bye...
05/05/2021 22:32:11 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:32:16 CVLDCFSwitchFilterTest: Test Case test_fwd_with_single_vf Begin
05/05/2021 22:32:17 dut.10.240.183.254:
05/05/2021 22:32:17 tester:
05/05/2021 22:32:17 dut.10.240.183.254: rmmod ice
05/05/2021 22:32:20 dut.10.240.183.254:
05/05/2021 22:32:20 dut.10.240.183.254: modprobe ice
05/05/2021 22:32:23 dut.10.240.183.254:
05/05/2021 22:32:23 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:32:23 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:32:23 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:32:23 dut.10.240.183.254:
05/05/2021 22:32:26 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:32:26 dut.10.240.183.254:
05/05/2021 22:32:37 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:32:45 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:32:45 dut.10.240.183.254: set portlist 1
05/05/2021 22:32:45 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:32:45 dut.10.240.183.254: set fwd mac
05/05/2021 22:32:45 dut.10.240.183.254:
Set mac packet forwarding mode
05/05/2021 22:32:45 dut.10.240.183.254: set verbose 1
05/05/2021 22:32:45 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:32:45 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.1 dst is 192.168.0.2 / end actions vf id 1 / end
05/05/2021 22:32:45 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:32:45 dut.10.240.183.254: flow list 0
05/05/2021 22:32:45 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 => VF
05/05/2021 22:32:45 dut.10.240.183.254: start
05/05/2021 22:32:46 dut.10.240.183.254:
mac packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
mac packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:32:51 dut.10.240.183.254: stop
05/05/2021 22:32:51 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:32:51 CVLDCFSwitchFilterTest: Test Case test_fwd_with_single_vf Result PASSED:
05/05/2021 22:32:51 dut.10.240.183.254: flow flush 0
05/05/2021 22:32:51 dut.10.240.183.254:
05/05/2021 22:32:51 dut.10.240.183.254: clear port stats all
05/05/2021 22:32:51 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:32:51 dut.10.240.183.254: quit
05/05/2021 22:32:52 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:32:52 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:32:57 CVLDCFSwitchFilterTest: Test Case test_ip_multicast Begin
05/05/2021 22:32:58 dut.10.240.183.254:
05/05/2021 22:32:58 tester:
05/05/2021 22:32:58 dut.10.240.183.254: rmmod ice
05/05/2021 22:33:01 dut.10.240.183.254:
05/05/2021 22:33:01 dut.10.240.183.254: modprobe ice
05/05/2021 22:33:04 dut.10.240.183.254:
05/05/2021 22:33:04 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:33:04 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:33:04 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:33:04 dut.10.240.183.254:
05/05/2021 22:33:07 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:33:07 dut.10.240.183.254:
05/05/2021 22:33:18 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:33:26 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:33:26 dut.10.240.183.254: set portlist 1
05/05/2021 22:33:26 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:33:26 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:33:26 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:33:26 dut.10.240.183.254: set verbose 1
05/05/2021 22:33:26 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:33:26 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 240.0.0.0 / end actions vf id 1 / end
05/05/2021 22:33:26 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:33:26 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 240.0.0.0 / end actions vf id 1 / end
05/05/2021 22:33:27 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:33:27 dut.10.240.183.254: flow list 0
05/05/2021 22:33:27 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 => VF
05/05/2021 22:33:27 dut.10.240.183.254: start
05/05/2021 22:33:27 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:33:32 dut.10.240.183.254: stop
05/05/2021 22:33:32 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:33:32 dut.10.240.183.254: start
05/05/2021 22:33:32 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:33:37 dut.10.240.183.254: stop
05/05/2021 22:33:37 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:33:37 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:33:37 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:33:37 dut.10.240.183.254: flow list 0
05/05/2021 22:33:37 dut.10.240.183.254:
05/05/2021 22:33:37 dut.10.240.183.254: start
05/05/2021 22:33:37 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:33:43 dut.10.240.183.254: stop
05/05/2021 22:33:43 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:33:43 CVLDCFSwitchFilterTest: Test Case test_ip_multicast Result PASSED:
05/05/2021 22:33:43 dut.10.240.183.254: flow flush 0
05/05/2021 22:33:43 dut.10.240.183.254:
05/05/2021 22:33:43 dut.10.240.183.254: clear port stats all
05/05/2021 22:33:43 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:33:43 dut.10.240.183.254: quit
05/05/2021 22:33:44 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:33:44 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:33:49 CVLDCFSwitchFilterTest: Test Case test_l2_multicast Begin
05/05/2021 22:33:49 dut.10.240.183.254:
05/05/2021 22:33:49 tester:
05/05/2021 22:33:49 dut.10.240.183.254: rmmod ice
05/05/2021 22:33:53 dut.10.240.183.254:
05/05/2021 22:33:53 dut.10.240.183.254: modprobe ice
05/05/2021 22:33:56 dut.10.240.183.254:
05/05/2021 22:33:56 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:33:56 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:33:56 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:33:56 dut.10.240.183.254:
05/05/2021 22:33:59 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:33:59 dut.10.240.183.254:
05/05/2021 22:34:10 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:34:18 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:34:18 dut.10.240.183.254: set portlist 1
05/05/2021 22:34:18 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:34:18 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:34:18 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:34:18 dut.10.240.183.254: set verbose 1
05/05/2021 22:34:18 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:34:18 dut.10.240.183.254: flow validate 0 ingress pattern eth dst spec 01:00:5e:00:00:00 dst mask ff:ff:ff:80:00:00 / end actions vf id 1 / end
05/05/2021 22:34:18 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:34:18 dut.10.240.183.254: flow create 0 ingress pattern eth dst spec 01:00:5e:00:00:00 dst mask ff:ff:ff:80:00:00 / end actions vf id 1 / end
05/05/2021 22:34:19 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:34:19 dut.10.240.183.254: flow list 0
05/05/2021 22:34:19 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH => VF
05/05/2021 22:34:19 dut.10.240.183.254: start
05/05/2021 22:34:19 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:34:24 dut.10.240.183.254: stop
05/05/2021 22:34:24 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:34:24 dut.10.240.183.254: start
05/05/2021 22:34:24 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:34:29 dut.10.240.183.254: stop
05/05/2021 22:34:29 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:34:29 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:34:29 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:34:29 dut.10.240.183.254: flow list 0
05/05/2021 22:34:29 dut.10.240.183.254:
05/05/2021 22:34:29 dut.10.240.183.254: start
05/05/2021 22:34:30 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:34:35 dut.10.240.183.254: stop
05/05/2021 22:34:35 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:34:35 CVLDCFSwitchFilterTest: Test Case test_l2_multicast Result PASSED:
05/05/2021 22:34:35 dut.10.240.183.254: flow flush 0
05/05/2021 22:34:35 dut.10.240.183.254:
05/05/2021 22:34:35 dut.10.240.183.254: clear port stats all
05/05/2021 22:34:35 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:34:35 dut.10.240.183.254: quit
05/05/2021 22:34:36 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:34:36 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:34:41 CVLDCFSwitchFilterTest: Test Case test_mac_drop_action Begin
05/05/2021 22:34:42 dut.10.240.183.254:
05/05/2021 22:34:42 tester:
05/05/2021 22:34:42 dut.10.240.183.254: rmmod ice
05/05/2021 22:34:45 dut.10.240.183.254:
05/05/2021 22:34:45 dut.10.240.183.254: modprobe ice
05/05/2021 22:34:48 dut.10.240.183.254:
05/05/2021 22:34:48 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:34:49 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:34:49 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:34:49 dut.10.240.183.254:
05/05/2021 22:34:51 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:34:51 dut.10.240.183.254:
05/05/2021 22:35:02 dut.10.240.183.254: ip link set ens865f0 vf 1 mac "00:11:22:33:44:55"
05/05/2021 22:35:02 dut.10.240.183.254:
05/05/2021 22:35:02 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:35:10 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 00:11:22:33:44:55
Checking link statuses...
Done
05/05/2021 22:35:10 dut.10.240.183.254: set portlist 1
05/05/2021 22:35:10 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:35:10 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:35:10 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:35:10 dut.10.240.183.254: set verbose 1
05/05/2021 22:35:10 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:35:10 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.1 / end actions drop / end
05/05/2021 22:35:10 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:35:10 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.1 / end actions drop / end
05/05/2021 22:35:11 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:35:11 dut.10.240.183.254: flow list 0
05/05/2021 22:35:11 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 => DROP
05/05/2021 22:35:11 dut.10.240.183.254: start
05/05/2021 22:35:11 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:35:16 dut.10.240.183.254: stop
05/05/2021 22:35:16 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:35:16 dut.10.240.183.254: start
05/05/2021 22:35:16 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:35:22 dut.10.240.183.254: stop
05/05/2021 22:35:22 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:35:22 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:35:22 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:35:22 dut.10.240.183.254: flow list 0
05/05/2021 22:35:22 dut.10.240.183.254:
05/05/2021 22:35:22 dut.10.240.183.254: start
05/05/2021 22:35:22 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:35:27 dut.10.240.183.254: stop
05/05/2021 22:35:27 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:35:27 dut.10.240.183.254: flow flush 0
05/05/2021 22:35:27 dut.10.240.183.254:
05/05/2021 22:35:27 dut.10.240.183.254: clear port stats all
05/05/2021 22:35:27 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:35:27 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 240.0.0.0 / end actions drop / end
05/05/2021 22:35:27 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:35:27 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 240.0.0.0 / end actions drop / end
05/05/2021 22:35:27 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:35:27 dut.10.240.183.254: flow list 0
05/05/2021 22:35:27 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 => DROP
05/05/2021 22:35:27 dut.10.240.183.254: start
05/05/2021 22:35:28 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:35:33 dut.10.240.183.254: stop
05/05/2021 22:35:33 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 1 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 0 RX-dropped: 1 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:35:33 dut.10.240.183.254: start
05/05/2021 22:35:33 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:35:38 dut.10.240.183.254: stop
05/05/2021 22:35:38 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:35:38 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:35:38 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:35:38 dut.10.240.183.254: flow list 0
05/05/2021 22:35:38 dut.10.240.183.254:
05/05/2021 22:35:38 dut.10.240.183.254: start
05/05/2021 22:35:38 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:35:43 dut.10.240.183.254: stop
05/05/2021 22:35:43 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:35:43 dut.10.240.183.254: flow flush 0
05/05/2021 22:35:44 dut.10.240.183.254:
05/05/2021 22:35:44 dut.10.240.183.254: clear port stats all
05/05/2021 22:35:44 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:35:44 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions drop / end
05/05/2021 22:35:44 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:35:44 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions drop / end
05/05/2021 22:35:44 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:35:44 dut.10.240.183.254: flow list 0
05/05/2021 22:35:44 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 NVGRE ETH IPV4 => DROP
05/05/2021 22:35:44 dut.10.240.183.254: start
05/05/2021 22:35:44 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:35:49 dut.10.240.183.254: stop
05/05/2021 22:35:49 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:35:49 dut.10.240.183.254: start
05/05/2021 22:35:49 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:35:54 dut.10.240.183.254: stop
05/05/2021 22:35:55 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:35:55 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:35:55 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:35:55 dut.10.240.183.254: flow list 0
05/05/2021 22:35:55 dut.10.240.183.254:
05/05/2021 22:35:55 dut.10.240.183.254: start
05/05/2021 22:35:55 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:36:00 dut.10.240.183.254: stop
05/05/2021 22:36:00 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:36:00 dut.10.240.183.254: flow flush 0
05/05/2021 22:36:00 dut.10.240.183.254:
05/05/2021 22:36:00 dut.10.240.183.254: clear port stats all
05/05/2021 22:36:00 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:36:00 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions drop / end
05/05/2021 22:36:00 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:36:00 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions drop / end
05/05/2021 22:36:00 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:36:00 dut.10.240.183.254: flow list 0
05/05/2021 22:36:00 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES PPPOE_PROTO_ID => DROP
05/05/2021 22:36:00 dut.10.240.183.254: start
05/05/2021 22:36:01 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:36:06 dut.10.240.183.254: stop
05/05/2021 22:36:06 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:36:06 dut.10.240.183.254: start
05/05/2021 22:36:06 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:36:11 dut.10.240.183.254: stop
05/05/2021 22:36:11 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:36:11 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:36:11 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:36:11 dut.10.240.183.254: flow list 0
05/05/2021 22:36:11 dut.10.240.183.254:
05/05/2021 22:36:11 dut.10.240.183.254: start
05/05/2021 22:36:11 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:36:16 dut.10.240.183.254: stop
05/05/2021 22:36:16 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:36:16 dut.10.240.183.254: flow flush 0
05/05/2021 22:36:16 dut.10.240.183.254:
05/05/2021 22:36:16 dut.10.240.183.254: clear port stats all
05/05/2021 22:36:17 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:36:17 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions drop / end
05/05/2021 22:36:17 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:36:17 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions drop / end
05/05/2021 22:36:17 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:36:17 dut.10.240.183.254: flow list 0
05/05/2021 22:36:17 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP PFCP => DROP
05/05/2021 22:36:17 dut.10.240.183.254: start
05/05/2021 22:36:17 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:36:22 dut.10.240.183.254: stop
05/05/2021 22:36:22 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:36:22 dut.10.240.183.254: start
05/05/2021 22:36:22 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:36:27 dut.10.240.183.254: stop
05/05/2021 22:36:27 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:36:27 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:36:27 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:36:27 dut.10.240.183.254: flow list 0
05/05/2021 22:36:28 dut.10.240.183.254:
05/05/2021 22:36:28 dut.10.240.183.254: start
05/05/2021 22:36:28 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:36:33 dut.10.240.183.254: stop
05/05/2021 22:36:33 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:36:33 dut.10.240.183.254: flow flush 0
05/05/2021 22:36:33 dut.10.240.183.254:
05/05/2021 22:36:33 dut.10.240.183.254: clear port stats all
05/05/2021 22:36:33 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:36:33 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / end actions drop / end
05/05/2021 22:36:33 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:36:33 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / end actions drop / end
05/05/2021 22:36:33 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:36:33 dut.10.240.183.254: flow list 0
05/05/2021 22:36:33 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN => DROP
05/05/2021 22:36:33 dut.10.240.183.254: start
05/05/2021 22:36:34 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:36:39 dut.10.240.183.254: stop
05/05/2021 22:36:39 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:36:39 dut.10.240.183.254: start
05/05/2021 22:36:39 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:36:44 dut.10.240.183.254: stop
05/05/2021 22:36:44 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:36:44 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:36:44 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:36:44 dut.10.240.183.254: flow list 0
05/05/2021 22:36:44 dut.10.240.183.254:
05/05/2021 22:36:44 dut.10.240.183.254: start
05/05/2021 22:36:44 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:36:49 dut.10.240.183.254: stop
05/05/2021 22:36:49 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:36:49 dut.10.240.183.254: flow flush 0
05/05/2021 22:36:49 dut.10.240.183.254:
05/05/2021 22:36:49 dut.10.240.183.254: clear port stats all
05/05/2021 22:36:50 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:36:50 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / l2tpv3oip session_id is 1 / end actions drop / end
05/05/2021 22:36:50 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:36:50 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / l2tpv3oip session_id is 1 / end actions drop / end
05/05/2021 22:36:50 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:36:50 dut.10.240.183.254: flow list 0
05/05/2021 22:36:50 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 L2TPV3OIP => DROP
05/05/2021 22:36:50 dut.10.240.183.254: start
05/05/2021 22:36:50 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:36:55 dut.10.240.183.254: stop
05/05/2021 22:36:55 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:36:55 dut.10.240.183.254: start
05/05/2021 22:36:55 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:37:00 dut.10.240.183.254: stop
05/05/2021 22:37:00 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:37:00 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:37:00 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:37:00 dut.10.240.183.254: flow list 0
05/05/2021 22:37:01 dut.10.240.183.254:
05/05/2021 22:37:01 dut.10.240.183.254: start
05/05/2021 22:37:01 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:37:06 dut.10.240.183.254: stop
05/05/2021 22:37:06 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:37:06 dut.10.240.183.254: flow flush 0
05/05/2021 22:37:06 dut.10.240.183.254:
05/05/2021 22:37:06 dut.10.240.183.254: clear port stats all
05/05/2021 22:37:06 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:37:06 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / esp spi is 1 / end actions drop / end
05/05/2021 22:37:06 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:37:06 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / esp spi is 1 / end actions drop / end
05/05/2021 22:37:06 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:37:06 dut.10.240.183.254: flow list 0
05/05/2021 22:37:06 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 ESP => DROP
05/05/2021 22:37:06 dut.10.240.183.254: start
05/05/2021 22:37:06 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:37:11 dut.10.240.183.254: stop
05/05/2021 22:37:12 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:37:12 dut.10.240.183.254: start
05/05/2021 22:37:12 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:37:17 dut.10.240.183.254: stop
05/05/2021 22:37:17 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:37:17 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:37:17 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:37:17 dut.10.240.183.254: flow list 0
05/05/2021 22:37:17 dut.10.240.183.254:
05/05/2021 22:37:17 dut.10.240.183.254: start
05/05/2021 22:37:17 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:37:22 dut.10.240.183.254: stop
05/05/2021 22:37:22 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:37:22 dut.10.240.183.254: flow flush 0
05/05/2021 22:37:22 dut.10.240.183.254:
05/05/2021 22:37:22 dut.10.240.183.254: clear port stats all
05/05/2021 22:37:22 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:37:22 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.1 / end actions drop / end
05/05/2021 22:37:22 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:37:22 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 240.0.0.0 / end actions drop / end
05/05/2021 22:37:22 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:37:22 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 dst is 192.168.0.3 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:37:23 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:37:23 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:37:23 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:37:23 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.4 / l2tpv3oip session_id is 1 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:37:23 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.5 / esp spi is 1 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:37:23 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.1 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:37:23 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 240.0.0.0 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule #1 created
05/05/2021 22:37:23 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.3 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule #2 created
05/05/2021 22:37:23 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule #3 created
05/05/2021 22:37:23 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule #4 created
05/05/2021 22:37:23 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule #5 created
05/05/2021 22:37:23 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.4 / l2tpv3oip session_id is 1 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule #6 created
05/05/2021 22:37:23 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.5 / esp spi is 1 / end actions drop / end
05/05/2021 22:37:23 dut.10.240.183.254:
Flow rule #7 created
05/05/2021 22:37:23 dut.10.240.183.254: flow list 0
05/05/2021 22:37:23 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 => DROP
1 0 0 i-- ETH IPV4 => DROP
2 0 0 i-- ETH IPV4 NVGRE ETH IPV4 => DROP
3 0 0 i-- ETH VLAN PPPOES PPPOE_PROTO_ID => DROP
4 0 0 i-- ETH IPV4 UDP PFCP => DROP
5 0 0 i-- ETH VLAN => DROP
6 0 0 i-- ETH IPV4 L2TPV3OIP => DROP
7 0 0 i-- ETH IPV4 ESP => DROP
05/05/2021 22:37:23 dut.10.240.183.254: start
05/05/2021 22:37:24 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:37:29 dut.10.240.183.254: stop
05/05/2021 22:37:29 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 0 RX-dropped: 1 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 0 RX-dropped: 1 RX-total: 1
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:37:29 dut.10.240.183.254: start
05/05/2021 22:37:29 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:37:34 dut.10.240.183.254: stop
05/05/2021 22:37:34 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 8 RX-dropped: 0 RX-total: 8
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 8 RX-dropped: 0 RX-total: 8
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:37:34 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:37:34 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:37:34 dut.10.240.183.254: flow destroy 0 rule 1
05/05/2021 22:37:34 dut.10.240.183.254:
Flow rule #1 destroyed
05/05/2021 22:37:34 dut.10.240.183.254: flow destroy 0 rule 2
05/05/2021 22:37:34 dut.10.240.183.254:
Flow rule #2 destroyed
05/05/2021 22:37:34 dut.10.240.183.254: flow destroy 0 rule 3
05/05/2021 22:37:34 dut.10.240.183.254:
Flow rule #3 destroyed
05/05/2021 22:37:34 dut.10.240.183.254: flow destroy 0 rule 4
05/05/2021 22:37:34 dut.10.240.183.254:
Flow rule #4 destroyed
05/05/2021 22:37:34 dut.10.240.183.254: flow destroy 0 rule 5
05/05/2021 22:37:35 dut.10.240.183.254:
Flow rule #5 destroyed
05/05/2021 22:37:35 dut.10.240.183.254: flow destroy 0 rule 6
05/05/2021 22:37:35 dut.10.240.183.254:
Flow rule #6 destroyed
05/05/2021 22:37:35 dut.10.240.183.254: flow destroy 0 rule 7
05/05/2021 22:37:35 dut.10.240.183.254:
Flow rule #7 destroyed
05/05/2021 22:37:35 dut.10.240.183.254: flow list 0
05/05/2021 22:37:35 dut.10.240.183.254:
05/05/2021 22:37:35 dut.10.240.183.254: start
05/05/2021 22:37:35 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:37:40 dut.10.240.183.254: stop
05/05/2021 22:37:40 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 8 RX-dropped: 0 RX-total: 8
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 8 RX-dropped: 0 RX-total: 8
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:37:40 dut.10.240.183.254: flow flush 0
05/05/2021 22:37:40 dut.10.240.183.254:
05/05/2021 22:37:40 dut.10.240.183.254: clear port stats all
05/05/2021 22:37:40 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:37:40 CVLDCFSwitchFilterTest: Test Case test_mac_drop_action Result PASSED:
05/05/2021 22:37:40 dut.10.240.183.254: flow flush 0
05/05/2021 22:37:40 dut.10.240.183.254:
05/05/2021 22:37:40 dut.10.240.183.254: clear port stats all
05/05/2021 22:37:40 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:37:40 dut.10.240.183.254: quit
05/05/2021 22:37:42 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:37:42 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:37:47 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_ah Begin
05/05/2021 22:37:47 dut.10.240.183.254:
05/05/2021 22:37:47 tester:
05/05/2021 22:37:47 dut.10.240.183.254: rmmod ice
05/05/2021 22:37:51 dut.10.240.183.254:
05/05/2021 22:37:51 dut.10.240.183.254: modprobe ice
05/05/2021 22:37:54 dut.10.240.183.254:
05/05/2021 22:37:54 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:37:54 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:37:54 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:37:54 dut.10.240.183.254:
05/05/2021 22:37:56 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:37:57 dut.10.240.183.254:
05/05/2021 22:38:07 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:38:16 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:38:16 dut.10.240.183.254: set portlist 1
05/05/2021 22:38:16 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:38:16 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:38:16 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:38:16 dut.10.240.183.254: set verbose 1
05/05/2021 22:38:16 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:38:16 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / ah spi is 1 / end actions vf id 1 / end
05/05/2021 22:38:16 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:38:16 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / ah spi is 1 / end actions vf id 1 / end
05/05/2021 22:38:16 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:38:16 dut.10.240.183.254: flow list 0
05/05/2021 22:38:16 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 AH => VF
05/05/2021 22:38:16 dut.10.240.183.254: start
05/05/2021 22:38:16 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:38:21 dut.10.240.183.254: stop
05/05/2021 22:38:22 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:38:22 dut.10.240.183.254: start
05/05/2021 22:38:22 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:38:27 dut.10.240.183.254: stop
05/05/2021 22:38:27 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:38:27 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:38:27 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:38:27 dut.10.240.183.254: flow list 0
05/05/2021 22:38:27 dut.10.240.183.254:
05/05/2021 22:38:27 dut.10.240.183.254: start
05/05/2021 22:38:27 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:38:32 dut.10.240.183.254: stop
05/05/2021 22:38:32 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:38:32 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_ah Result PASSED:
05/05/2021 22:38:32 dut.10.240.183.254: flow flush 0
05/05/2021 22:38:32 dut.10.240.183.254:
05/05/2021 22:38:32 dut.10.240.183.254: clear port stats all
05/05/2021 22:38:32 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:38:32 dut.10.240.183.254: quit
05/05/2021 22:38:34 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:38:34 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:38:39 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_esp Begin
05/05/2021 22:38:39 dut.10.240.183.254:
05/05/2021 22:38:39 tester:
05/05/2021 22:38:39 dut.10.240.183.254: rmmod ice
05/05/2021 22:38:42 dut.10.240.183.254:
05/05/2021 22:38:42 dut.10.240.183.254: modprobe ice
05/05/2021 22:38:46 dut.10.240.183.254:
05/05/2021 22:38:46 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:38:46 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:38:46 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:38:46 dut.10.240.183.254:
05/05/2021 22:38:48 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:38:49 dut.10.240.183.254:
05/05/2021 22:38:59 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:39:07 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:39:07 dut.10.240.183.254: set portlist 1
05/05/2021 22:39:08 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:39:08 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:39:08 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:39:08 dut.10.240.183.254: set verbose 1
05/05/2021 22:39:08 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:39:08 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / esp spi is 1 / end actions vf id 1 / end
05/05/2021 22:39:08 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:39:08 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / esp spi is 1 / end actions vf id 1 / end
05/05/2021 22:39:08 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:39:08 dut.10.240.183.254: flow list 0
05/05/2021 22:39:08 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 ESP => VF
05/05/2021 22:39:08 dut.10.240.183.254: start
05/05/2021 22:39:08 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:39:13 dut.10.240.183.254: stop
05/05/2021 22:39:13 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:39:13 dut.10.240.183.254: start
05/05/2021 22:39:14 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:39:19 dut.10.240.183.254: stop
05/05/2021 22:39:19 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:39:19 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:39:19 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:39:19 dut.10.240.183.254: flow list 0
05/05/2021 22:39:19 dut.10.240.183.254:
05/05/2021 22:39:19 dut.10.240.183.254: start
05/05/2021 22:39:19 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:39:24 dut.10.240.183.254: stop
05/05/2021 22:39:24 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:39:24 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_esp Result PASSED:
05/05/2021 22:39:24 dut.10.240.183.254: flow flush 0
05/05/2021 22:39:24 dut.10.240.183.254:
05/05/2021 22:39:24 dut.10.240.183.254: clear port stats all
05/05/2021 22:39:24 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:39:24 dut.10.240.183.254: quit
05/05/2021 22:39:25 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:39:25 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:39:31 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_frag Begin
05/05/2021 22:39:31 dut.10.240.183.254:
05/05/2021 22:39:31 tester:
05/05/2021 22:39:31 dut.10.240.183.254: rmmod ice
05/05/2021 22:39:34 dut.10.240.183.254:
05/05/2021 22:39:34 dut.10.240.183.254: modprobe ice
05/05/2021 22:39:38 dut.10.240.183.254:
05/05/2021 22:39:38 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:39:38 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:39:38 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:39:38 dut.10.240.183.254:
05/05/2021 22:39:40 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:39:40 dut.10.240.183.254:
05/05/2021 22:39:51 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:39:59 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:39:59 dut.10.240.183.254: set portlist 1
05/05/2021 22:39:59 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:39:59 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:40:00 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:40:00 dut.10.240.183.254: set verbose 1
05/05/2021 22:40:00 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:40:00 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 2 / end actions vf id 1 / end
05/05/2021 22:40:00 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:40:00 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 2 / end actions vf id 1 / end
05/05/2021 22:40:00 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:40:00 dut.10.240.183.254: flow list 0
05/05/2021 22:40:00 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 => VF
05/05/2021 22:40:00 dut.10.240.183.254: start
05/05/2021 22:40:00 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:40:05 dut.10.240.183.254: stop
05/05/2021 22:40:06 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:40:06 dut.10.240.183.254: start
05/05/2021 22:40:06 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:40:11 dut.10.240.183.254: stop
05/05/2021 22:40:11 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:40:11 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:40:11 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:40:11 dut.10.240.183.254: flow list 0
05/05/2021 22:40:11 dut.10.240.183.254:
05/05/2021 22:40:11 dut.10.240.183.254: start
05/05/2021 22:40:11 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:40:16 dut.10.240.183.254: stop
05/05/2021 22:40:16 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:40:16 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_frag Result PASSED:
05/05/2021 22:40:16 dut.10.240.183.254: flow flush 0
05/05/2021 22:40:16 dut.10.240.183.254:
05/05/2021 22:40:16 dut.10.240.183.254: clear port stats all
05/05/2021 22:40:16 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:40:16 dut.10.240.183.254: quit
05/05/2021 22:40:18 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:40:18 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:40:23 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_igmp Begin
05/05/2021 22:40:23 dut.10.240.183.254:
05/05/2021 22:40:23 tester:
05/05/2021 22:40:23 dut.10.240.183.254: rmmod ice
05/05/2021 22:40:27 dut.10.240.183.254:
05/05/2021 22:40:27 dut.10.240.183.254: modprobe ice
05/05/2021 22:40:30 dut.10.240.183.254:
05/05/2021 22:40:30 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:40:30 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:40:30 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:40:30 dut.10.240.183.254:
05/05/2021 22:40:32 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:40:33 dut.10.240.183.254:
05/05/2021 22:40:43 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:40:52 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:40:52 dut.10.240.183.254: set portlist 1
05/05/2021 22:40:52 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:40:52 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:40:52 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:40:52 dut.10.240.183.254: set verbose 1
05/05/2021 22:40:52 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:40:52 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 proto is 0x02 / end actions vf id 1 / end
05/05/2021 22:40:52 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:40:52 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 proto is 0x02 / end actions vf id 1 / end
05/05/2021 22:40:52 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:40:52 dut.10.240.183.254: flow list 0
05/05/2021 22:40:52 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 => VF
05/05/2021 22:40:52 dut.10.240.183.254: start
05/05/2021 22:40:52 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:40:58 dut.10.240.183.254: stop
05/05/2021 22:40:58 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:40:58 dut.10.240.183.254: start
05/05/2021 22:40:58 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:41:03 dut.10.240.183.254: stop
05/05/2021 22:41:03 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:41:03 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:41:03 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:41:03 dut.10.240.183.254: flow list 0
05/05/2021 22:41:03 dut.10.240.183.254:
05/05/2021 22:41:03 dut.10.240.183.254: start
05/05/2021 22:41:03 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:41:08 dut.10.240.183.254: stop
05/05/2021 22:41:08 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:41:08 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_igmp Result PASSED:
05/05/2021 22:41:08 dut.10.240.183.254: flow flush 0
05/05/2021 22:41:08 dut.10.240.183.254:
05/05/2021 22:41:08 dut.10.240.183.254: clear port stats all
05/05/2021 22:41:08 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:41:08 dut.10.240.183.254: quit
05/05/2021 22:41:10 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:41:10 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:41:15 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_l2tpv3 Begin
05/05/2021 22:41:15 dut.10.240.183.254:
05/05/2021 22:41:15 tester:
05/05/2021 22:41:15 dut.10.240.183.254: rmmod ice
05/05/2021 22:41:19 dut.10.240.183.254:
05/05/2021 22:41:19 dut.10.240.183.254: modprobe ice
05/05/2021 22:41:22 dut.10.240.183.254:
05/05/2021 22:41:22 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:41:22 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:41:22 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:41:22 dut.10.240.183.254:
05/05/2021 22:41:24 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:41:25 dut.10.240.183.254:
05/05/2021 22:41:35 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:41:44 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:41:44 dut.10.240.183.254: set portlist 1
05/05/2021 22:41:44 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:41:44 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:41:44 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:41:44 dut.10.240.183.254: set verbose 1
05/05/2021 22:41:44 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:41:44 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / l2tpv3oip session_id is 1 / end actions vf id 1 / end
05/05/2021 22:41:44 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:41:44 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / l2tpv3oip session_id is 1 / end actions vf id 1 / end
05/05/2021 22:41:44 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:41:44 dut.10.240.183.254: flow list 0
05/05/2021 22:41:44 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 L2TPV3OIP => VF
05/05/2021 22:41:44 dut.10.240.183.254: start
05/05/2021 22:41:44 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:41:49 dut.10.240.183.254: stop
05/05/2021 22:41:50 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:41:50 dut.10.240.183.254: start
05/05/2021 22:41:50 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:41:55 dut.10.240.183.254: stop
05/05/2021 22:41:55 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:41:55 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:41:55 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:41:55 dut.10.240.183.254: flow list 0
05/05/2021 22:41:55 dut.10.240.183.254:
05/05/2021 22:41:55 dut.10.240.183.254: start
05/05/2021 22:41:55 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:42:00 dut.10.240.183.254: stop
05/05/2021 22:42:00 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:42:00 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_l2tpv3 Result PASSED:
05/05/2021 22:42:00 dut.10.240.183.254: flow flush 0
05/05/2021 22:42:00 dut.10.240.183.254:
05/05/2021 22:42:00 dut.10.240.183.254: clear port stats all
05/05/2021 22:42:00 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:42:00 dut.10.240.183.254: quit
05/05/2021 22:42:02 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:42:02 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:42:07 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nat_t_esp Begin
05/05/2021 22:42:07 dut.10.240.183.254:
05/05/2021 22:42:07 tester:
05/05/2021 22:42:07 dut.10.240.183.254: rmmod ice
05/05/2021 22:42:11 dut.10.240.183.254:
05/05/2021 22:42:11 dut.10.240.183.254: modprobe ice
05/05/2021 22:42:14 dut.10.240.183.254:
05/05/2021 22:42:14 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:42:14 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:42:14 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:42:14 dut.10.240.183.254:
05/05/2021 22:42:17 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:42:17 dut.10.240.183.254:
05/05/2021 22:42:27 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:42:36 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:42:36 dut.10.240.183.254: set portlist 1
05/05/2021 22:42:36 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:42:36 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:42:36 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:42:36 dut.10.240.183.254: set verbose 1
05/05/2021 22:42:36 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:42:36 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / udp / esp spi is 1 / end actions vf id 1 / end
05/05/2021 22:42:36 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:42:36 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / udp / esp spi is 1 / end actions vf id 1 / end
05/05/2021 22:42:36 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:42:36 dut.10.240.183.254: flow list 0
05/05/2021 22:42:36 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP ESP => VF
05/05/2021 22:42:36 dut.10.240.183.254: start
05/05/2021 22:42:36 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:42:42 dut.10.240.183.254: stop
05/05/2021 22:42:42 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:42:42 dut.10.240.183.254: start
05/05/2021 22:42:42 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:42:47 dut.10.240.183.254: stop
05/05/2021 22:42:47 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:42:47 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:42:47 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:42:47 dut.10.240.183.254: flow list 0
05/05/2021 22:42:47 dut.10.240.183.254:
05/05/2021 22:42:47 dut.10.240.183.254: start
05/05/2021 22:42:47 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:42:52 dut.10.240.183.254: stop
05/05/2021 22:42:52 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:42:52 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nat_t_esp Result PASSED:
05/05/2021 22:42:52 dut.10.240.183.254: flow flush 0
05/05/2021 22:42:52 dut.10.240.183.254:
05/05/2021 22:42:52 dut.10.240.183.254: clear port stats all
05/05/2021 22:42:52 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:42:52 dut.10.240.183.254: quit
05/05/2021 22:42:54 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:42:54 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:42:59 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nvgre_ipv4_pay Begin
05/05/2021 22:42:59 dut.10.240.183.254:
05/05/2021 22:42:59 tester:
05/05/2021 22:42:59 dut.10.240.183.254: rmmod ice
05/05/2021 22:43:03 dut.10.240.183.254:
05/05/2021 22:43:03 dut.10.240.183.254: modprobe ice
05/05/2021 22:43:06 dut.10.240.183.254:
05/05/2021 22:43:06 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:43:06 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:43:06 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:43:06 dut.10.240.183.254:
05/05/2021 22:43:08 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:43:09 dut.10.240.183.254:
05/05/2021 22:43:19 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:43:27 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:43:27 dut.10.240.183.254: set portlist 1
05/05/2021 22:43:28 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:43:28 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:43:28 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:43:28 dut.10.240.183.254: set verbose 1
05/05/2021 22:43:28 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:43:28 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions vf id 1 / end
05/05/2021 22:43:28 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:43:28 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions vf id 1 / end
05/05/2021 22:43:28 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:43:28 dut.10.240.183.254: flow list 0
05/05/2021 22:43:28 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 NVGRE ETH IPV4 => VF
05/05/2021 22:43:28 dut.10.240.183.254: start
05/05/2021 22:43:28 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:43:33 dut.10.240.183.254: stop
05/05/2021 22:43:34 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:43:34 dut.10.240.183.254: start
05/05/2021 22:43:34 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:43:39 dut.10.240.183.254: stop
05/05/2021 22:43:39 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:43:39 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:43:39 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:43:39 dut.10.240.183.254: flow list 0
05/05/2021 22:43:39 dut.10.240.183.254:
05/05/2021 22:43:39 dut.10.240.183.254: start
05/05/2021 22:43:39 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:43:44 dut.10.240.183.254: stop
05/05/2021 22:43:44 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:43:44 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nvgre_ipv4_pay Result PASSED:
05/05/2021 22:43:44 dut.10.240.183.254: flow flush 0
05/05/2021 22:43:44 dut.10.240.183.254:
05/05/2021 22:43:44 dut.10.240.183.254: clear port stats all
05/05/2021 22:43:44 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:43:44 dut.10.240.183.254: quit
05/05/2021 22:43:46 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:43:46 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:43:51 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nvgre_ipv4_tcp Begin
05/05/2021 22:43:51 dut.10.240.183.254:
05/05/2021 22:43:51 tester:
05/05/2021 22:43:51 dut.10.240.183.254: rmmod ice
05/05/2021 22:43:54 dut.10.240.183.254:
05/05/2021 22:43:54 dut.10.240.183.254: modprobe ice
05/05/2021 22:43:58 dut.10.240.183.254:
05/05/2021 22:43:58 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:43:58 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:43:58 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:43:58 dut.10.240.183.254:
05/05/2021 22:44:00 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:44:00 dut.10.240.183.254:
05/05/2021 22:44:11 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:44:19 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:44:19 dut.10.240.183.254: set portlist 1
05/05/2021 22:44:20 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:44:20 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:44:20 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:44:20 dut.10.240.183.254: set verbose 1
05/05/2021 22:44:20 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:44:20 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:44:20 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:44:20 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:44:20 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:44:20 dut.10.240.183.254: flow list 0
05/05/2021 22:44:20 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 NVGRE ETH IPV4 TCP => VF
05/05/2021 22:44:20 dut.10.240.183.254: start
05/05/2021 22:44:20 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:44:25 dut.10.240.183.254: stop
05/05/2021 22:44:25 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:44:25 dut.10.240.183.254: start
05/05/2021 22:44:26 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:44:31 dut.10.240.183.254: stop
05/05/2021 22:44:31 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:44:31 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:44:31 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:44:31 dut.10.240.183.254: flow list 0
05/05/2021 22:44:31 dut.10.240.183.254:
05/05/2021 22:44:31 dut.10.240.183.254: start
05/05/2021 22:44:31 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:44:36 dut.10.240.183.254: stop
05/05/2021 22:44:36 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:44:36 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nvgre_ipv4_tcp Result PASSED:
05/05/2021 22:44:36 dut.10.240.183.254: flow flush 0
05/05/2021 22:44:36 dut.10.240.183.254:
05/05/2021 22:44:36 dut.10.240.183.254: clear port stats all
05/05/2021 22:44:36 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:44:36 dut.10.240.183.254: quit
05/05/2021 22:44:38 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:44:38 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:44:43 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nvgre_ipv4_udp_pay Begin
05/05/2021 22:44:43 dut.10.240.183.254:
05/05/2021 22:44:43 tester:
05/05/2021 22:44:43 dut.10.240.183.254: rmmod ice
05/05/2021 22:44:46 dut.10.240.183.254:
05/05/2021 22:44:46 dut.10.240.183.254: modprobe ice
05/05/2021 22:44:50 dut.10.240.183.254:
05/05/2021 22:44:50 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:44:50 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:44:50 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:44:50 dut.10.240.183.254:
05/05/2021 22:44:52 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:44:52 dut.10.240.183.254:
05/05/2021 22:45:03 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:45:11 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:45:11 dut.10.240.183.254: set portlist 1
05/05/2021 22:45:11 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:45:11 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:45:12 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:45:12 dut.10.240.183.254: set verbose 1
05/05/2021 22:45:12 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:45:12 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 0x8 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp src is 50 dst is 23 / end actions vf id 1 / end
05/05/2021 22:45:12 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:45:12 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 0x8 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp src is 50 dst is 23 / end actions vf id 1 / end
05/05/2021 22:45:12 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:45:12 dut.10.240.183.254: flow list 0
05/05/2021 22:45:12 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 NVGRE ETH IPV4 UDP => VF
05/05/2021 22:45:12 dut.10.240.183.254: start
05/05/2021 22:45:12 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:45:17 dut.10.240.183.254: stop
05/05/2021 22:45:17 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:45:17 dut.10.240.183.254: start
05/05/2021 22:45:17 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:45:23 dut.10.240.183.254: stop
05/05/2021 22:45:23 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:45:23 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:45:23 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:45:23 dut.10.240.183.254: flow list 0
05/05/2021 22:45:23 dut.10.240.183.254:
05/05/2021 22:45:23 dut.10.240.183.254: start
05/05/2021 22:45:23 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:45:28 dut.10.240.183.254: stop
05/05/2021 22:45:28 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:45:28 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nvgre_ipv4_udp_pay Result PASSED:
05/05/2021 22:45:28 dut.10.240.183.254: flow flush 0
05/05/2021 22:45:28 dut.10.240.183.254:
05/05/2021 22:45:28 dut.10.240.183.254: clear port stats all
05/05/2021 22:45:28 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:45:28 dut.10.240.183.254: quit
05/05/2021 22:45:29 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:45:29 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:45:35 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nvgre_mac_ipv4_pay Begin
05/05/2021 22:45:35 dut.10.240.183.254:
05/05/2021 22:45:35 tester:
05/05/2021 22:45:35 dut.10.240.183.254: rmmod ice
05/05/2021 22:45:38 dut.10.240.183.254:
05/05/2021 22:45:38 dut.10.240.183.254: modprobe ice
05/05/2021 22:45:42 dut.10.240.183.254:
05/05/2021 22:45:42 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:45:42 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:45:42 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:45:42 dut.10.240.183.254:
05/05/2021 22:45:44 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:45:44 dut.10.240.183.254:
05/05/2021 22:45:55 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:46:04 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:46:04 dut.10.240.183.254: set portlist 1
05/05/2021 22:46:04 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:46:04 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:46:04 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:46:04 dut.10.240.183.254: set verbose 1
05/05/2021 22:46:04 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:46:04 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions vf id 1 / end
05/05/2021 22:46:04 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:46:04 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions vf id 1 / end
05/05/2021 22:46:04 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:46:04 dut.10.240.183.254: flow list 0
05/05/2021 22:46:04 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 NVGRE ETH IPV4 => VF
05/05/2021 22:46:04 dut.10.240.183.254: start
05/05/2021 22:46:04 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:46:10 dut.10.240.183.254: stop
05/05/2021 22:46:10 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:46:10 dut.10.240.183.254: start
05/05/2021 22:46:10 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:46:15 dut.10.240.183.254: stop
05/05/2021 22:46:15 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:46:15 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:46:15 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:46:15 dut.10.240.183.254: flow list 0
05/05/2021 22:46:15 dut.10.240.183.254:
05/05/2021 22:46:15 dut.10.240.183.254: start
05/05/2021 22:46:15 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:46:20 dut.10.240.183.254: stop
05/05/2021 22:46:20 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:46:20 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nvgre_mac_ipv4_pay Result PASSED:
05/05/2021 22:46:20 dut.10.240.183.254: flow flush 0
05/05/2021 22:46:20 dut.10.240.183.254:
05/05/2021 22:46:20 dut.10.240.183.254: clear port stats all
05/05/2021 22:46:21 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:46:21 dut.10.240.183.254: quit
05/05/2021 22:46:22 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:46:22 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:46:27 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nvgre_mac_ipv4_tcp Begin
05/05/2021 22:46:27 dut.10.240.183.254:
05/05/2021 22:46:27 tester:
05/05/2021 22:46:27 dut.10.240.183.254: rmmod ice
05/05/2021 22:46:31 dut.10.240.183.254:
05/05/2021 22:46:31 dut.10.240.183.254: modprobe ice
05/05/2021 22:46:34 dut.10.240.183.254:
05/05/2021 22:46:34 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:46:34 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:46:34 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:46:34 dut.10.240.183.254:
05/05/2021 22:46:37 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:46:37 dut.10.240.183.254:
05/05/2021 22:46:48 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:46:56 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:46:56 dut.10.240.183.254: set portlist 1
05/05/2021 22:46:56 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:46:56 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:46:56 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:46:56 dut.10.240.183.254: set verbose 1
05/05/2021 22:46:56 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:46:56 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:46:56 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:46:56 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:46:56 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:46:56 dut.10.240.183.254: flow list 0
05/05/2021 22:46:57 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 NVGRE ETH IPV4 TCP => VF
05/05/2021 22:46:57 dut.10.240.183.254: start
05/05/2021 22:46:57 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:47:02 dut.10.240.183.254: stop
05/05/2021 22:47:02 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:47:02 dut.10.240.183.254: start
05/05/2021 22:47:02 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:47:07 dut.10.240.183.254: stop
05/05/2021 22:47:07 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:47:07 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:47:07 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:47:07 dut.10.240.183.254: flow list 0
05/05/2021 22:47:07 dut.10.240.183.254:
05/05/2021 22:47:07 dut.10.240.183.254: start
05/05/2021 22:47:07 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:47:12 dut.10.240.183.254: stop
05/05/2021 22:47:13 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:47:13 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nvgre_mac_ipv4_tcp Result PASSED:
05/05/2021 22:47:13 dut.10.240.183.254: flow flush 0
05/05/2021 22:47:13 dut.10.240.183.254:
05/05/2021 22:47:13 dut.10.240.183.254: clear port stats all
05/05/2021 22:47:13 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:47:13 dut.10.240.183.254: quit
05/05/2021 22:47:14 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:47:14 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:47:19 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nvgre_mac_ipv4_udp_pay Begin
05/05/2021 22:47:19 dut.10.240.183.254:
05/05/2021 22:47:19 tester:
05/05/2021 22:47:19 dut.10.240.183.254: rmmod ice
05/05/2021 22:47:23 dut.10.240.183.254:
05/05/2021 22:47:23 dut.10.240.183.254: modprobe ice
05/05/2021 22:47:26 dut.10.240.183.254:
05/05/2021 22:47:26 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:47:26 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:47:26 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:47:26 dut.10.240.183.254:
05/05/2021 22:47:29 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:47:29 dut.10.240.183.254:
05/05/2021 22:47:40 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:47:48 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:47:48 dut.10.240.183.254: set portlist 1
05/05/2021 22:47:48 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:47:48 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:47:48 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:47:48 dut.10.240.183.254: set verbose 1
05/05/2021 22:47:48 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:47:48 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 0x8 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:47:48 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:47:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 0x8 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:47:48 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:47:48 dut.10.240.183.254: flow list 0
05/05/2021 22:47:49 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 NVGRE ETH IPV4 UDP => VF
05/05/2021 22:47:49 dut.10.240.183.254: start
05/05/2021 22:47:49 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:47:54 dut.10.240.183.254: stop
05/05/2021 22:47:54 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:47:54 dut.10.240.183.254: start
05/05/2021 22:47:54 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:47:59 dut.10.240.183.254: stop
05/05/2021 22:47:59 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:47:59 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:47:59 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:47:59 dut.10.240.183.254: flow list 0
05/05/2021 22:47:59 dut.10.240.183.254:
05/05/2021 22:47:59 dut.10.240.183.254: start
05/05/2021 22:47:59 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:48:04 dut.10.240.183.254: stop
05/05/2021 22:48:05 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:48:05 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_nvgre_mac_ipv4_udp_pay Result PASSED:
05/05/2021 22:48:05 dut.10.240.183.254: flow flush 0
05/05/2021 22:48:05 dut.10.240.183.254:
05/05/2021 22:48:05 dut.10.240.183.254: clear port stats all
05/05/2021 22:48:05 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:48:05 dut.10.240.183.254: quit
05/05/2021 22:48:06 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:48:06 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:48:11 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_pay Begin
05/05/2021 22:48:11 dut.10.240.183.254:
05/05/2021 22:48:11 tester:
05/05/2021 22:48:11 dut.10.240.183.254: rmmod ice
05/05/2021 22:48:15 dut.10.240.183.254:
05/05/2021 22:48:15 dut.10.240.183.254: modprobe ice
05/05/2021 22:48:18 dut.10.240.183.254:
05/05/2021 22:48:18 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:48:18 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:48:18 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:48:18 dut.10.240.183.254:
05/05/2021 22:48:21 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:48:21 dut.10.240.183.254:
05/05/2021 22:48:32 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:48:40 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:48:40 dut.10.240.183.254: set portlist 1
05/05/2021 22:48:40 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:48:40 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:48:40 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:48:40 dut.10.240.183.254: set verbose 1
05/05/2021 22:48:40 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:48:40 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 proto is 6 tos is 4 ttl is 2 / end actions vf id 1 / end
05/05/2021 22:48:40 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:48:40 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 proto is 6 tos is 4 ttl is 2 / end actions vf id 1 / end
05/05/2021 22:48:40 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:48:40 dut.10.240.183.254: flow list 0
05/05/2021 22:48:40 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 => VF
05/05/2021 22:48:40 dut.10.240.183.254: start
05/05/2021 22:48:41 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:48:46 dut.10.240.183.254: stop
05/05/2021 22:48:46 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:48:46 dut.10.240.183.254: start
05/05/2021 22:48:46 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:48:51 dut.10.240.183.254: stop
05/05/2021 22:48:51 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:48:51 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:48:51 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:48:51 dut.10.240.183.254: flow list 0
05/05/2021 22:48:51 dut.10.240.183.254:
05/05/2021 22:48:51 dut.10.240.183.254: start
05/05/2021 22:48:51 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:48:56 dut.10.240.183.254: stop
05/05/2021 22:48:56 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:48:56 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_pay Result PASSED:
05/05/2021 22:48:56 dut.10.240.183.254: flow flush 0
05/05/2021 22:48:57 dut.10.240.183.254:
05/05/2021 22:48:57 dut.10.240.183.254: clear port stats all
05/05/2021 22:48:57 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:48:57 dut.10.240.183.254: quit
05/05/2021 22:48:58 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:48:58 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:49:03 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_pfcp_node Begin
05/05/2021 22:49:03 dut.10.240.183.254:
05/05/2021 22:49:03 tester:
05/05/2021 22:49:03 dut.10.240.183.254: rmmod ice
05/05/2021 22:49:07 dut.10.240.183.254:
05/05/2021 22:49:07 dut.10.240.183.254: modprobe ice
05/05/2021 22:49:10 dut.10.240.183.254:
05/05/2021 22:49:10 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:49:10 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:49:10 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:49:10 dut.10.240.183.254:
05/05/2021 22:49:13 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:49:13 dut.10.240.183.254:
05/05/2021 22:49:24 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:49:41 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:49:41 dut.10.240.183.254: set portlist 1
05/05/2021 22:49:41 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:49:41 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:49:41 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:49:41 dut.10.240.183.254: set verbose 1
05/05/2021 22:49:42 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:49:42 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions vf id 1 / end
05/05/2021 22:49:42 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:49:42 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions vf id 1 / end
05/05/2021 22:49:42 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:49:42 dut.10.240.183.254: flow list 0
05/05/2021 22:49:42 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP PFCP => VF
05/05/2021 22:49:42 dut.10.240.183.254: start
05/05/2021 22:49:42 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:49:47 dut.10.240.183.254: stop
05/05/2021 22:49:47 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:49:47 dut.10.240.183.254: start
05/05/2021 22:49:47 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:49:53 dut.10.240.183.254: stop
05/05/2021 22:49:53 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:49:53 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:49:53 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:49:53 dut.10.240.183.254: flow list 0
05/05/2021 22:49:53 dut.10.240.183.254:
05/05/2021 22:49:53 dut.10.240.183.254: start
05/05/2021 22:49:53 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:49:58 dut.10.240.183.254: stop
05/05/2021 22:49:58 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:49:58 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_pfcp_node Result PASSED:
05/05/2021 22:49:58 dut.10.240.183.254: flow flush 0
05/05/2021 22:49:58 dut.10.240.183.254:
05/05/2021 22:49:58 dut.10.240.183.254: clear port stats all
05/05/2021 22:49:58 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:49:58 dut.10.240.183.254: quit
05/05/2021 22:49:59 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:49:59 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:50:05 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_pfcp_session Begin
05/05/2021 22:50:05 dut.10.240.183.254:
05/05/2021 22:50:05 tester:
05/05/2021 22:50:05 dut.10.240.183.254: rmmod ice
05/05/2021 22:50:08 dut.10.240.183.254:
05/05/2021 22:50:08 dut.10.240.183.254: modprobe ice
05/05/2021 22:50:12 dut.10.240.183.254:
05/05/2021 22:50:12 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:50:12 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:50:12 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:50:12 dut.10.240.183.254:
05/05/2021 22:50:14 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:50:14 dut.10.240.183.254:
05/05/2021 22:50:25 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:50:33 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:50:33 dut.10.240.183.254: set portlist 1
05/05/2021 22:50:33 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:50:33 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:50:34 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:50:34 dut.10.240.183.254: set verbose 1
05/05/2021 22:50:34 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:50:34 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 1 / end actions vf id 1 / end
05/05/2021 22:50:34 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:50:34 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 1 / end actions vf id 1 / end
05/05/2021 22:50:34 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:50:34 dut.10.240.183.254: flow list 0
05/05/2021 22:50:34 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP PFCP => VF
05/05/2021 22:50:34 dut.10.240.183.254: start
05/05/2021 22:50:34 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:50:39 dut.10.240.183.254: stop
05/05/2021 22:50:39 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:50:39 dut.10.240.183.254: start
05/05/2021 22:50:39 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:50:45 dut.10.240.183.254: stop
05/05/2021 22:50:45 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:50:45 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:50:45 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:50:45 dut.10.240.183.254: flow list 0
05/05/2021 22:50:45 dut.10.240.183.254:
05/05/2021 22:50:45 dut.10.240.183.254: start
05/05/2021 22:50:45 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:50:50 dut.10.240.183.254: stop
05/05/2021 22:50:50 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:50:50 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_pfcp_session Result PASSED:
05/05/2021 22:50:50 dut.10.240.183.254: flow flush 0
05/05/2021 22:50:50 dut.10.240.183.254:
05/05/2021 22:50:50 dut.10.240.183.254: clear port stats all
05/05/2021 22:50:50 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:50:50 dut.10.240.183.254: quit
05/05/2021 22:50:51 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:50:51 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:50:57 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_tcp_pay Begin
05/05/2021 22:50:57 dut.10.240.183.254:
05/05/2021 22:50:57 tester:
05/05/2021 22:50:57 dut.10.240.183.254: rmmod ice
05/05/2021 22:51:01 dut.10.240.183.254:
05/05/2021 22:51:01 dut.10.240.183.254: modprobe ice
05/05/2021 22:51:04 dut.10.240.183.254:
05/05/2021 22:51:04 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:51:04 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:51:04 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:51:04 dut.10.240.183.254:
05/05/2021 22:51:06 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:51:07 dut.10.240.183.254:
05/05/2021 22:51:17 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:51:26 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:51:26 dut.10.240.183.254: set portlist 1
05/05/2021 22:51:26 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:51:26 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:51:26 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:51:26 dut.10.240.183.254: set verbose 1
05/05/2021 22:51:26 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:51:26 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:51:26 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:51:26 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:51:26 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:51:26 dut.10.240.183.254: flow list 0
05/05/2021 22:51:26 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 TCP => VF
05/05/2021 22:51:26 dut.10.240.183.254: start
05/05/2021 22:51:26 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:51:31 dut.10.240.183.254: stop
05/05/2021 22:51:31 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:51:31 dut.10.240.183.254: start
05/05/2021 22:51:32 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:51:37 dut.10.240.183.254: stop
05/05/2021 22:51:37 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:51:37 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:51:37 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:51:37 dut.10.240.183.254: flow list 0
05/05/2021 22:51:37 dut.10.240.183.254:
05/05/2021 22:51:37 dut.10.240.183.254: start
05/05/2021 22:51:37 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:51:42 dut.10.240.183.254: stop
05/05/2021 22:51:42 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:51:42 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_tcp_pay Result PASSED:
05/05/2021 22:51:42 dut.10.240.183.254: flow flush 0
05/05/2021 22:51:42 dut.10.240.183.254:
05/05/2021 22:51:42 dut.10.240.183.254: clear port stats all
05/05/2021 22:51:42 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:51:42 dut.10.240.183.254: quit
05/05/2021 22:51:44 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:51:44 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:51:49 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_udp_pay Begin
05/05/2021 22:51:49 dut.10.240.183.254:
05/05/2021 22:51:49 tester:
05/05/2021 22:51:49 dut.10.240.183.254: rmmod ice
05/05/2021 22:51:52 dut.10.240.183.254:
05/05/2021 22:51:52 dut.10.240.183.254: modprobe ice
05/05/2021 22:51:56 dut.10.240.183.254:
05/05/2021 22:51:56 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:51:56 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:51:56 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:51:56 dut.10.240.183.254:
05/05/2021 22:51:58 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:51:58 dut.10.240.183.254:
05/05/2021 22:52:09 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:52:17 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:52:17 dut.10.240.183.254: set portlist 1
05/05/2021 22:52:17 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:52:17 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:52:18 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:52:18 dut.10.240.183.254: set verbose 1
05/05/2021 22:52:18 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:52:18 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:52:18 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:52:18 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:52:18 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:52:18 dut.10.240.183.254: flow list 0
05/05/2021 22:52:18 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP => VF
05/05/2021 22:52:18 dut.10.240.183.254: start
05/05/2021 22:52:18 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:52:23 dut.10.240.183.254: stop
05/05/2021 22:52:23 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:52:23 CVLDCFSwitchFilterTest: Test Case test_mac_ipv4_udp_pay Result ERROR: Traceback (most recent call last):
File "/home/autoregression/dts/dts/framework/test_case.py", line 332, in _execute_test_case
case_obj()
File "tests/TestSuite_cvl_dcf_switch_filter.py", line 1303, in test_mac_ipv4_udp_pay
self._rte_flow_validate_pattern(tv_mac_ipv4_udp_pay)
File "tests/TestSuite_cvl_dcf_switch_filter.py", line 1274, in _rte_flow_validate_pattern
self.send_and_check_packets(matched_dic)
File "tests/TestSuite_cvl_dcf_switch_filter.py", line 1122, in send_and_check_packets
dic["check_func"]["func"](out, dic["check_func"]["param"], dic["expect_results"])
File "tests/rte_flow_common.py", line 235, in check_vf_rx_packets_number
verify(pkt_num == expect_pkts, "failed: packets number not correct. expect %s, result %s" % (expect_pkts, pkt_num))
File "tests/rte_flow_common.py", line 324, in verify
raise AssertionError(description)
AssertionError: failed: packets number not correct. expect 0, result 1
05/05/2021 22:52:23 dut.10.240.183.254: flow flush 0
05/05/2021 22:52:23 dut.10.240.183.254:
05/05/2021 22:52:23 dut.10.240.183.254: clear port stats all
05/05/2021 22:52:24 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:52:24 dut.10.240.183.254: quit
05/05/2021 22:52:25 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:52:25 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:52:30 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_ah Begin
05/05/2021 22:52:30 dut.10.240.183.254:
05/05/2021 22:52:30 tester:
05/05/2021 22:52:30 dut.10.240.183.254: rmmod ice
05/05/2021 22:52:34 dut.10.240.183.254:
05/05/2021 22:52:34 dut.10.240.183.254: modprobe ice
05/05/2021 22:52:37 dut.10.240.183.254:
05/05/2021 22:52:37 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:52:37 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:52:37 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:52:37 dut.10.240.183.254:
05/05/2021 22:52:40 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:52:40 dut.10.240.183.254:
05/05/2021 22:52:51 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:52:59 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:52:59 dut.10.240.183.254: set portlist 1
05/05/2021 22:52:59 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:52:59 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:52:59 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:52:59 dut.10.240.183.254: set verbose 1
05/05/2021 22:52:59 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:52:59 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv6 dst is 1111:2222:3333:4444:5555:6666:7777:8888 / ah spi is 1 / end actions vf id 1 / end
05/05/2021 22:52:59 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:52:59 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv6 dst is 1111:2222:3333:4444:5555:6666:7777:8888 / ah spi is 1 / end actions vf id 1 / end
05/05/2021 22:52:59 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:52:59 dut.10.240.183.254: flow list 0
05/05/2021 22:53:00 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV6 AH => VF
05/05/2021 22:53:00 dut.10.240.183.254: start
05/05/2021 22:53:00 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:53:05 dut.10.240.183.254: stop
05/05/2021 22:53:05 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:53:05 dut.10.240.183.254: start
05/05/2021 22:53:05 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:53:10 dut.10.240.183.254: stop
05/05/2021 22:53:10 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:53:10 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:53:10 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:53:10 dut.10.240.183.254: flow list 0
05/05/2021 22:53:10 dut.10.240.183.254:
05/05/2021 22:53:10 dut.10.240.183.254: start
05/05/2021 22:53:10 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:53:15 dut.10.240.183.254: stop
05/05/2021 22:53:16 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:53:16 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_ah Result PASSED:
05/05/2021 22:53:16 dut.10.240.183.254: flow flush 0
05/05/2021 22:53:16 dut.10.240.183.254:
05/05/2021 22:53:16 dut.10.240.183.254: clear port stats all
05/05/2021 22:53:16 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:53:16 dut.10.240.183.254: quit
05/05/2021 22:53:17 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:53:17 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:53:22 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_dstip_tc Begin
05/05/2021 22:53:22 dut.10.240.183.254:
05/05/2021 22:53:22 tester:
05/05/2021 22:53:22 dut.10.240.183.254: rmmod ice
05/05/2021 22:53:26 dut.10.240.183.254:
05/05/2021 22:53:26 dut.10.240.183.254: modprobe ice
05/05/2021 22:53:29 dut.10.240.183.254:
05/05/2021 22:53:29 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:53:29 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:53:29 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:53:29 dut.10.240.183.254:
05/05/2021 22:53:32 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:53:32 dut.10.240.183.254:
05/05/2021 22:53:43 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:53:51 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:53:51 dut.10.240.183.254: set portlist 1
05/05/2021 22:53:51 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:53:51 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:53:51 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:53:51 dut.10.240.183.254: set verbose 1
05/05/2021 22:53:51 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:53:51 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / end actions vf id 1 / end
05/05/2021 22:53:51 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:53:51 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / end actions vf id 1 / end
05/05/2021 22:53:52 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:53:52 dut.10.240.183.254: flow list 0
05/05/2021 22:53:52 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV6 => VF
05/05/2021 22:53:52 dut.10.240.183.254: start
05/05/2021 22:53:52 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:53:57 dut.10.240.183.254: stop
05/05/2021 22:53:57 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:53:57 dut.10.240.183.254: start
05/05/2021 22:53:57 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:54:02 dut.10.240.183.254: stop
05/05/2021 22:54:02 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:54:02 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:54:02 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:54:02 dut.10.240.183.254: flow list 0
05/05/2021 22:54:02 dut.10.240.183.254:
05/05/2021 22:54:02 dut.10.240.183.254: start
05/05/2021 22:54:02 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:54:08 dut.10.240.183.254: stop
05/05/2021 22:54:08 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:54:08 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_dstip_tc Result PASSED:
05/05/2021 22:54:08 dut.10.240.183.254: flow flush 0
05/05/2021 22:54:08 dut.10.240.183.254:
05/05/2021 22:54:08 dut.10.240.183.254: clear port stats all
05/05/2021 22:54:08 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:54:08 dut.10.240.183.254: quit
05/05/2021 22:54:09 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:54:09 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:54:14 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_esp Begin
05/05/2021 22:54:14 dut.10.240.183.254:
05/05/2021 22:54:15 tester:
05/05/2021 22:54:15 dut.10.240.183.254: rmmod ice
05/05/2021 22:54:18 dut.10.240.183.254:
05/05/2021 22:54:18 dut.10.240.183.254: modprobe ice
05/05/2021 22:54:21 dut.10.240.183.254:
05/05/2021 22:54:21 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:54:21 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:54:21 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:54:21 dut.10.240.183.254:
05/05/2021 22:54:24 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:54:24 dut.10.240.183.254:
05/05/2021 22:54:35 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:54:43 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:54:43 dut.10.240.183.254: set portlist 1
05/05/2021 22:54:43 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:54:43 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:54:44 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:54:44 dut.10.240.183.254: set verbose 1
05/05/2021 22:54:44 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:54:44 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv6 dst is 1111:2222:3333:4444:5555:6666:7777:8888 / esp spi is 1 / end actions vf id 1 / end
05/05/2021 22:54:44 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:54:44 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv6 dst is 1111:2222:3333:4444:5555:6666:7777:8888 / esp spi is 1 / end actions vf id 1 / end
05/05/2021 22:54:44 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:54:44 dut.10.240.183.254: flow list 0
05/05/2021 22:54:44 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV6 ESP => VF
05/05/2021 22:54:44 dut.10.240.183.254: start
05/05/2021 22:54:44 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:54:49 dut.10.240.183.254: stop
05/05/2021 22:54:49 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:54:49 dut.10.240.183.254: start
05/05/2021 22:54:50 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:54:55 dut.10.240.183.254: stop
05/05/2021 22:54:55 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:54:55 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:54:55 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:54:55 dut.10.240.183.254: flow list 0
05/05/2021 22:54:55 dut.10.240.183.254:
05/05/2021 22:54:55 dut.10.240.183.254: start
05/05/2021 22:54:55 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:55:00 dut.10.240.183.254: stop
05/05/2021 22:55:00 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:55:00 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_esp Result PASSED:
05/05/2021 22:55:00 dut.10.240.183.254: flow flush 0
05/05/2021 22:55:00 dut.10.240.183.254:
05/05/2021 22:55:00 dut.10.240.183.254: clear port stats all
05/05/2021 22:55:00 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:55:00 dut.10.240.183.254: quit
05/05/2021 22:55:01 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:55:01 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:55:07 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_l2tpv3 Begin
05/05/2021 22:55:07 dut.10.240.183.254:
05/05/2021 22:55:07 tester:
05/05/2021 22:55:07 dut.10.240.183.254: rmmod ice
05/05/2021 22:55:10 dut.10.240.183.254:
05/05/2021 22:55:10 dut.10.240.183.254: modprobe ice
05/05/2021 22:55:14 dut.10.240.183.254:
05/05/2021 22:55:14 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:55:14 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:55:14 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:55:14 dut.10.240.183.254:
05/05/2021 22:55:16 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:55:16 dut.10.240.183.254:
05/05/2021 22:55:27 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:55:35 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:55:35 dut.10.240.183.254: set portlist 1
05/05/2021 22:55:35 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:55:35 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:55:35 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:55:35 dut.10.240.183.254: set verbose 1
05/05/2021 22:55:36 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:55:36 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv6 dst is 1111:2222:3333:4444:5555:6666:7777:8888 / l2tpv3oip session_id is 1 / end actions vf id 1 / end
05/05/2021 22:55:36 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:55:36 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv6 dst is 1111:2222:3333:4444:5555:6666:7777:8888 / l2tpv3oip session_id is 1 / end actions vf id 1 / end
05/05/2021 22:55:36 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:55:36 dut.10.240.183.254: flow list 0
05/05/2021 22:55:36 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV6 L2TPV3OIP => VF
05/05/2021 22:55:36 dut.10.240.183.254: start
05/05/2021 22:55:36 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:55:41 dut.10.240.183.254: stop
05/05/2021 22:55:41 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:55:41 dut.10.240.183.254: start
05/05/2021 22:55:41 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:55:47 dut.10.240.183.254: stop
05/05/2021 22:55:47 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:55:47 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:55:47 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:55:47 dut.10.240.183.254: flow list 0
05/05/2021 22:55:47 dut.10.240.183.254:
05/05/2021 22:55:47 dut.10.240.183.254: start
05/05/2021 22:55:47 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:55:52 dut.10.240.183.254: stop
05/05/2021 22:55:52 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:55:52 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_l2tpv3 Result PASSED:
05/05/2021 22:55:52 dut.10.240.183.254: flow flush 0
05/05/2021 22:55:52 dut.10.240.183.254:
05/05/2021 22:55:52 dut.10.240.183.254: clear port stats all
05/05/2021 22:55:52 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:55:52 dut.10.240.183.254: quit
05/05/2021 22:55:53 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:55:53 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:55:59 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_nat_t_esp Begin
05/05/2021 22:55:59 dut.10.240.183.254:
05/05/2021 22:55:59 tester:
05/05/2021 22:55:59 dut.10.240.183.254: rmmod ice
05/05/2021 22:56:02 dut.10.240.183.254:
05/05/2021 22:56:02 dut.10.240.183.254: modprobe ice
05/05/2021 22:56:06 dut.10.240.183.254:
05/05/2021 22:56:06 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:56:06 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:56:06 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:56:06 dut.10.240.183.254:
05/05/2021 22:56:08 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:56:08 dut.10.240.183.254:
05/05/2021 22:56:19 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:56:27 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:56:27 dut.10.240.183.254: set portlist 1
05/05/2021 22:56:28 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:56:28 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:56:28 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:56:28 dut.10.240.183.254: set verbose 1
05/05/2021 22:56:28 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:56:28 dut.10.240.183.254: flow validate 0 priority 0 ingress pattern eth / ipv6 dst is 1111:2222:3333:4444:5555:6666:7777:8888 / udp / esp spi is 1 / end actions vf id 1 / end
05/05/2021 22:56:28 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:56:28 dut.10.240.183.254: flow create 0 priority 0 ingress pattern eth / ipv6 dst is 1111:2222:3333:4444:5555:6666:7777:8888 / udp / esp spi is 1 / end actions vf id 1 / end
05/05/2021 22:56:28 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:56:28 dut.10.240.183.254: flow list 0
05/05/2021 22:56:28 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV6 UDP ESP => VF
05/05/2021 22:56:28 dut.10.240.183.254: start
05/05/2021 22:56:28 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:56:33 dut.10.240.183.254: stop
05/05/2021 22:56:33 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:56:33 dut.10.240.183.254: start
05/05/2021 22:56:34 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:56:39 dut.10.240.183.254: stop
05/05/2021 22:56:39 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:56:39 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:56:39 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:56:39 dut.10.240.183.254: flow list 0
05/05/2021 22:56:39 dut.10.240.183.254:
05/05/2021 22:56:39 dut.10.240.183.254: start
05/05/2021 22:56:39 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:56:44 dut.10.240.183.254: stop
05/05/2021 22:56:44 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:56:44 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_nat_t_esp Result PASSED:
05/05/2021 22:56:44 dut.10.240.183.254: flow flush 0
05/05/2021 22:56:44 dut.10.240.183.254:
05/05/2021 22:56:44 dut.10.240.183.254: clear port stats all
05/05/2021 22:56:44 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:56:44 dut.10.240.183.254: quit
05/05/2021 22:56:45 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:56:45 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:56:51 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_pfcp_node Begin
05/05/2021 22:56:51 dut.10.240.183.254:
05/05/2021 22:56:51 tester:
05/05/2021 22:56:51 dut.10.240.183.254: rmmod ice
05/05/2021 22:56:54 dut.10.240.183.254:
05/05/2021 22:56:54 dut.10.240.183.254: modprobe ice
05/05/2021 22:56:58 dut.10.240.183.254:
05/05/2021 22:56:58 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:56:58 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:56:58 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:56:58 dut.10.240.183.254:
05/05/2021 22:57:00 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:57:00 dut.10.240.183.254:
05/05/2021 22:57:11 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:57:19 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:57:19 dut.10.240.183.254: set portlist 1
05/05/2021 22:57:19 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:57:19 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:57:19 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:57:19 dut.10.240.183.254: set verbose 1
05/05/2021 22:57:19 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:57:19 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv6 / udp / pfcp s_field is 0 / end actions vf id 1 / end
05/05/2021 22:57:19 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:57:19 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv6 / udp / pfcp s_field is 0 / end actions vf id 1 / end
05/05/2021 22:57:20 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:57:20 dut.10.240.183.254: flow list 0
05/05/2021 22:57:20 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV6 UDP PFCP => VF
05/05/2021 22:57:20 dut.10.240.183.254: start
05/05/2021 22:57:20 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:57:25 dut.10.240.183.254: stop
05/05/2021 22:57:25 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:57:25 dut.10.240.183.254: start
05/05/2021 22:57:25 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:57:30 dut.10.240.183.254: stop
05/05/2021 22:57:30 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:57:30 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:57:31 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:57:31 dut.10.240.183.254: flow list 0
05/05/2021 22:57:31 dut.10.240.183.254:
05/05/2021 22:57:31 dut.10.240.183.254: start
05/05/2021 22:57:31 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:57:36 dut.10.240.183.254: stop
05/05/2021 22:57:36 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:57:36 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_pfcp_node Result PASSED:
05/05/2021 22:57:36 dut.10.240.183.254: flow flush 0
05/05/2021 22:57:36 dut.10.240.183.254:
05/05/2021 22:57:36 dut.10.240.183.254: clear port stats all
05/05/2021 22:57:36 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:57:36 dut.10.240.183.254: quit
05/05/2021 22:57:37 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:57:37 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:57:43 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_pfcp_session Begin
05/05/2021 22:57:43 dut.10.240.183.254:
05/05/2021 22:57:43 tester:
05/05/2021 22:57:43 dut.10.240.183.254: rmmod ice
05/05/2021 22:57:46 dut.10.240.183.254:
05/05/2021 22:57:46 dut.10.240.183.254: modprobe ice
05/05/2021 22:57:50 dut.10.240.183.254:
05/05/2021 22:57:50 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:57:50 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:57:50 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:57:50 dut.10.240.183.254:
05/05/2021 22:57:52 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:57:52 dut.10.240.183.254:
05/05/2021 22:58:03 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:58:13 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:58:13 dut.10.240.183.254: set portlist 1
05/05/2021 22:58:13 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:58:13 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:58:13 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:58:13 dut.10.240.183.254: set verbose 1
05/05/2021 22:58:13 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:58:13 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv6 / udp / pfcp s_field is 1 / end actions vf id 1 / end
05/05/2021 22:58:13 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:58:13 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv6 / udp / pfcp s_field is 1 / end actions vf id 1 / end
05/05/2021 22:58:14 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:58:14 dut.10.240.183.254: flow list 0
05/05/2021 22:58:14 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV6 UDP PFCP => VF
05/05/2021 22:58:14 dut.10.240.183.254: start
05/05/2021 22:58:14 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:58:19 dut.10.240.183.254: stop
05/05/2021 22:58:19 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 22:58:19 dut.10.240.183.254: start
05/05/2021 22:58:19 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:58:24 dut.10.240.183.254: stop
05/05/2021 22:58:24 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:58:24 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:58:24 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:58:24 dut.10.240.183.254: flow list 0
05/05/2021 22:58:24 dut.10.240.183.254:
05/05/2021 22:58:24 dut.10.240.183.254: start
05/05/2021 22:58:25 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:58:30 dut.10.240.183.254: stop
05/05/2021 22:58:30 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:58:30 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_pfcp_session Result PASSED:
05/05/2021 22:58:30 dut.10.240.183.254: flow flush 0
05/05/2021 22:58:30 dut.10.240.183.254:
05/05/2021 22:58:30 dut.10.240.183.254: clear port stats all
05/05/2021 22:58:30 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:58:30 dut.10.240.183.254: quit
05/05/2021 22:58:31 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:58:31 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:58:36 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_srcip_dstip Begin
05/05/2021 22:58:37 dut.10.240.183.254:
05/05/2021 22:58:37 tester:
05/05/2021 22:58:37 dut.10.240.183.254: rmmod ice
05/05/2021 22:58:40 dut.10.240.183.254:
05/05/2021 22:58:40 dut.10.240.183.254: modprobe ice
05/05/2021 22:58:43 dut.10.240.183.254:
05/05/2021 22:58:43 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:58:43 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:58:43 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:58:44 dut.10.240.183.254:
05/05/2021 22:58:46 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:58:46 dut.10.240.183.254:
05/05/2021 22:58:57 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:59:05 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:59:05 dut.10.240.183.254: set portlist 1
05/05/2021 22:59:05 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:59:05 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:59:05 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:59:05 dut.10.240.183.254: set verbose 1
05/05/2021 22:59:05 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:59:05 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions vf id 1 / end
05/05/2021 22:59:05 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:59:05 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions vf id 1 / end
05/05/2021 22:59:06 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:59:06 dut.10.240.183.254: flow list 0
05/05/2021 22:59:06 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV6 => VF
05/05/2021 22:59:06 dut.10.240.183.254: start
05/05/2021 22:59:06 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:59:11 dut.10.240.183.254: stop
05/05/2021 22:59:11 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 2 RX-dropped: 0 RX-total: 2
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:59:11 dut.10.240.183.254: start
05/05/2021 22:59:11 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:59:16 dut.10.240.183.254: stop
05/05/2021 22:59:16 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:59:16 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 22:59:17 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 22:59:17 dut.10.240.183.254: flow list 0
05/05/2021 22:59:17 dut.10.240.183.254:
05/05/2021 22:59:17 dut.10.240.183.254: start
05/05/2021 22:59:17 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 22:59:22 dut.10.240.183.254: stop
05/05/2021 22:59:22 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 22:59:22 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_srcip_dstip Result PASSED:
05/05/2021 22:59:22 dut.10.240.183.254: flow flush 0
05/05/2021 22:59:22 dut.10.240.183.254:
05/05/2021 22:59:22 dut.10.240.183.254: clear port stats all
05/05/2021 22:59:22 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 22:59:22 dut.10.240.183.254: quit
05/05/2021 22:59:23 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 22:59:23 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 22:59:29 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_tcp Begin
05/05/2021 22:59:29 dut.10.240.183.254:
05/05/2021 22:59:29 tester:
05/05/2021 22:59:29 dut.10.240.183.254: rmmod ice
05/05/2021 22:59:32 dut.10.240.183.254:
05/05/2021 22:59:32 dut.10.240.183.254: modprobe ice
05/05/2021 22:59:36 dut.10.240.183.254:
05/05/2021 22:59:36 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 22:59:36 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 22:59:36 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 22:59:36 dut.10.240.183.254:
05/05/2021 22:59:38 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 22:59:38 dut.10.240.183.254:
05/05/2021 22:59:49 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 22:59:57 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 22:59:57 dut.10.240.183.254: set portlist 1
05/05/2021 22:59:57 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 22:59:57 dut.10.240.183.254: set fwd rxonly
05/05/2021 22:59:57 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 22:59:57 dut.10.240.183.254: set verbose 1
05/05/2021 22:59:57 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 22:59:57 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:59:58 dut.10.240.183.254:
Flow rule validated
05/05/2021 22:59:58 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 22:59:58 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 22:59:58 dut.10.240.183.254: flow list 0
05/05/2021 22:59:58 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV6 TCP => VF
05/05/2021 22:59:58 dut.10.240.183.254: start
05/05/2021 22:59:58 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:00:03 dut.10.240.183.254: stop
05/05/2021 23:00:03 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:00:03 dut.10.240.183.254: start
05/05/2021 23:00:03 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:00:08 dut.10.240.183.254: stop
05/05/2021 23:00:09 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:00:09 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:00:09 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:00:09 dut.10.240.183.254: flow list 0
05/05/2021 23:00:09 dut.10.240.183.254:
05/05/2021 23:00:09 dut.10.240.183.254: start
05/05/2021 23:00:09 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:00:14 dut.10.240.183.254: stop
05/05/2021 23:00:14 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:00:14 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_tcp Result PASSED:
05/05/2021 23:00:14 dut.10.240.183.254: flow flush 0
05/05/2021 23:00:14 dut.10.240.183.254:
05/05/2021 23:00:14 dut.10.240.183.254: clear port stats all
05/05/2021 23:00:14 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 23:00:14 dut.10.240.183.254: quit
05/05/2021 23:00:15 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 23:00:15 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:00:21 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_udp_pay Begin
05/05/2021 23:00:21 dut.10.240.183.254:
05/05/2021 23:00:21 tester:
05/05/2021 23:00:21 dut.10.240.183.254: rmmod ice
05/05/2021 23:00:24 dut.10.240.183.254:
05/05/2021 23:00:24 dut.10.240.183.254: modprobe ice
05/05/2021 23:00:28 dut.10.240.183.254:
05/05/2021 23:00:28 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:00:28 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:00:28 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:00:28 dut.10.240.183.254:
05/05/2021 23:00:30 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:00:30 dut.10.240.183.254:
05/05/2021 23:00:41 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:00:49 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:00:49 dut.10.240.183.254: set portlist 1
05/05/2021 23:00:49 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:00:49 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:00:49 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:00:49 dut.10.240.183.254: set verbose 1
05/05/2021 23:00:50 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:00:50 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:00:50 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:00:50 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:00:50 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:00:50 dut.10.240.183.254: flow list 0
05/05/2021 23:00:50 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV6 UDP => VF
05/05/2021 23:00:50 dut.10.240.183.254: start
05/05/2021 23:00:50 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:00:55 dut.10.240.183.254: stop
05/05/2021 23:00:55 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:00:55 dut.10.240.183.254: start
05/05/2021 23:00:55 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:01:01 dut.10.240.183.254: stop
05/05/2021 23:01:01 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:01:01 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:01:01 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:01:01 dut.10.240.183.254: flow list 0
05/05/2021 23:01:01 dut.10.240.183.254:
05/05/2021 23:01:01 dut.10.240.183.254: start
05/05/2021 23:01:01 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:01:06 dut.10.240.183.254: stop
05/05/2021 23:01:06 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:01:06 CVLDCFSwitchFilterTest: Test Case test_mac_ipv6_udp_pay Result PASSED:
05/05/2021 23:01:06 dut.10.240.183.254: flow flush 0
05/05/2021 23:01:06 dut.10.240.183.254:
05/05/2021 23:01:06 dut.10.240.183.254: clear port stats all
05/05/2021 23:01:06 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 23:01:06 dut.10.240.183.254: quit
05/05/2021 23:01:07 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 23:01:07 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:01:13 CVLDCFSwitchFilterTest: Test Case test_mac_pay Begin
05/05/2021 23:01:13 dut.10.240.183.254:
05/05/2021 23:01:13 tester:
05/05/2021 23:01:13 dut.10.240.183.254: rmmod ice
05/05/2021 23:01:16 dut.10.240.183.254:
05/05/2021 23:01:16 dut.10.240.183.254: modprobe ice
05/05/2021 23:01:20 dut.10.240.183.254:
05/05/2021 23:01:20 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:01:20 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:01:20 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:01:20 dut.10.240.183.254:
05/05/2021 23:01:22 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:01:22 dut.10.240.183.254:
05/05/2021 23:01:33 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:01:51 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:01:51 dut.10.240.183.254: set portlist 1
05/05/2021 23:01:51 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:01:51 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:01:51 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:01:51 dut.10.240.183.254: set verbose 1
05/05/2021 23:01:51 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:01:51 dut.10.240.183.254: flow validate 0 ingress pattern eth src is 00:00:00:00:00:01 dst is 00:11:22:33:44:55 type is 0x0800 / end actions vf id 1 / end
05/05/2021 23:01:51 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:01:51 dut.10.240.183.254: flow create 0 ingress pattern eth src is 00:00:00:00:00:01 dst is 00:11:22:33:44:55 type is 0x0800 / end actions vf id 1 / end
05/05/2021 23:01:53 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:01:53 dut.10.240.183.254: flow list 0
05/05/2021 23:01:53 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH => VF
05/05/2021 23:01:53 dut.10.240.183.254: start
05/05/2021 23:01:53 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:01:58 dut.10.240.183.254: stop
05/05/2021 23:01:58 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:01:58 dut.10.240.183.254: start
05/05/2021 23:01:58 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:02:03 dut.10.240.183.254: stop
05/05/2021 23:02:03 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:02:03 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:02:03 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:02:03 dut.10.240.183.254: flow list 0
05/05/2021 23:02:03 dut.10.240.183.254:
05/05/2021 23:02:03 dut.10.240.183.254: start
05/05/2021 23:02:03 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:02:08 dut.10.240.183.254: stop
05/05/2021 23:02:09 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:02:09 CVLDCFSwitchFilterTest: Test Case test_mac_pay Result PASSED:
05/05/2021 23:02:09 dut.10.240.183.254: flow flush 0
05/05/2021 23:02:09 dut.10.240.183.254:
05/05/2021 23:02:09 dut.10.240.183.254: clear port stats all
05/05/2021 23:02:09 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 23:02:09 dut.10.240.183.254: quit
05/05/2021 23:02:10 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 23:02:10 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:02:15 CVLDCFSwitchFilterTest: Test Case test_mac_vlan_filter Begin
05/05/2021 23:02:15 dut.10.240.183.254:
05/05/2021 23:02:15 tester:
05/05/2021 23:02:15 dut.10.240.183.254: rmmod ice
05/05/2021 23:02:19 dut.10.240.183.254:
05/05/2021 23:02:19 dut.10.240.183.254: modprobe ice
05/05/2021 23:02:22 dut.10.240.183.254:
05/05/2021 23:02:22 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:02:22 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:02:22 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:02:22 dut.10.240.183.254:
05/05/2021 23:02:25 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:02:25 dut.10.240.183.254:
05/05/2021 23:02:36 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:02:44 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:02:44 dut.10.240.183.254: set portlist 1
05/05/2021 23:02:44 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:02:44 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:02:44 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:02:44 dut.10.240.183.254: set verbose 1
05/05/2021 23:02:44 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:02:44 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / end actions vf id 1 / end
05/05/2021 23:02:44 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:02:44 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / end actions vf id 1 / end
05/05/2021 23:02:45 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:02:45 dut.10.240.183.254: flow list 0
05/05/2021 23:02:45 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN => VF
05/05/2021 23:02:45 dut.10.240.183.254: start
05/05/2021 23:02:45 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:02:50 dut.10.240.183.254: stop
05/05/2021 23:02:50 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:02:50 dut.10.240.183.254: start
05/05/2021 23:02:50 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:02:55 dut.10.240.183.254: stop
05/05/2021 23:02:55 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:02:55 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:02:55 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:02:55 dut.10.240.183.254: flow list 0
05/05/2021 23:02:55 dut.10.240.183.254:
05/05/2021 23:02:55 dut.10.240.183.254: start
05/05/2021 23:02:56 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:03:01 dut.10.240.183.254: stop
05/05/2021 23:03:01 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:03:01 CVLDCFSwitchFilterTest: Test Case test_mac_vlan_filter Result PASSED:
05/05/2021 23:03:01 dut.10.240.183.254: flow flush 0
05/05/2021 23:03:01 dut.10.240.183.254:
05/05/2021 23:03:01 dut.10.240.183.254: clear port stats all
05/05/2021 23:03:01 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 23:03:01 dut.10.240.183.254: quit
05/05/2021 23:03:02 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 23:03:02 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:03:07 CVLDCFSwitchFilterTest: Test Case test_max_field_vectors Begin
05/05/2021 23:03:08 dut.10.240.183.254:
05/05/2021 23:03:08 tester:
05/05/2021 23:03:08 dut.10.240.183.254: rmmod ice
05/05/2021 23:03:11 dut.10.240.183.254:
05/05/2021 23:03:11 dut.10.240.183.254: modprobe ice
05/05/2021 23:03:15 dut.10.240.183.254:
05/05/2021 23:03:15 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:03:15 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:03:15 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:03:15 dut.10.240.183.254:
05/05/2021 23:03:17 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:03:17 dut.10.240.183.254:
05/05/2021 23:03:28 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:03:36 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:03:36 dut.10.240.183.254: set portlist 1
05/05/2021 23:03:36 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:03:36 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:03:36 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:03:36 dut.10.240.183.254: set verbose 1
05/05/2021 23:03:36 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:03:36 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 0x8 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp src is 50 dst is 23 / end actions vf id 1 / end
05/05/2021 23:03:37 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:03:37 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.2 / nvgre tni is 0x8 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp src is 50 / end actions vf id 1 / end
05/05/2021 23:03:37 dut.10.240.183.254:
Flow rule #1 created
05/05/2021 23:03:37 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.3 / nvgre tni is 0x8 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp dst is 23 / end actions vf id 1 / end
05/05/2021 23:03:37 dut.10.240.183.254:
Flow rule #2 created
05/05/2021 23:03:37 dut.10.240.183.254: flow list 0
05/05/2021 23:03:37 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 NVGRE ETH IPV4 UDP => VF
1 0 0 i-- ETH IPV4 NVGRE ETH IPV4 UDP => VF
2 0 0 i-- ETH IPV4 NVGRE ETH IPV4 UDP => VF
05/05/2021 23:03:37 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.10 / nvgre tni is 0x8 / eth dst is 68:05:ca:8d:ed:a1 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:03:37 dut.10.240.183.254:
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): switch filter create flow fail: Invalid argument
05/05/2021 23:03:37 dut.10.240.183.254: flow list 0
05/05/2021 23:03:37 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 NVGRE ETH IPV4 UDP => VF
1 0 0 i-- ETH IPV4 NVGRE ETH IPV4 UDP => VF
2 0 0 i-- ETH IPV4 NVGRE ETH IPV4 UDP => VF
05/05/2021 23:03:37 dut.10.240.183.254: start
05/05/2021 23:03:38 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:03:43 dut.10.240.183.254: stop
05/05/2021 23:03:43 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 3 RX-dropped: 0 RX-total: 3
TX-packets: 0 TX-dropped: 0 TX-total: 0
----------------------------------------------------------------------------
+++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
RX-packets: 3 RX-dropped: 0 RX-total: 3
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:03:43 dut.10.240.183.254: start
05/05/2021 23:03:43 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:03:48 dut.10.240.183.254: stop
05/05/2021 23:03:48 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:03:48 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:03:48 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:03:48 dut.10.240.183.254: flow destroy 0 rule 1
05/05/2021 23:03:48 dut.10.240.183.254:
Flow rule #1 destroyed
05/05/2021 23:03:48 dut.10.240.183.254: flow destroy 0 rule 2
05/05/2021 23:03:48 dut.10.240.183.254:
Flow rule #2 destroyed
05/05/2021 23:03:48 dut.10.240.183.254: flow list 0
05/05/2021 23:03:48 dut.10.240.183.254:
05/05/2021 23:03:48 dut.10.240.183.254: start
05/05/2021 23:03:48 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:03:54 dut.10.240.183.254: stop
05/05/2021 23:03:54 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:03:54 CVLDCFSwitchFilterTest: Test Case test_max_field_vectors Result PASSED:
05/05/2021 23:03:54 dut.10.240.183.254: flow flush 0
05/05/2021 23:03:54 dut.10.240.183.254:
05/05/2021 23:03:54 dut.10.240.183.254: clear port stats all
05/05/2021 23:03:54 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 23:03:54 dut.10.240.183.254: quit
05/05/2021 23:03:55 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 23:03:55 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:04:00 CVLDCFSwitchFilterTest: Test Case test_max_vfs Begin
05/05/2021 23:04:00 dut.10.240.183.254:
05/05/2021 23:04:01 tester:
05/05/2021 23:04:01 dut.10.240.183.254: rmmod ice
05/05/2021 23:04:04 dut.10.240.183.254:
05/05/2021 23:04:04 dut.10.240.183.254: modprobe ice
05/05/2021 23:04:07 dut.10.240.183.254:
05/05/2021 23:04:07 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:04:07 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:04:19 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.3/vendor
05/05/2021 23:04:19 dut.10.240.183.254: 0x8086
05/05/2021 23:04:19 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.3/device
05/05/2021 23:04:19 dut.10.240.183.254: 0x1889
05/05/2021 23:04:19 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.3/vendor
05/05/2021 23:04:19 dut.10.240.183.254: 0x8086
05/05/2021 23:04:19 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.3/device
05/05/2021 23:04:20 dut.10.240.183.254: 0x1889
05/05/2021 23:04:20 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.6/vendor
05/05/2021 23:04:20 dut.10.240.183.254: 0x8086
05/05/2021 23:04:20 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.6/device
05/05/2021 23:04:20 dut.10.240.183.254: 0x1889
05/05/2021 23:04:20 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.6/vendor
05/05/2021 23:04:20 dut.10.240.183.254: 0x8086
05/05/2021 23:04:20 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.6/device
05/05/2021 23:04:20 dut.10.240.183.254: 0x1889
05/05/2021 23:04:20 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.1/vendor
05/05/2021 23:04:20 dut.10.240.183.254: 0x8086
05/05/2021 23:04:20 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.1/device
05/05/2021 23:04:20 dut.10.240.183.254: 0x1889
05/05/2021 23:04:20 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.1/vendor
05/05/2021 23:04:20 dut.10.240.183.254: 0x8086
05/05/2021 23:04:20 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.1/device
05/05/2021 23:04:20 dut.10.240.183.254: 0x1889
05/05/2021 23:04:21 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.6/vendor
05/05/2021 23:04:21 dut.10.240.183.254: 0x8086
05/05/2021 23:04:21 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.6/device
05/05/2021 23:04:21 dut.10.240.183.254: 0x1889
05/05/2021 23:04:21 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.6/vendor
05/05/2021 23:04:21 dut.10.240.183.254: 0x8086
05/05/2021 23:04:21 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.6/device
05/05/2021 23:04:21 dut.10.240.183.254: 0x1889
05/05/2021 23:04:21 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.1/vendor
05/05/2021 23:04:21 dut.10.240.183.254: 0x8086
05/05/2021 23:04:21 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.1/device
05/05/2021 23:04:21 dut.10.240.183.254: 0x1889
05/05/2021 23:04:21 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.1/vendor
05/05/2021 23:04:21 dut.10.240.183.254: 0x8086
05/05/2021 23:04:21 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.1/device
05/05/2021 23:04:21 dut.10.240.183.254: 0x1889
05/05/2021 23:04:21 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.4/vendor
05/05/2021 23:04:22 dut.10.240.183.254: 0x8086
05/05/2021 23:04:22 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.4/device
05/05/2021 23:04:22 dut.10.240.183.254: 0x1889
05/05/2021 23:04:22 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.4/vendor
05/05/2021 23:04:22 dut.10.240.183.254: 0x8086
05/05/2021 23:04:22 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.4/device
05/05/2021 23:04:22 dut.10.240.183.254: 0x1889
05/05/2021 23:04:22 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.6/vendor
05/05/2021 23:04:22 dut.10.240.183.254: 0x8086
05/05/2021 23:04:22 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.6/device
05/05/2021 23:04:22 dut.10.240.183.254: 0x1889
05/05/2021 23:04:22 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.6/vendor
05/05/2021 23:04:22 dut.10.240.183.254: 0x8086
05/05/2021 23:04:22 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.6/device
05/05/2021 23:04:22 dut.10.240.183.254: 0x1889
05/05/2021 23:04:22 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.1/vendor
05/05/2021 23:04:22 dut.10.240.183.254: 0x8086
05/05/2021 23:04:22 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.1/device
05/05/2021 23:04:23 dut.10.240.183.254: 0x1889
05/05/2021 23:04:23 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.1/vendor
05/05/2021 23:04:23 dut.10.240.183.254: 0x8086
05/05/2021 23:04:23 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.1/device
05/05/2021 23:04:23 dut.10.240.183.254: 0x1889
05/05/2021 23:04:23 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.4/vendor
05/05/2021 23:04:23 dut.10.240.183.254: 0x8086
05/05/2021 23:04:23 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.4/device
05/05/2021 23:04:23 dut.10.240.183.254: 0x1889
05/05/2021 23:04:23 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.4/vendor
05/05/2021 23:04:23 dut.10.240.183.254: 0x8086
05/05/2021 23:04:23 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.4/device
05/05/2021 23:04:23 dut.10.240.183.254: 0x1889
05/05/2021 23:04:23 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.7/vendor
05/05/2021 23:04:23 dut.10.240.183.254: 0x8086
05/05/2021 23:04:23 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.7/device
05/05/2021 23:04:23 dut.10.240.183.254: 0x1889
05/05/2021 23:04:23 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.7/vendor
05/05/2021 23:04:23 dut.10.240.183.254: 0x8086
05/05/2021 23:04:23 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.7/device
05/05/2021 23:04:24 dut.10.240.183.254: 0x1889
05/05/2021 23:04:24 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.1/vendor
05/05/2021 23:04:24 dut.10.240.183.254: 0x8086
05/05/2021 23:04:24 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.1/device
05/05/2021 23:04:24 dut.10.240.183.254: 0x1889
05/05/2021 23:04:24 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.1/vendor
05/05/2021 23:04:24 dut.10.240.183.254: 0x8086
05/05/2021 23:04:24 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.1/device
05/05/2021 23:04:24 dut.10.240.183.254: 0x1889
05/05/2021 23:04:24 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.4/vendor
05/05/2021 23:04:24 dut.10.240.183.254: 0x8086
05/05/2021 23:04:24 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.4/device
05/05/2021 23:04:24 dut.10.240.183.254: 0x1889
05/05/2021 23:04:24 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.4/vendor
05/05/2021 23:04:24 dut.10.240.183.254: 0x8086
05/05/2021 23:04:24 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.4/device
05/05/2021 23:04:24 dut.10.240.183.254: 0x1889
05/05/2021 23:04:25 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.7/vendor
05/05/2021 23:04:25 dut.10.240.183.254: 0x8086
05/05/2021 23:04:25 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.7/device
05/05/2021 23:04:25 dut.10.240.183.254: 0x1889
05/05/2021 23:04:25 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.7/vendor
05/05/2021 23:04:25 dut.10.240.183.254: 0x8086
05/05/2021 23:04:25 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.7/device
05/05/2021 23:04:25 dut.10.240.183.254: 0x1889
05/05/2021 23:04:25 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.5/vendor
05/05/2021 23:04:25 dut.10.240.183.254: 0x8086
05/05/2021 23:04:25 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.5/device
05/05/2021 23:04:25 dut.10.240.183.254: 0x1889
05/05/2021 23:04:25 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.5/vendor
05/05/2021 23:04:25 dut.10.240.183.254: 0x8086
05/05/2021 23:04:25 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.5/device
05/05/2021 23:04:25 dut.10.240.183.254: 0x1889
05/05/2021 23:04:26 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.4/vendor
05/05/2021 23:04:26 dut.10.240.183.254: 0x8086
05/05/2021 23:04:26 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.4/device
05/05/2021 23:04:26 dut.10.240.183.254: 0x1889
05/05/2021 23:04:26 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.4/vendor
05/05/2021 23:04:26 dut.10.240.183.254: 0x8086
05/05/2021 23:04:26 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.4/device
05/05/2021 23:04:26 dut.10.240.183.254: 0x1889
05/05/2021 23:04:26 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.7/vendor
05/05/2021 23:04:26 dut.10.240.183.254: 0x8086
05/05/2021 23:04:26 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.7/device
05/05/2021 23:04:26 dut.10.240.183.254: 0x1889
05/05/2021 23:04:26 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.7/vendor
05/05/2021 23:04:26 dut.10.240.183.254: 0x8086
05/05/2021 23:04:26 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.7/device
05/05/2021 23:04:26 dut.10.240.183.254: 0x1889
05/05/2021 23:04:26 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.2/vendor
05/05/2021 23:04:26 dut.10.240.183.254: 0x8086
05/05/2021 23:04:26 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.2/device
05/05/2021 23:04:27 dut.10.240.183.254: 0x1889
05/05/2021 23:04:27 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.2/vendor
05/05/2021 23:04:27 dut.10.240.183.254: 0x8086
05/05/2021 23:04:27 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.2/device
05/05/2021 23:04:27 dut.10.240.183.254: 0x1889
05/05/2021 23:04:27 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.4/vendor
05/05/2021 23:04:27 dut.10.240.183.254: 0x8086
05/05/2021 23:04:27 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.4/device
05/05/2021 23:04:27 dut.10.240.183.254: 0x1889
05/05/2021 23:04:27 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.4/vendor
05/05/2021 23:04:27 dut.10.240.183.254: 0x8086
05/05/2021 23:04:27 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.4/device
05/05/2021 23:04:27 dut.10.240.183.254: 0x1889
05/05/2021 23:04:27 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.7/vendor
05/05/2021 23:04:27 dut.10.240.183.254: 0x8086
05/05/2021 23:04:27 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.7/device
05/05/2021 23:04:27 dut.10.240.183.254: 0x1889
05/05/2021 23:04:27 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.7/vendor
05/05/2021 23:04:27 dut.10.240.183.254: 0x8086
05/05/2021 23:04:27 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.7/device
05/05/2021 23:04:28 dut.10.240.183.254: 0x1889
05/05/2021 23:04:28 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.1/vendor
05/05/2021 23:04:28 dut.10.240.183.254: 0x8086
05/05/2021 23:04:28 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.1/device
05/05/2021 23:04:28 dut.10.240.183.254: 0x1889
05/05/2021 23:04:28 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.1/vendor
05/05/2021 23:04:28 dut.10.240.183.254: 0x8086
05/05/2021 23:04:28 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.1/device
05/05/2021 23:04:28 dut.10.240.183.254: 0x1889
05/05/2021 23:04:28 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.4/vendor
05/05/2021 23:04:28 dut.10.240.183.254: 0x8086
05/05/2021 23:04:28 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.4/device
05/05/2021 23:04:28 dut.10.240.183.254: 0x1889
05/05/2021 23:04:28 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.4/vendor
05/05/2021 23:04:28 dut.10.240.183.254: 0x8086
05/05/2021 23:04:28 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.4/device
05/05/2021 23:04:28 dut.10.240.183.254: 0x1889
05/05/2021 23:04:29 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.7/vendor
05/05/2021 23:04:29 dut.10.240.183.254: 0x8086
05/05/2021 23:04:29 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.7/device
05/05/2021 23:04:29 dut.10.240.183.254: 0x1889
05/05/2021 23:04:29 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.7/vendor
05/05/2021 23:04:29 dut.10.240.183.254: 0x8086
05/05/2021 23:04:29 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.7/device
05/05/2021 23:04:29 dut.10.240.183.254: 0x1889
05/05/2021 23:04:29 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.2/vendor
05/05/2021 23:04:29 dut.10.240.183.254: 0x8086
05/05/2021 23:04:29 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.2/device
05/05/2021 23:04:29 dut.10.240.183.254: 0x1889
05/05/2021 23:04:29 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.2/vendor
05/05/2021 23:04:29 dut.10.240.183.254: 0x8086
05/05/2021 23:04:29 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.2/device
05/05/2021 23:04:29 dut.10.240.183.254: 0x1889
05/05/2021 23:04:30 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.4/vendor
05/05/2021 23:04:30 dut.10.240.183.254: 0x8086
05/05/2021 23:04:30 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.4/device
05/05/2021 23:04:30 dut.10.240.183.254: 0x1889
05/05/2021 23:04:30 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.4/vendor
05/05/2021 23:04:30 dut.10.240.183.254: 0x8086
05/05/2021 23:04:30 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.4/device
05/05/2021 23:04:30 dut.10.240.183.254: 0x1889
05/05/2021 23:04:30 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.7/vendor
05/05/2021 23:04:30 dut.10.240.183.254: 0x8086
05/05/2021 23:04:30 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.7/device
05/05/2021 23:04:30 dut.10.240.183.254: 0x1889
05/05/2021 23:04:30 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.7/vendor
05/05/2021 23:04:30 dut.10.240.183.254: 0x8086
05/05/2021 23:04:30 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.7/device
05/05/2021 23:04:30 dut.10.240.183.254: 0x1889
05/05/2021 23:04:30 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.2/vendor
05/05/2021 23:04:31 dut.10.240.183.254: 0x8086
05/05/2021 23:04:31 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.2/device
05/05/2021 23:04:31 dut.10.240.183.254: 0x1889
05/05/2021 23:04:31 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.2/vendor
05/05/2021 23:04:31 dut.10.240.183.254: 0x8086
05/05/2021 23:04:31 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.2/device
05/05/2021 23:04:31 dut.10.240.183.254: 0x1889
05/05/2021 23:04:31 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.5/vendor
05/05/2021 23:04:31 dut.10.240.183.254: 0x8086
05/05/2021 23:04:31 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.5/device
05/05/2021 23:04:31 dut.10.240.183.254: 0x1889
05/05/2021 23:04:31 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.5/vendor
05/05/2021 23:04:31 dut.10.240.183.254: 0x8086
05/05/2021 23:04:31 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.5/device
05/05/2021 23:04:31 dut.10.240.183.254: 0x1889
05/05/2021 23:04:31 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.7/vendor
05/05/2021 23:04:31 dut.10.240.183.254: 0x8086
05/05/2021 23:04:31 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.7/device
05/05/2021 23:04:31 dut.10.240.183.254: 0x1889
05/05/2021 23:04:31 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.7/vendor
05/05/2021 23:04:32 dut.10.240.183.254: 0x8086
05/05/2021 23:04:32 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.7/device
05/05/2021 23:04:32 dut.10.240.183.254: 0x1889
05/05/2021 23:04:32 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.2/vendor
05/05/2021 23:04:32 dut.10.240.183.254: 0x8086
05/05/2021 23:04:32 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.2/device
05/05/2021 23:04:32 dut.10.240.183.254: 0x1889
05/05/2021 23:04:32 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.2/vendor
05/05/2021 23:04:32 dut.10.240.183.254: 0x8086
05/05/2021 23:04:32 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.2/device
05/05/2021 23:04:32 dut.10.240.183.254: 0x1889
05/05/2021 23:04:32 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.5/vendor
05/05/2021 23:04:32 dut.10.240.183.254: 0x8086
05/05/2021 23:04:32 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.5/device
05/05/2021 23:04:32 dut.10.240.183.254: 0x1889
05/05/2021 23:04:32 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.5/vendor
05/05/2021 23:04:32 dut.10.240.183.254: 0x8086
05/05/2021 23:04:32 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.5/device
05/05/2021 23:04:32 dut.10.240.183.254: 0x1889
05/05/2021 23:04:33 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.4/vendor
05/05/2021 23:04:33 dut.10.240.183.254: 0x8086
05/05/2021 23:04:33 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.4/device
05/05/2021 23:04:33 dut.10.240.183.254: 0x1889
05/05/2021 23:04:33 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.4/vendor
05/05/2021 23:04:33 dut.10.240.183.254: 0x8086
05/05/2021 23:04:33 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.4/device
05/05/2021 23:04:33 dut.10.240.183.254: 0x1889
05/05/2021 23:04:33 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.2/vendor
05/05/2021 23:04:33 dut.10.240.183.254: 0x8086
05/05/2021 23:04:33 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.2/device
05/05/2021 23:04:33 dut.10.240.183.254: 0x1889
05/05/2021 23:04:33 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.2/vendor
05/05/2021 23:04:33 dut.10.240.183.254: 0x8086
05/05/2021 23:04:33 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.2/device
05/05/2021 23:04:33 dut.10.240.183.254: 0x1889
05/05/2021 23:04:34 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.5/vendor
05/05/2021 23:04:34 dut.10.240.183.254: 0x8086
05/05/2021 23:04:34 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.5/device
05/05/2021 23:04:34 dut.10.240.183.254: 0x1889
05/05/2021 23:04:34 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.5/vendor
05/05/2021 23:04:34 dut.10.240.183.254: 0x8086
05/05/2021 23:04:34 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.5/device
05/05/2021 23:04:34 dut.10.240.183.254: 0x1889
05/05/2021 23:04:34 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.0/vendor
05/05/2021 23:04:34 dut.10.240.183.254: 0x8086
05/05/2021 23:04:34 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.0/device
05/05/2021 23:04:34 dut.10.240.183.254: 0x1889
05/05/2021 23:04:34 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.0/vendor
05/05/2021 23:04:34 dut.10.240.183.254: 0x8086
05/05/2021 23:04:34 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.0/device
05/05/2021 23:04:34 dut.10.240.183.254: 0x1889
05/05/2021 23:04:34 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.2/vendor
05/05/2021 23:04:35 dut.10.240.183.254: 0x8086
05/05/2021 23:04:35 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.2/device
05/05/2021 23:04:35 dut.10.240.183.254: 0x1889
05/05/2021 23:04:35 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.2/vendor
05/05/2021 23:04:35 dut.10.240.183.254: 0x8086
05/05/2021 23:04:35 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.2/device
05/05/2021 23:04:35 dut.10.240.183.254: 0x1889
05/05/2021 23:04:35 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.5/vendor
05/05/2021 23:04:35 dut.10.240.183.254: 0x8086
05/05/2021 23:04:35 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.5/device
05/05/2021 23:04:35 dut.10.240.183.254: 0x1889
05/05/2021 23:04:35 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.5/vendor
05/05/2021 23:04:35 dut.10.240.183.254: 0x8086
05/05/2021 23:04:35 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.5/device
05/05/2021 23:04:35 dut.10.240.183.254: 0x1889
05/05/2021 23:04:35 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.0/vendor
05/05/2021 23:04:35 dut.10.240.183.254: 0x8086
05/05/2021 23:04:35 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.0/device
05/05/2021 23:04:35 dut.10.240.183.254: 0x1889
05/05/2021 23:04:35 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.0/vendor
05/05/2021 23:04:36 dut.10.240.183.254: 0x8086
05/05/2021 23:04:36 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.0/device
05/05/2021 23:04:36 dut.10.240.183.254: 0x1889
05/05/2021 23:04:36 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.3/vendor
05/05/2021 23:04:36 dut.10.240.183.254: 0x8086
05/05/2021 23:04:36 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.3/device
05/05/2021 23:04:36 dut.10.240.183.254: 0x1889
05/05/2021 23:04:36 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.3/vendor
05/05/2021 23:04:36 dut.10.240.183.254: 0x8086
05/05/2021 23:04:36 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.3/device
05/05/2021 23:04:36 dut.10.240.183.254: 0x1889
05/05/2021 23:04:36 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.5/vendor
05/05/2021 23:04:36 dut.10.240.183.254: 0x8086
05/05/2021 23:04:36 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.5/device
05/05/2021 23:04:36 dut.10.240.183.254: 0x1889
05/05/2021 23:04:36 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.5/vendor
05/05/2021 23:04:36 dut.10.240.183.254: 0x8086
05/05/2021 23:04:36 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.5/device
05/05/2021 23:04:37 dut.10.240.183.254: 0x1889
05/05/2021 23:04:37 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.7/vendor
05/05/2021 23:04:37 dut.10.240.183.254: 0x8086
05/05/2021 23:04:37 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.7/device
05/05/2021 23:04:37 dut.10.240.183.254: 0x1889
05/05/2021 23:04:37 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.7/vendor
05/05/2021 23:04:37 dut.10.240.183.254: 0x8086
05/05/2021 23:04:37 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.7/device
05/05/2021 23:04:37 dut.10.240.183.254: 0x1889
05/05/2021 23:04:37 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.2/vendor
05/05/2021 23:04:37 dut.10.240.183.254: 0x8086
05/05/2021 23:04:37 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.2/device
05/05/2021 23:04:37 dut.10.240.183.254: 0x1889
05/05/2021 23:04:37 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.2/vendor
05/05/2021 23:04:37 dut.10.240.183.254: 0x8086
05/05/2021 23:04:37 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.2/device
05/05/2021 23:04:37 dut.10.240.183.254: 0x1889
05/05/2021 23:04:38 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.5/vendor
05/05/2021 23:04:38 dut.10.240.183.254: 0x8086
05/05/2021 23:04:38 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.5/device
05/05/2021 23:04:38 dut.10.240.183.254: 0x1889
05/05/2021 23:04:38 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.5/vendor
05/05/2021 23:04:38 dut.10.240.183.254: 0x8086
05/05/2021 23:04:38 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.5/device
05/05/2021 23:04:38 dut.10.240.183.254: 0x1889
05/05/2021 23:04:38 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.0/vendor
05/05/2021 23:04:38 dut.10.240.183.254: 0x8086
05/05/2021 23:04:38 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.0/device
05/05/2021 23:04:38 dut.10.240.183.254: 0x1889
05/05/2021 23:04:38 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.0/vendor
05/05/2021 23:04:38 dut.10.240.183.254: 0x8086
05/05/2021 23:04:38 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.0/device
05/05/2021 23:04:38 dut.10.240.183.254: 0x1889
05/05/2021 23:04:39 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.3/vendor
05/05/2021 23:04:39 dut.10.240.183.254: 0x8086
05/05/2021 23:04:39 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.3/device
05/05/2021 23:04:39 dut.10.240.183.254: 0x1889
05/05/2021 23:04:39 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.3/vendor
05/05/2021 23:04:39 dut.10.240.183.254: 0x8086
05/05/2021 23:04:39 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.3/device
05/05/2021 23:04:39 dut.10.240.183.254: 0x1889
05/05/2021 23:04:39 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.5/vendor
05/05/2021 23:04:39 dut.10.240.183.254: 0x8086
05/05/2021 23:04:39 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.5/device
05/05/2021 23:04:39 dut.10.240.183.254: 0x1889
05/05/2021 23:04:39 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.5/vendor
05/05/2021 23:04:39 dut.10.240.183.254: 0x8086
05/05/2021 23:04:39 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:03.5/device
05/05/2021 23:04:39 dut.10.240.183.254: 0x1889
05/05/2021 23:04:39 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.0/vendor
05/05/2021 23:04:39 dut.10.240.183.254: 0x8086
05/05/2021 23:04:39 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.0/device
05/05/2021 23:04:40 dut.10.240.183.254: 0x1889
05/05/2021 23:04:40 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.0/vendor
05/05/2021 23:04:40 dut.10.240.183.254: 0x8086
05/05/2021 23:04:40 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.0/device
05/05/2021 23:04:40 dut.10.240.183.254: 0x1889
05/05/2021 23:04:40 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.3/vendor
05/05/2021 23:04:40 dut.10.240.183.254: 0x8086
05/05/2021 23:04:40 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.3/device
05/05/2021 23:04:40 dut.10.240.183.254: 0x1889
05/05/2021 23:04:40 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.3/vendor
05/05/2021 23:04:40 dut.10.240.183.254: 0x8086
05/05/2021 23:04:40 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:04.3/device
05/05/2021 23:04:40 dut.10.240.183.254: 0x1889
05/05/2021 23:04:40 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.0/vendor
05/05/2021 23:04:40 dut.10.240.183.254: 0x8086
05/05/2021 23:04:40 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.0/device
05/05/2021 23:04:40 dut.10.240.183.254: 0x1889
05/05/2021 23:04:40 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.0/vendor
05/05/2021 23:04:40 dut.10.240.183.254: 0x8086
05/05/2021 23:04:40 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.0/device
05/05/2021 23:04:41 dut.10.240.183.254: 0x1889
05/05/2021 23:04:41 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.3/vendor
05/05/2021 23:04:41 dut.10.240.183.254: 0x8086
05/05/2021 23:04:41 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.3/device
05/05/2021 23:04:41 dut.10.240.183.254: 0x1889
05/05/2021 23:04:41 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.3/vendor
05/05/2021 23:04:41 dut.10.240.183.254: 0x8086
05/05/2021 23:04:41 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.3/device
05/05/2021 23:04:41 dut.10.240.183.254: 0x1889
05/05/2021 23:04:41 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.6/vendor
05/05/2021 23:04:41 dut.10.240.183.254: 0x8086
05/05/2021 23:04:41 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.6/device
05/05/2021 23:04:41 dut.10.240.183.254: 0x1889
05/05/2021 23:04:41 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.6/vendor
05/05/2021 23:04:41 dut.10.240.183.254: 0x8086
05/05/2021 23:04:41 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:05.6/device
05/05/2021 23:04:41 dut.10.240.183.254: 0x1889
05/05/2021 23:04:42 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.0/vendor
05/05/2021 23:04:42 dut.10.240.183.254: 0x8086
05/05/2021 23:04:42 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.0/device
05/05/2021 23:04:42 dut.10.240.183.254: 0x1889
05/05/2021 23:04:42 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.0/vendor
05/05/2021 23:04:42 dut.10.240.183.254: 0x8086
05/05/2021 23:04:42 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.0/device
05/05/2021 23:04:42 dut.10.240.183.254: 0x1889
05/05/2021 23:04:42 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.3/vendor
05/05/2021 23:04:42 dut.10.240.183.254: 0x8086
05/05/2021 23:04:42 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.3/device
05/05/2021 23:04:42 dut.10.240.183.254: 0x1889
05/05/2021 23:04:42 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.3/vendor
05/05/2021 23:04:42 dut.10.240.183.254: 0x8086
05/05/2021 23:04:42 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.3/device
05/05/2021 23:04:42 dut.10.240.183.254: 0x1889
05/05/2021 23:04:43 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.6/vendor
05/05/2021 23:04:43 dut.10.240.183.254: 0x8086
05/05/2021 23:04:43 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.6/device
05/05/2021 23:04:43 dut.10.240.183.254: 0x1889
05/05/2021 23:04:43 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.6/vendor
05/05/2021 23:04:43 dut.10.240.183.254: 0x8086
05/05/2021 23:04:43 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:06.6/device
05/05/2021 23:04:43 dut.10.240.183.254: 0x1889
05/05/2021 23:04:43 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.1/vendor
05/05/2021 23:04:43 dut.10.240.183.254: 0x8086
05/05/2021 23:04:43 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.1/device
05/05/2021 23:04:43 dut.10.240.183.254: 0x1889
05/05/2021 23:04:43 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.1/vendor
05/05/2021 23:04:43 dut.10.240.183.254: 0x8086
05/05/2021 23:04:43 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.1/device
05/05/2021 23:04:43 dut.10.240.183.254: 0x1889
05/05/2021 23:04:43 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.3/vendor
05/05/2021 23:04:43 dut.10.240.183.254: 0x8086
05/05/2021 23:04:43 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.3/device
05/05/2021 23:04:44 dut.10.240.183.254: 0x1889
05/05/2021 23:04:44 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.3/vendor
05/05/2021 23:04:44 dut.10.240.183.254: 0x8086
05/05/2021 23:04:44 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.3/device
05/05/2021 23:04:44 dut.10.240.183.254: 0x1889
05/05/2021 23:04:44 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.6/vendor
05/05/2021 23:04:44 dut.10.240.183.254: 0x8086
05/05/2021 23:04:44 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.6/device
05/05/2021 23:04:44 dut.10.240.183.254: 0x1889
05/05/2021 23:04:44 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.6/vendor
05/05/2021 23:04:44 dut.10.240.183.254: 0x8086
05/05/2021 23:04:44 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:07.6/device
05/05/2021 23:04:44 dut.10.240.183.254: 0x1889
05/05/2021 23:04:44 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.1/vendor
05/05/2021 23:04:44 dut.10.240.183.254: 0x8086
05/05/2021 23:04:44 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.1/device
05/05/2021 23:04:44 dut.10.240.183.254: 0x1889
05/05/2021 23:04:44 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.1/vendor
05/05/2021 23:04:45 dut.10.240.183.254: 0x8086
05/05/2021 23:04:45 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.1/device
05/05/2021 23:04:45 dut.10.240.183.254: 0x1889
05/05/2021 23:04:45 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.6/vendor
05/05/2021 23:04:45 dut.10.240.183.254: 0x8086
05/05/2021 23:04:45 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.6/device
05/05/2021 23:04:45 dut.10.240.183.254: 0x1889
05/05/2021 23:04:45 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.6/vendor
05/05/2021 23:04:45 dut.10.240.183.254: 0x8086
05/05/2021 23:04:45 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:01.6/device
05/05/2021 23:04:45 dut.10.240.183.254: 0x1889
05/05/2021 23:04:45 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.6/vendor
05/05/2021 23:04:45 dut.10.240.183.254: 0x8086
05/05/2021 23:04:45 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.6/device
05/05/2021 23:04:45 dut.10.240.183.254: 0x1889
05/05/2021 23:04:45 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.6/vendor
05/05/2021 23:04:45 dut.10.240.183.254: 0x8086
05/05/2021 23:04:45 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:08.6/device
05/05/2021 23:04:45 dut.10.240.183.254: 0x1889
05/05/2021 23:04:46 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.0/vendor
05/05/2021 23:04:46 dut.10.240.183.254: 0x8086
05/05/2021 23:04:46 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.0/device
05/05/2021 23:04:46 dut.10.240.183.254: 0x1889
05/05/2021 23:04:46 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.0/vendor
05/05/2021 23:04:46 dut.10.240.183.254: 0x8086
05/05/2021 23:04:46 dut.10.240.183.254: cat /sys/bus/pci/devices/0000\:03\:02.0/device
05/05/2021 23:04:46 dut.10.240.183.254: 0x1889
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v0 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v1 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v2 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v3 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v4 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v5 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v6 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v7 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v8 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v9 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v10 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v11 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v12 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v13 up
05/05/2021 23:06:22 dut.10.240.183.254:
05/05/2021 23:06:22 dut.10.240.183.254: ifconfig ens865f0v14 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v15 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v16 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v17 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v18 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v19 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v20 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v21 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v22 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v23 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v24 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v25 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v26 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v27 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v28 up
05/05/2021 23:06:23 dut.10.240.183.254:
05/05/2021 23:06:23 dut.10.240.183.254: ifconfig ens865f0v29 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v30 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v31 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v32 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v33 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v34 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v35 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v36 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v37 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v38 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v39 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v40 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v41 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v42 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v43 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v44 up
05/05/2021 23:06:24 dut.10.240.183.254:
05/05/2021 23:06:24 dut.10.240.183.254: ifconfig ens865f0v45 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v46 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v47 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v48 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v49 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v50 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v51 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v52 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v53 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v54 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v55 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v56 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v57 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v58 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v59 up
05/05/2021 23:06:25 dut.10.240.183.254:
05/05/2021 23:06:25 dut.10.240.183.254: ifconfig ens865f0v60 up
05/05/2021 23:06:26 dut.10.240.183.254:
05/05/2021 23:06:26 dut.10.240.183.254: ifconfig ens865f0v61 up
05/05/2021 23:06:26 dut.10.240.183.254:
05/05/2021 23:06:26 dut.10.240.183.254: ifconfig ens865f0v62 up
05/05/2021 23:06:26 dut.10.240.183.254:
05/05/2021 23:06:26 dut.10.240.183.254: ifconfig ens865f0v63 up
05/05/2021 23:06:26 dut.10.240.183.254:
05/05/2021 23:06:26 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:06:26 dut.10.240.183.254:
05/05/2021 23:06:26 dut.10.240.183.254: ./usertools/dpdk-devbind.py -b vfio-pci 0000:03:01.0
05/05/2021 23:06:26 dut.10.240.183.254:
05/05/2021 23:06:31 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:06:45 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Checking link statuses...
Done
05/05/2021 23:06:45 dut.10.240.183.254: show port info all
05/05/2021 23:06:45 dut.10.240.183.254:
********************* Infos for port 0 *********************
MAC address: 92:7A:16:87:76:A7
Device name: 0000:03:01.0
Driver name: net_ice_dcf
Firmware-version: not available
Devargs: cap=dcf
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: None
Link duplex: half-duplex
Autoneg status: Off
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 1
Maximum number of MAC addresses of hash filtering: 0
VLAN offload:
strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
ipv4
ipv4-frag
ipv4-tcp
ipv4-udp
ipv4-sctp
ipv4-other
ipv6
ipv6-frag
ipv6-tcp
ipv6-udp
ipv6-sctp
ipv6-other
l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 1
Max possible RX queues: 4
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 4
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
05/05/2021 23:06:45 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.1 / tcp / end actions vf id 1 / end
05/05/2021 23:06:45 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:06:45 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.2 / tcp / end actions vf id 2 / end
05/05/2021 23:06:45 dut.10.240.183.254:
Flow rule #1 created
05/05/2021 23:06:45 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.3 / tcp / end actions vf id 3 / end
05/05/2021 23:06:45 dut.10.240.183.254:
Flow rule #2 created
05/05/2021 23:06:45 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.4 / tcp / end actions vf id 4 / end
05/05/2021 23:06:45 dut.10.240.183.254:
Flow rule #3 created
05/05/2021 23:06:45 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.5 / tcp / end actions vf id 5 / end
05/05/2021 23:06:45 dut.10.240.183.254:
Flow rule #4 created
05/05/2021 23:06:45 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.6 / tcp / end actions vf id 6 / end
05/05/2021 23:06:45 dut.10.240.183.254:
Flow rule #5 created
05/05/2021 23:06:45 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.7 / tcp / end actions vf id 7 / end
05/05/2021 23:06:45 dut.10.240.183.254:
Flow rule #6 created
05/05/2021 23:06:45 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.8 / tcp / end actions vf id 8 / end
05/05/2021 23:06:45 dut.10.240.183.254:
Flow rule #7 created
05/05/2021 23:06:45 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.9 / tcp / end actions vf id 9 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #8 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.10 / tcp / end actions vf id 10 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #9 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.11 / tcp / end actions vf id 11 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #10 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.12 / tcp / end actions vf id 12 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #11 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.13 / tcp / end actions vf id 13 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #12 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.14 / tcp / end actions vf id 14 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #13 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.15 / tcp / end actions vf id 15 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #14 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.16 / tcp / end actions vf id 16 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #15 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.17 / tcp / end actions vf id 17 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #16 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.18 / tcp / end actions vf id 18 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #17 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.19 / tcp / end actions vf id 19 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #18 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.20 / tcp / end actions vf id 20 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #19 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.21 / tcp / end actions vf id 21 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #20 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.22 / tcp / end actions vf id 22 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #21 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.23 / tcp / end actions vf id 23 / end
05/05/2021 23:06:46 dut.10.240.183.254:
Flow rule #22 created
05/05/2021 23:06:46 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.24 / tcp / end actions vf id 24 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #23 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.25 / tcp / end actions vf id 25 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #24 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.26 / tcp / end actions vf id 26 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #25 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.27 / tcp / end actions vf id 27 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #26 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.28 / tcp / end actions vf id 28 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #27 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.29 / tcp / end actions vf id 29 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #28 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.30 / tcp / end actions vf id 30 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #29 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.31 / tcp / end actions vf id 31 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #30 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.32 / tcp / end actions vf id 32 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #31 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.33 / tcp / end actions vf id 33 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #32 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.34 / tcp / end actions vf id 34 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #33 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.35 / tcp / end actions vf id 35 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #34 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.36 / tcp / end actions vf id 36 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #35 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.37 / tcp / end actions vf id 37 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #36 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.38 / tcp / end actions vf id 38 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #37 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.39 / tcp / end actions vf id 39 / end
05/05/2021 23:06:47 dut.10.240.183.254:
Flow rule #38 created
05/05/2021 23:06:47 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.40 / tcp / end actions vf id 40 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #39 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.41 / tcp / end actions vf id 41 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #40 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.42 / tcp / end actions vf id 42 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #41 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.43 / tcp / end actions vf id 43 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #42 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.44 / tcp / end actions vf id 44 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #43 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.45 / tcp / end actions vf id 45 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #44 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.46 / tcp / end actions vf id 46 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #45 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.47 / tcp / end actions vf id 47 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #46 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.48 / tcp / end actions vf id 48 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #47 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.49 / tcp / end actions vf id 49 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #48 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.50 / tcp / end actions vf id 50 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #49 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.51 / tcp / end actions vf id 51 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #50 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.52 / tcp / end actions vf id 52 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #51 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.53 / tcp / end actions vf id 53 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #52 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.54 / tcp / end actions vf id 54 / end
05/05/2021 23:06:48 dut.10.240.183.254:
Flow rule #53 created
05/05/2021 23:06:48 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.55 / tcp / end actions vf id 55 / end
05/05/2021 23:06:49 dut.10.240.183.254:
Flow rule #54 created
05/05/2021 23:06:49 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.56 / tcp / end actions vf id 56 / end
05/05/2021 23:06:49 dut.10.240.183.254:
Flow rule #55 created
05/05/2021 23:06:49 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.57 / tcp / end actions vf id 57 / end
05/05/2021 23:06:49 dut.10.240.183.254:
Flow rule #56 created
05/05/2021 23:06:49 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.58 / tcp / end actions vf id 58 / end
05/05/2021 23:06:49 dut.10.240.183.254:
Flow rule #57 created
05/05/2021 23:06:49 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.59 / tcp / end actions vf id 59 / end
05/05/2021 23:06:49 dut.10.240.183.254:
Flow rule #58 created
05/05/2021 23:06:49 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.60 / tcp / end actions vf id 60 / end
05/05/2021 23:06:49 dut.10.240.183.254:
Flow rule #59 created
05/05/2021 23:06:49 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.61 / tcp / end actions vf id 61 / end
05/05/2021 23:06:49 dut.10.240.183.254:
Flow rule #60 created
05/05/2021 23:06:49 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.62 / tcp / end actions vf id 62 / end
05/05/2021 23:06:49 dut.10.240.183.254:
Flow rule #61 created
05/05/2021 23:06:49 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.63 / tcp / end actions vf id 63 / end
05/05/2021 23:06:49 dut.10.240.183.254:
Flow rule #62 created
05/05/2021 23:06:49 dut.10.240.183.254: flow list 0
05/05/2021 23:06:49 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 TCP => VF
1 0 0 i-- ETH IPV4 TCP => VF
2 0 0 i-- ETH IPV4 TCP => VF
3 0 0 i-- ETH IPV4 TCP => VF
4 0 0 i-- ETH IPV4 TCP => VF
5 0 0 i-- ETH IPV4 TCP => VF
6 0 0 i-- ETH IPV4 TCP => VF
7 0 0 i-- ETH IPV4 TCP => VF
8 0 0 i-- ETH IPV4 TCP => VF
9 0 0 i-- ETH IPV4 TCP => VF
10 0 0 i-- ETH IPV4 TCP => VF
11 0 0 i-- ETH IPV4 TCP => VF
12 0 0 i-- ETH IPV4 TCP => VF
13 0 0 i-- ETH IPV4 TCP => VF
14 0 0 i-- ETH IPV4 TCP => VF
15 0 0 i-- ETH IPV4 TCP => VF
16 0 0 i-- ETH IPV4 TCP => VF
17 0 0 i-- ETH IPV4 TCP => VF
18 0 0 i-- ETH IPV4 TCP => VF
19 0 0 i-- ETH IPV4 TCP => VF
20 0 0 i-- ETH IPV4 TCP => VF
21 0 0 i-- ETH IPV4 TCP => VF
22 0 0 i-- ETH IPV4 TCP => VF
23 0 0 i-- ETH IPV4 TCP => VF
24 0 0 i-- ETH IPV4 TCP => VF
25 0 0 i-- ETH IPV4 TCP => VF
26 0 0 i-- ETH IPV4 TCP => VF
27 0 0 i-- ETH IPV4 TCP => VF
28 0 0 i-- ETH IPV4 TCP => VF
29 0 0 i-- ETH IPV4 TCP => VF
30 0 0 i-- ETH IPV4 TCP => VF
31 0 0 i-- ETH IPV4 TCP => VF
32 0 0 i-- ETH IPV4 TCP => VF
33 0 0 i-- ETH IPV4 TCP => VF
34 0 0 i-- ETH IPV4 TCP => VF
35 0 0 i-- ETH IPV4 TCP => VF
36 0 0 i-- ETH IPV4 TCP => VF
37 0 0 i-- ETH IPV4 TCP => VF
38 0 0 i-- ETH IPV4 TCP => VF
39 0 0 i-- ETH IPV4 TCP => VF
40 0 0 i-- ETH IPV4 TCP => VF
41 0 0 i-- ETH IPV4 TCP => VF
42 0 0 i-- ETH IPV4 TCP => VF
43 0 0 i-- ETH IPV4 TCP => VF
44 0 0 i-- ETH IPV4 TCP => VF
45 0 0 i-- ETH IPV4 TCP => VF
46 0 0 i-- ETH IPV4 TCP => VF
47 0 0 i-- ETH IPV4 TCP => VF
48 0 0 i-- ETH IPV4 TCP => VF
49 0 0 i-- ETH IPV4 TCP => VF
50 0 0 i-- ETH IPV4 TCP => VF
51 0 0 i-- ETH IPV4 TCP => VF
52 0 0 i-- ETH IPV4 TCP => VF
53 0 0 i-- ETH IPV4 TCP => VF
54 0 0 i-- ETH IPV4 TCP => VF
55 0 0 i-- ETH IPV4 TCP => VF
56 0 0 i-- ETH IPV4 TCP => VF
57 0 0 i-- ETH IPV4 TCP => VF
58 0 0 i-- ETH IPV4 TCP => VF
59 0 0 i-- ETH IPV4 TCP => VF
60 0 0 i-- ETH IPV4 TCP => VF
61 0 0 i-- ETH IPV4 TCP => VF
62 0 0 i-- ETH IPV4 TCP => VF
05/05/2021 23:06:49 dut.10.240.183.254: start
05/05/2021 23:06:49 dut.10.240.183.254:
io packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
io packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
05/05/2021 23:06:54 dut.10.240.183.254: stop
05/05/2021 23:06:55 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 0 ----------------------
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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:07:01 CVLDCFSwitchFilterTest: Test Case test_max_vfs Result ERROR: Traceback (most recent call last):
File "/home/autoregression/dts/dts/framework/test_case.py", line 332, in _execute_test_case
case_obj()
File "tests/TestSuite_cvl_dcf_switch_filter.py", line 1727, in test_max_vfs
matched_dic["check_func"]["func"](out_vfs, matched_dic["expect_results"]["expect_pkts"])
File "tests/rte_flow_common.py", line 287, in check_kernel_vf_rx_packets_number
verify(results == expect_results, "failed: packets number not correct. expect %s, result %s" % (expect_results, results))
File "tests/rte_flow_common.py", line 324, in verify
raise AssertionError(description)
AssertionError: failed: packets number not correct. expect [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], result [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
05/05/2021 23:07:01 dut.10.240.183.254: flow flush 0
05/05/2021 23:07:01 dut.10.240.183.254:
05/05/2021 23:07:01 dut.10.240.183.254: clear port stats all
05/05/2021 23:07:01 dut.10.240.183.254:
NIC statistics for port 0 cleared
05/05/2021 23:07:01 dut.10.240.183.254: quit
05/05/2021 23:07:02 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Bye...
05/05/2021 23:07:02 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:07:37 CVLDCFSwitchFilterTest: Test Case test_negative_case Begin
05/05/2021 23:07:37 dut.10.240.183.254:
05/05/2021 23:07:37 tester:
05/05/2021 23:07:37 dut.10.240.183.254: rmmod ice
05/05/2021 23:07:40 dut.10.240.183.254:
05/05/2021 23:07:40 dut.10.240.183.254: modprobe ice
05/05/2021 23:07:43 dut.10.240.183.254:
05/05/2021 23:07:43 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:07:44 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:07:44 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:07:44 dut.10.240.183.254:
05/05/2021 23:07:46 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:07:46 dut.10.240.183.254:
05/05/2021 23:07:57 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:08:05 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:08:05 dut.10.240.183.254: set portlist 1
05/05/2021 23:08:05 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:08:05 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:08:05 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:08:05 dut.10.240.183.254: set verbose 1
05/05/2021 23:08:05 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:08:05 dut.10.240.183.254: flow validate 1 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:08:05 dut.10.240.183.254:
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument
05/05/2021 23:08:05 dut.10.240.183.254: flow list 1
05/05/2021 23:08:05 dut.10.240.183.254:
05/05/2021 23:08:05 dut.10.240.183.254: flow create 1 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:08:05 dut.10.240.183.254:
iavf_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument
05/05/2021 23:08:05 dut.10.240.183.254: flow list 1
05/05/2021 23:08:05 dut.10.240.183.254:
05/05/2021 23:08:05 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 tos is 4 / end actions vf id 1 / end
05/05/2021 23:08:06 dut.10.240.183.254:
port_flow_complain(): Caught PMD error type 10 (item specification): cause: 0x7fffced75290, Invalid input set: Invalid argument
05/05/2021 23:08:06 dut.10.240.183.254: flow list 0
05/05/2021 23:08:06 dut.10.240.183.254:
05/05/2021 23:08:06 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 tos is 4 / end actions vf id 1 / end
05/05/2021 23:08:06 dut.10.240.183.254:
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 10 (item specification): cause: 0x7fffced75290, Invalid input set: Invalid argument
05/05/2021 23:08:06 dut.10.240.183.254: flow list 0
05/05/2021 23:08:06 dut.10.240.183.254:
05/05/2021 23:08:06 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions vf id 1 / end
05/05/2021 23:08:06 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:08:06 dut.10.240.183.254: flow list 0
05/05/2021 23:08:06 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 => VF
05/05/2021 23:08:06 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions vf id 1 / end
05/05/2021 23:08:06 dut.10.240.183.254:
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): switch filter create flow fail: Invalid argument
05/05/2021 23:08:06 dut.10.240.183.254: flow list 0
05/05/2021 23:08:06 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 => VF
05/05/2021 23:08:06 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:08:06 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:08:06 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 / udp src is 25 dst is 23 / end actions end
05/05/2021 23:08:07 dut.10.240.183.254:
port_flow_complain(): Caught PMD error type 14 (number of actions): NULL action.: Invalid argument
05/05/2021 23:08:07 dut.10.240.183.254: flow list 0
05/05/2021 23:08:07 dut.10.240.183.254:
05/05/2021 23:08:07 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 / udp src is 25 dst is 23 / end actions end
05/05/2021 23:08:07 dut.10.240.183.254:
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 14 (number of actions): NULL action.: Invalid argument
05/05/2021 23:08:07 dut.10.240.183.254: flow list 0
05/05/2021 23:08:07 dut.10.240.183.254:
05/05/2021 23:08:07 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 / end actions vf id 1 end
05/05/2021 23:08:07 dut.10.240.183.254:
Bad arguments
05/05/2021 23:08:07 dut.10.240.183.254: flow list 0
05/05/2021 23:08:07 dut.10.240.183.254:
05/05/2021 23:08:07 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 / end actions vf id 1 end
05/05/2021 23:08:07 dut.10.240.183.254:
Bad arguments
05/05/2021 23:08:07 dut.10.240.183.254: flow list 0
05/05/2021 23:08:07 dut.10.240.183.254:
05/05/2021 23:08:07 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / tcp src is 25 dst is 23 / end actions vf id 5 / end
05/05/2021 23:08:07 dut.10.240.183.254:
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 16 (specific action): cause: 0x7fffced75310, Invalid vf id: Invalid argument
05/05/2021 23:08:07 dut.10.240.183.254: flow list 0
05/05/2021 23:08:07 dut.10.240.183.254:
05/05/2021 23:08:07 dut.10.240.183.254: flow list 0
05/05/2021 23:08:07 dut.10.240.183.254:
05/05/2021 23:08:07 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:08:07 dut.10.240.183.254:
05/05/2021 23:08:07 dut.10.240.183.254: flow flush 0
05/05/2021 23:08:07 dut.10.240.183.254:
05/05/2021 23:08:07 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 tc is 3 / end actions vf id 1 / end
05/05/2021 23:08:07 dut.10.240.183.254:
port_flow_complain(): Caught PMD error type 10 (item specification): cause: 0x7fffced75290, Invalid input set: Invalid argument
05/05/2021 23:08:07 dut.10.240.183.254: flow list 0
05/05/2021 23:08:07 dut.10.240.183.254:
05/05/2021 23:08:07 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 tc is 3 / end actions vf id 1 / end
05/05/2021 23:08:07 dut.10.240.183.254:
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 10 (item specification): cause: 0x7fffced75290, Invalid input set: Invalid argument
05/05/2021 23:08:07 dut.10.240.183.254: flow list 0
05/05/2021 23:08:08 dut.10.240.183.254:
05/05/2021 23:08:08 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:08:08 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:08:08 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:08:08 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:08:08 dut.10.240.183.254: flow list 0
05/05/2021 23:08:08 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV6 UDP => VF
05/05/2021 23:08:08 dut.10.240.183.254: start
05/05/2021 23:08:08 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:08:13 dut.10.240.183.254: stop
05/05/2021 23:08:13 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:08:13 dut.10.240.183.254: start
05/05/2021 23:08:13 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:08:18 dut.10.240.183.254: stop
05/05/2021 23:08:18 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:08:18 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:08:19 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:08:19 dut.10.240.183.254: flow list 0
05/05/2021 23:08:19 dut.10.240.183.254:
05/05/2021 23:08:19 dut.10.240.183.254: start
05/05/2021 23:08:19 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:08:24 dut.10.240.183.254: stop
05/05/2021 23:08:24 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:08:24 CVLDCFSwitchFilterTest: Test Case test_negative_case Result PASSED:
05/05/2021 23:08:24 dut.10.240.183.254: flow flush 0
05/05/2021 23:08:24 dut.10.240.183.254:
05/05/2021 23:08:24 dut.10.240.183.254: clear port stats all
05/05/2021 23:08:24 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 23:08:24 dut.10.240.183.254: quit
05/05/2021 23:08:25 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 23:08:25 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:08:31 CVLDCFSwitchFilterTest: Test Case test_udp_port_filter_dhcp_discovery Begin
05/05/2021 23:08:31 dut.10.240.183.254:
05/05/2021 23:08:31 tester:
05/05/2021 23:08:31 dut.10.240.183.254: rmmod ice
05/05/2021 23:08:34 dut.10.240.183.254:
05/05/2021 23:08:34 dut.10.240.183.254: modprobe ice
05/05/2021 23:08:37 dut.10.240.183.254:
05/05/2021 23:08:37 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:08:38 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:08:38 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:08:38 dut.10.240.183.254:
05/05/2021 23:08:40 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:08:40 dut.10.240.183.254:
05/05/2021 23:08:51 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:08:59 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:08:59 dut.10.240.183.254: set portlist 1
05/05/2021 23:08:59 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:08:59 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:08:59 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:08:59 dut.10.240.183.254: set verbose 1
05/05/2021 23:08:59 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:08:59 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 / udp src is 68 dst is 67 / end actions vf id 1 / end
05/05/2021 23:08:59 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:08:59 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 / udp src is 68 dst is 67 / end actions vf id 1 / end
05/05/2021 23:09:00 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:09:00 dut.10.240.183.254: flow list 0
05/05/2021 23:09:00 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP => VF
05/05/2021 23:09:00 dut.10.240.183.254: start
05/05/2021 23:09:00 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:09:05 dut.10.240.183.254: stop
05/05/2021 23:09:05 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:09:05 dut.10.240.183.254: start
05/05/2021 23:09:05 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:09:10 dut.10.240.183.254: stop
05/05/2021 23:09:10 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:09:10 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:09:11 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:09:11 dut.10.240.183.254: flow list 0
05/05/2021 23:09:11 dut.10.240.183.254:
05/05/2021 23:09:11 dut.10.240.183.254: start
05/05/2021 23:09:11 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:09:16 dut.10.240.183.254: stop
05/05/2021 23:09:16 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:09:16 CVLDCFSwitchFilterTest: Test Case test_udp_port_filter_dhcp_discovery Result PASSED:
05/05/2021 23:09:16 dut.10.240.183.254: flow flush 0
05/05/2021 23:09:16 dut.10.240.183.254:
05/05/2021 23:09:16 dut.10.240.183.254: clear port stats all
05/05/2021 23:09:16 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 23:09:16 dut.10.240.183.254: quit
05/05/2021 23:09:17 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 23:09:17 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:09:23 CVLDCFSwitchFilterTest: Test Case test_udp_port_filter_dhcp_offer Begin
05/05/2021 23:09:23 dut.10.240.183.254:
05/05/2021 23:09:23 tester:
05/05/2021 23:09:23 dut.10.240.183.254: rmmod ice
05/05/2021 23:09:26 dut.10.240.183.254:
05/05/2021 23:09:26 dut.10.240.183.254: modprobe ice
05/05/2021 23:09:29 dut.10.240.183.254:
05/05/2021 23:09:29 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:09:30 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:09:30 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:09:30 dut.10.240.183.254:
05/05/2021 23:09:32 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:09:32 dut.10.240.183.254:
05/05/2021 23:09:43 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:09:51 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:09:51 dut.10.240.183.254: set portlist 1
05/05/2021 23:09:51 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:09:51 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:09:51 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:09:51 dut.10.240.183.254: set verbose 1
05/05/2021 23:09:51 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:09:51 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 / udp src is 67 dst is 68 / end actions vf id 1 / end
05/05/2021 23:09:51 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:09:51 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 / udp src is 67 dst is 68 / end actions vf id 1 / end
05/05/2021 23:09:52 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:09:52 dut.10.240.183.254: flow list 0
05/05/2021 23:09:52 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP => VF
05/05/2021 23:09:52 dut.10.240.183.254: start
05/05/2021 23:09:52 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:09:57 dut.10.240.183.254: stop
05/05/2021 23:09:57 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:09:57 dut.10.240.183.254: start
05/05/2021 23:09:57 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:10:02 dut.10.240.183.254: stop
05/05/2021 23:10:02 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:10:02 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:10:02 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:10:02 dut.10.240.183.254: flow list 0
05/05/2021 23:10:03 dut.10.240.183.254:
05/05/2021 23:10:03 dut.10.240.183.254: start
05/05/2021 23:10:03 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:10:08 dut.10.240.183.254: stop
05/05/2021 23:10:08 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:10:08 CVLDCFSwitchFilterTest: Test Case test_udp_port_filter_dhcp_offer Result PASSED:
05/05/2021 23:10:08 dut.10.240.183.254: flow flush 0
05/05/2021 23:10:08 dut.10.240.183.254:
05/05/2021 23:10:08 dut.10.240.183.254: clear port stats all
05/05/2021 23:10:08 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 23:10:08 dut.10.240.183.254: quit
05/05/2021 23:10:09 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 23:10:09 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:10:15 CVLDCFSwitchFilterTest: Test Case test_udp_port_filter_vxlan Begin
05/05/2021 23:10:15 dut.10.240.183.254:
05/05/2021 23:10:15 tester:
05/05/2021 23:10:15 dut.10.240.183.254: rmmod ice
05/05/2021 23:10:18 dut.10.240.183.254:
05/05/2021 23:10:18 dut.10.240.183.254: modprobe ice
05/05/2021 23:10:21 dut.10.240.183.254:
05/05/2021 23:10:21 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:10:22 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:10:22 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:10:22 dut.10.240.183.254:
05/05/2021 23:10:24 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:10:24 dut.10.240.183.254:
05/05/2021 23:10:35 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:10:43 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:10:43 dut.10.240.183.254: set portlist 1
05/05/2021 23:10:43 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:10:43 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:10:43 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:10:43 dut.10.240.183.254: set verbose 1
05/05/2021 23:10:43 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:10:43 dut.10.240.183.254: flow validate 0 ingress pattern eth / ipv4 / udp dst is 4789 / end actions vf id 1 / end
05/05/2021 23:10:44 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:10:44 dut.10.240.183.254: flow create 0 ingress pattern eth / ipv4 / udp dst is 4789 / end actions vf id 1 / end
05/05/2021 23:10:44 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:10:44 dut.10.240.183.254: flow list 0
05/05/2021 23:10:44 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH IPV4 UDP => VF
05/05/2021 23:10:44 dut.10.240.183.254: start
05/05/2021 23:10:44 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:10:49 dut.10.240.183.254: stop
05/05/2021 23:10:49 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:10:49 dut.10.240.183.254: start
05/05/2021 23:10:49 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:10:55 dut.10.240.183.254: stop
05/05/2021 23:10:55 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:10:55 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:10:55 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:10:55 dut.10.240.183.254: flow list 0
05/05/2021 23:10:55 dut.10.240.183.254:
05/05/2021 23:10:55 dut.10.240.183.254: start
05/05/2021 23:10:55 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:11:00 dut.10.240.183.254: stop
05/05/2021 23:11:00 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:11:00 CVLDCFSwitchFilterTest: Test Case test_udp_port_filter_vxlan Result PASSED:
05/05/2021 23:11:00 dut.10.240.183.254: flow flush 0
05/05/2021 23:11:00 dut.10.240.183.254:
05/05/2021 23:11:00 dut.10.240.183.254: clear port stats all
05/05/2021 23:11:00 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 23:11:00 dut.10.240.183.254: quit
05/05/2021 23:11:01 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 23:11:01 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:11:07 CVLDCFSwitchFilterTest: Test Case test_unsupported_pattern_in_os_default Begin
05/05/2021 23:11:07 dut.10.240.183.254:
05/05/2021 23:11:07 tester:
05/05/2021 23:11:07 dut.10.240.183.254: rmmod ice
05/05/2021 23:11:10 dut.10.240.183.254:
05/05/2021 23:11:10 dut.10.240.183.254: modprobe ice
05/05/2021 23:11:14 dut.10.240.183.254:
05/05/2021 23:11:14 CVLDCFSwitchFilterTest: Test Case test_unsupported_pattern_in_os_default N/A:
05/05/2021 23:11:14 CVLDCFSwitchFilterTest: Test Case test_vlan_filter Begin
05/05/2021 23:11:14 dut.10.240.183.254:
05/05/2021 23:11:14 tester:
05/05/2021 23:11:14 dut.10.240.183.254: rmmod ice
05/05/2021 23:11:18 dut.10.240.183.254:
05/05/2021 23:11:18 dut.10.240.183.254: modprobe ice
05/05/2021 23:11:21 dut.10.240.183.254:
05/05/2021 23:11:21 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:11:21 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:11:21 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:11:21 dut.10.240.183.254:
05/05/2021 23:11:24 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:11:24 dut.10.240.183.254:
05/05/2021 23:11:34 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:11:43 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:11:43 dut.10.240.183.254: set portlist 1
05/05/2021 23:11:43 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:11:43 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:11:43 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:11:43 dut.10.240.183.254: set verbose 1
05/05/2021 23:11:43 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:11:43 dut.10.240.183.254: flow validate 0 ingress pattern eth / vlan tci is 1 / end actions vf id 1 / end
05/05/2021 23:11:43 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:11:43 dut.10.240.183.254: flow create 0 ingress pattern eth / vlan tci is 1 / end actions vf id 1 / end
05/05/2021 23:11:43 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:11:43 dut.10.240.183.254: flow list 0
05/05/2021 23:11:44 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN => VF
05/05/2021 23:11:44 dut.10.240.183.254: start
05/05/2021 23:11:44 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:11:49 dut.10.240.183.254: stop
05/05/2021 23:11:49 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:11:49 dut.10.240.183.254: start
05/05/2021 23:11:49 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:11:54 dut.10.240.183.254: stop
05/05/2021 23:11:54 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:11:54 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:11:54 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:11:54 dut.10.240.183.254: flow list 0
05/05/2021 23:11:54 dut.10.240.183.254:
05/05/2021 23:11:54 dut.10.240.183.254: start
05/05/2021 23:11:54 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:11:59 dut.10.240.183.254: stop
05/05/2021 23:11:59 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:11:59 CVLDCFSwitchFilterTest: Test Case test_vlan_filter Result PASSED:
05/05/2021 23:11:59 dut.10.240.183.254: flow flush 0
05/05/2021 23:12:00 dut.10.240.183.254:
05/05/2021 23:12:00 dut.10.240.183.254: clear port stats all
05/05/2021 23:12:00 dut.10.240.183.254:
NIC statistics for port 0 cleared
NIC statistics for port 1 cleared
05/05/2021 23:12:00 dut.10.240.183.254: quit
05/05/2021 23:12:01 dut.10.240.183.254:
Stopping port 0...
Stopping ports...
Done
Stopping port 1...
Stopping ports...
Done
Shutting down port 0...
Closing ports...
Port 0 is closed
Done
Shutting down port 1...
Closing ports...
Port 1 is closed
Done
Bye...
05/05/2021 23:12:01 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:12:06 dts:
TEST SUITE ENDED: CVLDCFSwitchFilterTest
[-- Attachment #3: CVLDCFSwitchFilterPPPOETest.log --]
[-- Type: application/octet-stream, Size: 307362 bytes --]
05/05/2021 23:12:13 dts:
TEST SUITE : CVLDCFSwitchFilterPPPOETest
05/05/2021 23:12:13 dts: NIC : columbiaville_25g
05/05/2021 23:12:13 dut.10.240.183.254:
05/05/2021 23:12:13 tester:
05/05/2021 23:12:23 dut.10.240.183.254: modprobe vfio-pci
05/05/2021 23:12:23 dut.10.240.183.254:
05/05/2021 23:12:23 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipcp_pay Begin
05/05/2021 23:12:23 dut.10.240.183.254:
05/05/2021 23:12:23 tester:
05/05/2021 23:12:23 dut.10.240.183.254: rmmod ice
05/05/2021 23:12:27 dut.10.240.183.254:
05/05/2021 23:12:27 dut.10.240.183.254: modprobe ice
05/05/2021 23:12:30 dut.10.240.183.254:
05/05/2021 23:12:30 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:12:30 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:12:30 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:12:30 dut.10.240.183.254:
05/05/2021 23:12:33 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:12:33 dut.10.240.183.254:
05/05/2021 23:12:44 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:12:53 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:12:53 dut.10.240.183.254: set portlist 1
05/05/2021 23:12:53 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:12:53 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:12:53 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:12:53 dut.10.240.183.254: set verbose 1
05/05/2021 23:12:53 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:12:53 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions vf id 1 / end
05/05/2021 23:12:53 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:12:53 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions vf id 1 / end
05/05/2021 23:12:54 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:12:54 dut.10.240.183.254: flow list 0
05/05/2021 23:12:54 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES PPPOE_PROTO_ID => VF
05/05/2021 23:12:54 dut.10.240.183.254: start
05/05/2021 23:12:54 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:12:59 dut.10.240.183.254: stop
05/05/2021 23:12:59 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:12:59 dut.10.240.183.254: start
05/05/2021 23:12:59 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:13:04 dut.10.240.183.254: stop
05/05/2021 23:13:04 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:13:04 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:13:04 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:13:04 dut.10.240.183.254: flow list 0
05/05/2021 23:13:04 dut.10.240.183.254:
05/05/2021 23:13:04 dut.10.240.183.254: start
05/05/2021 23:13:05 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:13:10 dut.10.240.183.254: stop
05/05/2021 23:13:10 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:13:10 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipcp_pay Result PASSED:
05/05/2021 23:13:10 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:13:12 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:13:17 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv4_pay_ip_address Begin
05/05/2021 23:13:17 dut.10.240.183.254:
05/05/2021 23:13:17 tester:
05/05/2021 23:13:17 dut.10.240.183.254: rmmod ice
05/05/2021 23:13:21 dut.10.240.183.254:
05/05/2021 23:13:21 dut.10.240.183.254: modprobe ice
05/05/2021 23:13:24 dut.10.240.183.254:
05/05/2021 23:13:24 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:13:24 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:13:24 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:13:24 dut.10.240.183.254:
05/05/2021 23:13:26 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:13:27 dut.10.240.183.254:
05/05/2021 23:13:37 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:13:45 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:13:45 dut.10.240.183.254: set portlist 1
05/05/2021 23:13:46 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:13:46 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:13:46 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:13:46 dut.10.240.183.254: set verbose 1
05/05/2021 23:13:46 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:13:46 dut.10.240.183.254: flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions vf id 1 / end
05/05/2021 23:13:46 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:13:46 dut.10.240.183.254: flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions vf id 1 / end
05/05/2021 23:13:46 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:13:46 dut.10.240.183.254: flow list 0
05/05/2021 23:13:46 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES IPV4 => VF
05/05/2021 23:13:46 dut.10.240.183.254: start
05/05/2021 23:13:46 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:13:51 dut.10.240.183.254: stop
05/05/2021 23:13:51 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:13:51 dut.10.240.183.254: start
05/05/2021 23:13:52 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:13:57 dut.10.240.183.254: stop
05/05/2021 23:13:57 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:13:57 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:13:57 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:13:57 dut.10.240.183.254: flow list 0
05/05/2021 23:13:57 dut.10.240.183.254:
05/05/2021 23:13:57 dut.10.240.183.254: start
05/05/2021 23:13:57 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:14:02 dut.10.240.183.254: stop
05/05/2021 23:14:02 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:14:02 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv4_pay_ip_address Result PASSED:
05/05/2021 23:14:02 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:14:04 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:14:09 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv4_pay_session_id_proto_id Begin
05/05/2021 23:14:09 dut.10.240.183.254:
05/05/2021 23:14:10 tester:
05/05/2021 23:14:10 dut.10.240.183.254: rmmod ice
05/05/2021 23:14:13 dut.10.240.183.254:
05/05/2021 23:14:13 dut.10.240.183.254: modprobe ice
05/05/2021 23:14:16 dut.10.240.183.254:
05/05/2021 23:14:16 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:14:16 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:14:16 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:14:16 dut.10.240.183.254:
05/05/2021 23:14:19 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:14:19 dut.10.240.183.254:
05/05/2021 23:14:30 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:14:38 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:14:38 dut.10.240.183.254: set portlist 1
05/05/2021 23:14:38 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:14:38 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:14:38 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:14:38 dut.10.240.183.254: set verbose 1
05/05/2021 23:14:38 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:14:38 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions vf id 1 / end
05/05/2021 23:14:38 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:14:38 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions vf id 1 / end
05/05/2021 23:14:39 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:14:39 dut.10.240.183.254: flow list 0
05/05/2021 23:14:39 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES PPPOE_PROTO_ID => VF
05/05/2021 23:14:39 dut.10.240.183.254: start
05/05/2021 23:14:39 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:14:44 dut.10.240.183.254: stop
05/05/2021 23:14:44 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:14:44 dut.10.240.183.254: start
05/05/2021 23:14:44 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:14:49 dut.10.240.183.254: stop
05/05/2021 23:14:49 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:14:49 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:14:49 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:14:49 dut.10.240.183.254: flow list 0
05/05/2021 23:14:49 dut.10.240.183.254:
05/05/2021 23:14:49 dut.10.240.183.254: start
05/05/2021 23:14:49 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:14:54 dut.10.240.183.254: stop
05/05/2021 23:14:55 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:14:55 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv4_pay_session_id_proto_id Result PASSED:
05/05/2021 23:14:55 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:14:57 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:15:02 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv4_tcp_pay Begin
05/05/2021 23:15:02 dut.10.240.183.254:
05/05/2021 23:15:02 tester:
05/05/2021 23:15:02 dut.10.240.183.254: rmmod ice
05/05/2021 23:15:05 dut.10.240.183.254:
05/05/2021 23:15:05 dut.10.240.183.254: modprobe ice
05/05/2021 23:15:09 dut.10.240.183.254:
05/05/2021 23:15:09 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:15:09 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:15:09 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:15:09 dut.10.240.183.254:
05/05/2021 23:15:11 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:15:12 dut.10.240.183.254:
05/05/2021 23:15:22 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:15:30 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:15:30 dut.10.240.183.254: set portlist 1
05/05/2021 23:15:31 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:15:31 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:15:31 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:15:31 dut.10.240.183.254: set verbose 1
05/05/2021 23:15:31 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:15:31 dut.10.240.183.254: flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:15:31 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:15:31 dut.10.240.183.254: flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:15:31 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:15:31 dut.10.240.183.254: flow list 0
05/05/2021 23:15:31 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES IPV4 TCP => VF
05/05/2021 23:15:31 dut.10.240.183.254: start
05/05/2021 23:15:31 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:15:36 dut.10.240.183.254: stop
05/05/2021 23:15:36 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:15:36 dut.10.240.183.254: start
05/05/2021 23:15:37 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:15:42 dut.10.240.183.254: stop
05/05/2021 23:15:42 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:15:42 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:15:42 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:15:42 dut.10.240.183.254: flow list 0
05/05/2021 23:15:42 dut.10.240.183.254:
05/05/2021 23:15:42 dut.10.240.183.254: start
05/05/2021 23:15:42 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:15:47 dut.10.240.183.254: stop
05/05/2021 23:15:47 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:15:47 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv4_tcp_pay Result PASSED:
05/05/2021 23:15:47 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:15:49 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:15:54 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv4_tcp_pay_non_src_dst_port Begin
05/05/2021 23:15:55 dut.10.240.183.254:
05/05/2021 23:15:55 tester:
05/05/2021 23:15:55 dut.10.240.183.254: rmmod ice
05/05/2021 23:15:58 dut.10.240.183.254:
05/05/2021 23:15:58 dut.10.240.183.254: modprobe ice
05/05/2021 23:16:01 dut.10.240.183.254:
05/05/2021 23:16:01 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:16:01 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:16:01 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:16:01 dut.10.240.183.254:
05/05/2021 23:16:04 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:16:04 dut.10.240.183.254:
05/05/2021 23:16:15 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:16:23 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:16:23 dut.10.240.183.254: set portlist 1
05/05/2021 23:16:23 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:16:23 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:16:23 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:16:23 dut.10.240.183.254: set verbose 1
05/05/2021 23:16:23 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:16:23 dut.10.240.183.254: flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions vf id 1 / end
05/05/2021 23:16:23 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:16:23 dut.10.240.183.254: flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions vf id 1 / end
05/05/2021 23:16:24 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:16:24 dut.10.240.183.254: flow list 0
05/05/2021 23:16:24 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES IPV4 TCP => VF
05/05/2021 23:16:24 dut.10.240.183.254: start
05/05/2021 23:16:24 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:16:29 dut.10.240.183.254: stop
05/05/2021 23:16:29 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:16:29 dut.10.240.183.254: start
05/05/2021 23:16:29 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:16:34 dut.10.240.183.254: stop
05/05/2021 23:16:34 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:16:34 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:16:34 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:16:34 dut.10.240.183.254: flow list 0
05/05/2021 23:16:34 dut.10.240.183.254:
05/05/2021 23:16:34 dut.10.240.183.254: start
05/05/2021 23:16:34 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:16:40 dut.10.240.183.254: stop
05/05/2021 23:16:40 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:16:40 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv4_tcp_pay_non_src_dst_port Result PASSED:
05/05/2021 23:16:40 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:16:42 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:16:47 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv4_udp_pay Begin
05/05/2021 23:16:47 dut.10.240.183.254:
05/05/2021 23:16:47 tester:
05/05/2021 23:16:47 dut.10.240.183.254: rmmod ice
05/05/2021 23:16:50 dut.10.240.183.254:
05/05/2021 23:16:50 dut.10.240.183.254: modprobe ice
05/05/2021 23:16:54 dut.10.240.183.254:
05/05/2021 23:16:54 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:16:54 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:16:54 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:16:54 dut.10.240.183.254:
05/05/2021 23:16:56 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:16:56 dut.10.240.183.254:
05/05/2021 23:17:07 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:17:15 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:17:15 dut.10.240.183.254: set portlist 1
05/05/2021 23:17:16 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:17:16 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:17:16 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:17:16 dut.10.240.183.254: set verbose 1
05/05/2021 23:17:16 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:17:16 dut.10.240.183.254: flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:17:16 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:17:16 dut.10.240.183.254: flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:17:16 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:17:16 dut.10.240.183.254: flow list 0
05/05/2021 23:17:16 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES IPV4 UDP => VF
05/05/2021 23:17:16 dut.10.240.183.254: start
05/05/2021 23:17:16 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:17:21 dut.10.240.183.254: stop
05/05/2021 23:17:21 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:17:21 dut.10.240.183.254: start
05/05/2021 23:17:22 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:17:27 dut.10.240.183.254: stop
05/05/2021 23:17:27 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:17:27 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:17:27 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:17:27 dut.10.240.183.254: flow list 0
05/05/2021 23:17:27 dut.10.240.183.254:
05/05/2021 23:17:27 dut.10.240.183.254: start
05/05/2021 23:17:27 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:17:32 dut.10.240.183.254: stop
05/05/2021 23:17:32 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:17:32 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv4_udp_pay Result PASSED:
05/05/2021 23:17:32 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:17:34 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:17:39 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv4_udp_pay_non_src_dst_port Begin
05/05/2021 23:17:39 dut.10.240.183.254:
05/05/2021 23:17:40 tester:
05/05/2021 23:17:40 dut.10.240.183.254: rmmod ice
05/05/2021 23:17:43 dut.10.240.183.254:
05/05/2021 23:17:43 dut.10.240.183.254: modprobe ice
05/05/2021 23:17:46 dut.10.240.183.254:
05/05/2021 23:17:46 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:17:46 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:17:46 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:17:46 dut.10.240.183.254:
05/05/2021 23:17:49 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:17:49 dut.10.240.183.254:
05/05/2021 23:18:00 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:18:08 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:18:08 dut.10.240.183.254: set portlist 1
05/05/2021 23:18:08 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:18:08 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:18:08 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:18:08 dut.10.240.183.254: set verbose 1
05/05/2021 23:18:08 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:18:08 dut.10.240.183.254: flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp / end actions vf id 1 / end
05/05/2021 23:18:08 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:18:08 dut.10.240.183.254: flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp / end actions vf id 1 / end
05/05/2021 23:18:09 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:18:09 dut.10.240.183.254: flow list 0
05/05/2021 23:18:09 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES IPV4 UDP => VF
05/05/2021 23:18:09 dut.10.240.183.254: start
05/05/2021 23:18:09 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:18:14 dut.10.240.183.254: stop
05/05/2021 23:18:14 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:18:14 dut.10.240.183.254: start
05/05/2021 23:18:14 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:18:19 dut.10.240.183.254: stop
05/05/2021 23:18:19 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:18:19 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:18:19 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:18:19 dut.10.240.183.254: flow list 0
05/05/2021 23:18:19 dut.10.240.183.254:
05/05/2021 23:18:19 dut.10.240.183.254: start
05/05/2021 23:18:20 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:18:25 dut.10.240.183.254: stop
05/05/2021 23:18:25 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:18:25 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv4_udp_pay_non_src_dst_port Result PASSED:
05/05/2021 23:18:25 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:18:27 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:18:32 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv6_pay_ip_address Begin
05/05/2021 23:18:32 dut.10.240.183.254:
05/05/2021 23:18:32 tester:
05/05/2021 23:18:32 dut.10.240.183.254: rmmod ice
05/05/2021 23:18:36 dut.10.240.183.254:
05/05/2021 23:18:36 dut.10.240.183.254: modprobe ice
05/05/2021 23:18:39 dut.10.240.183.254:
05/05/2021 23:18:39 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:18:39 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:18:39 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:18:39 dut.10.240.183.254:
05/05/2021 23:18:41 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:18:42 dut.10.240.183.254:
05/05/2021 23:18:52 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:19:03 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:19:03 dut.10.240.183.254: set portlist 1
05/05/2021 23:19:03 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:19:03 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:19:03 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:19:03 dut.10.240.183.254: set verbose 1
05/05/2021 23:19:03 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:19:03 dut.10.240.183.254: flow validate 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / end actions vf id 1 / end
05/05/2021 23:19:03 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:19:03 dut.10.240.183.254: flow create 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / end actions vf id 1 / end
05/05/2021 23:19:04 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:19:04 dut.10.240.183.254: flow list 0
05/05/2021 23:19:04 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES IPV6 => VF
05/05/2021 23:19:04 dut.10.240.183.254: start
05/05/2021 23:19:04 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:19:09 dut.10.240.183.254: stop
05/05/2021 23:19:09 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:19:09 dut.10.240.183.254: start
05/05/2021 23:19:09 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:19:14 dut.10.240.183.254: stop
05/05/2021 23:19:14 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:19:14 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:19:14 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:19:14 dut.10.240.183.254: flow list 0
05/05/2021 23:19:14 dut.10.240.183.254:
05/05/2021 23:19:14 dut.10.240.183.254: start
05/05/2021 23:19:14 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:19:19 dut.10.240.183.254: stop
05/05/2021 23:19:20 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:19:20 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv6_pay_ip_address Result PASSED:
05/05/2021 23:19:20 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:19:22 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:19:27 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv6_pay_session_id_proto_id Begin
05/05/2021 23:19:27 dut.10.240.183.254:
05/05/2021 23:19:27 tester:
05/05/2021 23:19:27 dut.10.240.183.254: rmmod ice
05/05/2021 23:19:30 dut.10.240.183.254:
05/05/2021 23:19:30 dut.10.240.183.254: modprobe ice
05/05/2021 23:19:34 dut.10.240.183.254:
05/05/2021 23:19:34 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:19:34 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:19:34 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:19:34 dut.10.240.183.254:
05/05/2021 23:19:36 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:19:36 dut.10.240.183.254:
05/05/2021 23:19:47 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:19:55 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:19:55 dut.10.240.183.254: set portlist 1
05/05/2021 23:19:55 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:19:55 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:19:55 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:19:55 dut.10.240.183.254: set verbose 1
05/05/2021 23:19:55 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:19:55 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions vf id 1 / end
05/05/2021 23:19:56 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:19:56 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions vf id 1 / end
05/05/2021 23:19:56 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:19:56 dut.10.240.183.254: flow list 0
05/05/2021 23:19:56 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES PPPOE_PROTO_ID => VF
05/05/2021 23:19:56 dut.10.240.183.254: start
05/05/2021 23:19:56 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:20:01 dut.10.240.183.254: stop
05/05/2021 23:20:01 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:20:01 dut.10.240.183.254: start
05/05/2021 23:20:01 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:20:07 dut.10.240.183.254: stop
05/05/2021 23:20:07 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:20:07 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:20:07 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:20:07 dut.10.240.183.254: flow list 0
05/05/2021 23:20:07 dut.10.240.183.254:
05/05/2021 23:20:07 dut.10.240.183.254: start
05/05/2021 23:20:07 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:20:12 dut.10.240.183.254: stop
05/05/2021 23:20:12 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:20:12 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv6_pay_session_id_proto_id Result PASSED:
05/05/2021 23:20:12 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:20:14 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:20:19 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv6_tcp_pay Begin
05/05/2021 23:20:19 dut.10.240.183.254:
05/05/2021 23:20:19 tester:
05/05/2021 23:20:19 dut.10.240.183.254: rmmod ice
05/05/2021 23:20:23 dut.10.240.183.254:
05/05/2021 23:20:23 dut.10.240.183.254: modprobe ice
05/05/2021 23:20:26 dut.10.240.183.254:
05/05/2021 23:20:26 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:20:26 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:20:26 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:20:27 dut.10.240.183.254:
05/05/2021 23:20:29 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:20:29 dut.10.240.183.254:
05/05/2021 23:20:40 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:20:48 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:20:48 dut.10.240.183.254: set portlist 1
05/05/2021 23:20:48 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:20:48 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:20:48 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:20:48 dut.10.240.183.254: set verbose 1
05/05/2021 23:20:48 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:20:48 dut.10.240.183.254: flow validate 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:20:48 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:20:48 dut.10.240.183.254: flow create 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:20:49 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:20:49 dut.10.240.183.254: flow list 0
05/05/2021 23:20:49 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES IPV6 TCP => VF
05/05/2021 23:20:49 dut.10.240.183.254: start
05/05/2021 23:20:49 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:20:54 dut.10.240.183.254: stop
05/05/2021 23:20:54 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:20:54 dut.10.240.183.254: start
05/05/2021 23:20:54 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:20:59 dut.10.240.183.254: stop
05/05/2021 23:20:59 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:20:59 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:20:59 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:20:59 dut.10.240.183.254: flow list 0
05/05/2021 23:20:59 dut.10.240.183.254:
05/05/2021 23:20:59 dut.10.240.183.254: start
05/05/2021 23:21:00 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:21:05 dut.10.240.183.254: stop
05/05/2021 23:21:05 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:21:05 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv6_tcp_pay Result PASSED:
05/05/2021 23:21:05 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:21:07 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:21:12 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv6_tcp_pay_non_src_dst_port Begin
05/05/2021 23:21:12 dut.10.240.183.254:
05/05/2021 23:21:12 tester:
05/05/2021 23:21:12 dut.10.240.183.254: rmmod ice
05/05/2021 23:21:16 dut.10.240.183.254:
05/05/2021 23:21:16 dut.10.240.183.254: modprobe ice
05/05/2021 23:21:19 dut.10.240.183.254:
05/05/2021 23:21:19 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:21:19 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:21:19 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:21:19 dut.10.240.183.254:
05/05/2021 23:21:21 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:21:22 dut.10.240.183.254:
05/05/2021 23:21:32 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:21:41 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:21:41 dut.10.240.183.254: set portlist 1
05/05/2021 23:21:41 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:21:41 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:21:41 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:21:41 dut.10.240.183.254: set verbose 1
05/05/2021 23:21:41 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:21:41 dut.10.240.183.254: flow validate 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp / end actions vf id 1 / end
05/05/2021 23:21:41 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:21:41 dut.10.240.183.254: flow create 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp / end actions vf id 1 / end
05/05/2021 23:21:41 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:21:41 dut.10.240.183.254: flow list 0
05/05/2021 23:21:41 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES IPV6 TCP => VF
05/05/2021 23:21:41 dut.10.240.183.254: start
05/05/2021 23:21:41 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:21:46 dut.10.240.183.254: stop
05/05/2021 23:21:47 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:21:47 dut.10.240.183.254: start
05/05/2021 23:21:47 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:21:52 dut.10.240.183.254: stop
05/05/2021 23:21:52 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:21:52 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:21:52 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:21:52 dut.10.240.183.254: flow list 0
05/05/2021 23:21:52 dut.10.240.183.254:
05/05/2021 23:21:52 dut.10.240.183.254: start
05/05/2021 23:21:52 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:21:57 dut.10.240.183.254: stop
05/05/2021 23:21:57 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:21:57 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv6_tcp_pay_non_src_dst_port Result PASSED:
05/05/2021 23:21:57 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:22:00 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:22:04 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv6_udp_pay Begin
05/05/2021 23:22:05 dut.10.240.183.254:
05/05/2021 23:22:05 tester:
05/05/2021 23:22:05 dut.10.240.183.254: rmmod ice
05/05/2021 23:22:08 dut.10.240.183.254:
05/05/2021 23:22:08 dut.10.240.183.254: modprobe ice
05/05/2021 23:22:11 dut.10.240.183.254:
05/05/2021 23:22:11 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:22:12 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:22:12 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:22:12 dut.10.240.183.254:
05/05/2021 23:22:14 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:22:14 dut.10.240.183.254:
05/05/2021 23:22:25 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:22:33 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:22:33 dut.10.240.183.254: set portlist 1
05/05/2021 23:22:33 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:22:33 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:22:33 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:22:33 dut.10.240.183.254: set verbose 1
05/05/2021 23:22:33 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:22:33 dut.10.240.183.254: flow validate 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:22:33 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:22:33 dut.10.240.183.254: flow create 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:22:34 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:22:34 dut.10.240.183.254: flow list 0
05/05/2021 23:22:34 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES IPV6 UDP => VF
05/05/2021 23:22:34 dut.10.240.183.254: start
05/05/2021 23:22:34 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:22:39 dut.10.240.183.254: stop
05/05/2021 23:22:39 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:22:39 dut.10.240.183.254: start
05/05/2021 23:22:39 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:22:44 dut.10.240.183.254: stop
05/05/2021 23:22:44 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:22:44 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:22:44 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:22:44 dut.10.240.183.254: flow list 0
05/05/2021 23:22:45 dut.10.240.183.254:
05/05/2021 23:22:45 dut.10.240.183.254: start
05/05/2021 23:22:45 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:22:50 dut.10.240.183.254: stop
05/05/2021 23:22:50 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:22:50 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv6_udp_pay Result PASSED:
05/05/2021 23:22:50 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:22:52 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:22:57 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv6_udp_pay_non_src_dst_port Begin
05/05/2021 23:22:57 dut.10.240.183.254:
05/05/2021 23:22:57 tester:
05/05/2021 23:22:57 dut.10.240.183.254: rmmod ice
05/05/2021 23:23:01 dut.10.240.183.254:
05/05/2021 23:23:01 dut.10.240.183.254: modprobe ice
05/05/2021 23:23:04 dut.10.240.183.254:
05/05/2021 23:23:04 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:23:04 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:23:04 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:23:04 dut.10.240.183.254:
05/05/2021 23:23:07 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:23:07 dut.10.240.183.254:
05/05/2021 23:23:18 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:23:26 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:23:26 dut.10.240.183.254: set portlist 1
05/05/2021 23:23:26 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:23:26 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:23:26 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:23:26 dut.10.240.183.254: set verbose 1
05/05/2021 23:23:26 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:23:26 dut.10.240.183.254: flow validate 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp / end actions vf id 1 / end
05/05/2021 23:23:26 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:23:26 dut.10.240.183.254: flow create 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp / end actions vf id 1 / end
05/05/2021 23:23:26 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:23:26 dut.10.240.183.254: flow list 0
05/05/2021 23:23:27 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES IPV6 UDP => VF
05/05/2021 23:23:27 dut.10.240.183.254: start
05/05/2021 23:23:27 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:23:32 dut.10.240.183.254: stop
05/05/2021 23:23:32 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:23:32 dut.10.240.183.254: start
05/05/2021 23:23:32 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:23:37 dut.10.240.183.254: stop
05/05/2021 23:23:37 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:23:37 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:23:37 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:23:37 dut.10.240.183.254: flow list 0
05/05/2021 23:23:37 dut.10.240.183.254:
05/05/2021 23:23:37 dut.10.240.183.254: start
05/05/2021 23:23:37 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:23:42 dut.10.240.183.254: stop
05/05/2021 23:23:42 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:23:42 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_ipv6_udp_pay_non_src_dst_port Result PASSED:
05/05/2021 23:23:42 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:23:45 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:23:50 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_lcp_pay Begin
05/05/2021 23:23:50 dut.10.240.183.254:
05/05/2021 23:23:50 tester:
05/05/2021 23:23:50 dut.10.240.183.254: rmmod ice
05/05/2021 23:23:53 dut.10.240.183.254:
05/05/2021 23:23:53 dut.10.240.183.254: modprobe ice
05/05/2021 23:23:57 dut.10.240.183.254:
05/05/2021 23:23:57 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:23:57 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:23:57 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:23:57 dut.10.240.183.254:
05/05/2021 23:23:59 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:23:59 dut.10.240.183.254:
05/05/2021 23:24:10 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:24:19 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:24:19 dut.10.240.183.254: set portlist 1
05/05/2021 23:24:19 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:24:19 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:24:19 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:24:19 dut.10.240.183.254: set verbose 1
05/05/2021 23:24:19 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:24:19 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions vf id 1 / end
05/05/2021 23:24:19 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:24:19 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions vf id 1 / end
05/05/2021 23:24:19 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:24:19 dut.10.240.183.254: flow list 0
05/05/2021 23:24:19 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH PPPOES PPPOE_PROTO_ID => VF
05/05/2021 23:24:19 dut.10.240.183.254: start
05/05/2021 23:24:19 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:24:24 dut.10.240.183.254: stop
05/05/2021 23:24:24 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:24:24 dut.10.240.183.254: start
05/05/2021 23:24:25 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:24:30 dut.10.240.183.254: stop
05/05/2021 23:24:30 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:24:30 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:24:30 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:24:30 dut.10.240.183.254: flow list 0
05/05/2021 23:24:30 dut.10.240.183.254:
05/05/2021 23:24:30 dut.10.240.183.254: start
05/05/2021 23:24:30 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:24:35 dut.10.240.183.254: stop
05/05/2021 23:24:35 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:24:35 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_pppoe_lcp_pay Result PASSED:
05/05/2021 23:24:35 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:24:37 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:24:42 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipcp_pay Begin
05/05/2021 23:24:43 dut.10.240.183.254:
05/05/2021 23:24:43 tester:
05/05/2021 23:24:43 dut.10.240.183.254: rmmod ice
05/05/2021 23:24:46 dut.10.240.183.254:
05/05/2021 23:24:46 dut.10.240.183.254: modprobe ice
05/05/2021 23:24:49 dut.10.240.183.254:
05/05/2021 23:24:49 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:24:49 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:24:49 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:24:50 dut.10.240.183.254:
05/05/2021 23:24:52 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:24:52 dut.10.240.183.254:
05/05/2021 23:25:03 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:25:11 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:25:11 dut.10.240.183.254: set portlist 1
05/05/2021 23:25:11 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:25:11 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:25:11 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:25:11 dut.10.240.183.254: set verbose 1
05/05/2021 23:25:11 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:25:11 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions vf id 1 / end
05/05/2021 23:25:11 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:25:11 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions vf id 1 / end
05/05/2021 23:25:12 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:25:12 dut.10.240.183.254: flow list 0
05/05/2021 23:25:12 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES PPPOE_PROTO_ID => VF
05/05/2021 23:25:12 dut.10.240.183.254: start
05/05/2021 23:25:12 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:25:17 dut.10.240.183.254: stop
05/05/2021 23:25:17 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:25:17 dut.10.240.183.254: start
05/05/2021 23:25:17 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:25:22 dut.10.240.183.254: stop
05/05/2021 23:25:22 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:25:22 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:25:22 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:25:22 dut.10.240.183.254: flow list 0
05/05/2021 23:25:22 dut.10.240.183.254:
05/05/2021 23:25:22 dut.10.240.183.254: start
05/05/2021 23:25:23 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:25:28 dut.10.240.183.254: stop
05/05/2021 23:25:28 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:25:28 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipcp_pay Result PASSED:
05/05/2021 23:25:28 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:25:30 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:25:35 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv4_pay_ip_address Begin
05/05/2021 23:25:35 dut.10.240.183.254:
05/05/2021 23:25:35 tester:
05/05/2021 23:25:35 dut.10.240.183.254: rmmod ice
05/05/2021 23:25:39 dut.10.240.183.254:
05/05/2021 23:25:39 dut.10.240.183.254: modprobe ice
05/05/2021 23:25:42 dut.10.240.183.254:
05/05/2021 23:25:42 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:25:42 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:25:42 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:25:42 dut.10.240.183.254:
05/05/2021 23:25:45 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:25:45 dut.10.240.183.254:
05/05/2021 23:25:55 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:26:04 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:26:04 dut.10.240.183.254: set portlist 1
05/05/2021 23:26:04 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:26:04 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:26:04 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:26:04 dut.10.240.183.254: set verbose 1
05/05/2021 23:26:04 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:26:04 dut.10.240.183.254: flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions vf id 1 / end
05/05/2021 23:26:04 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:26:04 dut.10.240.183.254: flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions vf id 1 / end
05/05/2021 23:26:04 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:26:04 dut.10.240.183.254: flow list 0
05/05/2021 23:26:04 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES IPV4 => VF
05/05/2021 23:26:04 dut.10.240.183.254: start
05/05/2021 23:26:04 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:26:10 dut.10.240.183.254: stop
05/05/2021 23:26:10 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:26:10 dut.10.240.183.254: start
05/05/2021 23:26:10 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:26:15 dut.10.240.183.254: stop
05/05/2021 23:26:15 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:26:15 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:26:15 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:26:15 dut.10.240.183.254: flow list 0
05/05/2021 23:26:15 dut.10.240.183.254:
05/05/2021 23:26:15 dut.10.240.183.254: start
05/05/2021 23:26:15 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:26:20 dut.10.240.183.254: stop
05/05/2021 23:26:20 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:26:20 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv4_pay_ip_address Result PASSED:
05/05/2021 23:26:20 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:26:23 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:26:28 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv4_pay_session_id_proto_id Begin
05/05/2021 23:26:28 dut.10.240.183.254:
05/05/2021 23:26:28 tester:
05/05/2021 23:26:28 dut.10.240.183.254: rmmod ice
05/05/2021 23:26:31 dut.10.240.183.254:
05/05/2021 23:26:31 dut.10.240.183.254: modprobe ice
05/05/2021 23:26:34 dut.10.240.183.254:
05/05/2021 23:26:34 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:26:35 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:26:35 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:26:35 dut.10.240.183.254:
05/05/2021 23:26:37 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:26:37 dut.10.240.183.254:
05/05/2021 23:26:48 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:26:56 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:26:56 dut.10.240.183.254: set portlist 1
05/05/2021 23:26:56 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:26:56 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:26:56 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:26:56 dut.10.240.183.254: set verbose 1
05/05/2021 23:26:56 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:26:56 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions vf id 1 / end
05/05/2021 23:26:56 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:26:56 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions vf id 1 / end
05/05/2021 23:26:57 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:26:57 dut.10.240.183.254: flow list 0
05/05/2021 23:26:57 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES PPPOE_PROTO_ID => VF
05/05/2021 23:26:57 dut.10.240.183.254: start
05/05/2021 23:26:57 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:27:02 dut.10.240.183.254: stop
05/05/2021 23:27:02 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:27:02 dut.10.240.183.254: start
05/05/2021 23:27:02 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:27:07 dut.10.240.183.254: stop
05/05/2021 23:27:07 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:27:07 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:27:07 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:27:07 dut.10.240.183.254: flow list 0
05/05/2021 23:27:08 dut.10.240.183.254:
05/05/2021 23:27:08 dut.10.240.183.254: start
05/05/2021 23:27:08 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:27:13 dut.10.240.183.254: stop
05/05/2021 23:27:13 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:27:13 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv4_pay_session_id_proto_id Result PASSED:
05/05/2021 23:27:13 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:27:15 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:27:20 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv4_tcp_pay Begin
05/05/2021 23:27:20 dut.10.240.183.254:
05/05/2021 23:27:20 tester:
05/05/2021 23:27:20 dut.10.240.183.254: rmmod ice
05/05/2021 23:27:24 dut.10.240.183.254:
05/05/2021 23:27:24 dut.10.240.183.254: modprobe ice
05/05/2021 23:27:27 dut.10.240.183.254:
05/05/2021 23:27:27 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:27:27 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:27:27 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:27:27 dut.10.240.183.254:
05/05/2021 23:27:30 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:27:30 dut.10.240.183.254:
05/05/2021 23:27:41 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:27:49 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:27:49 dut.10.240.183.254: set portlist 1
05/05/2021 23:27:49 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:27:49 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:27:49 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:27:49 dut.10.240.183.254: set verbose 1
05/05/2021 23:27:49 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:27:49 dut.10.240.183.254: flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:27:49 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:27:49 dut.10.240.183.254: flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:27:49 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:27:49 dut.10.240.183.254: flow list 0
05/05/2021 23:27:50 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES IPV4 TCP => VF
05/05/2021 23:27:50 dut.10.240.183.254: start
05/05/2021 23:27:50 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:27:55 dut.10.240.183.254: stop
05/05/2021 23:27:55 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:27:55 dut.10.240.183.254: start
05/05/2021 23:27:55 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:28:00 dut.10.240.183.254: stop
05/05/2021 23:28:00 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:28:00 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:28:00 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:28:00 dut.10.240.183.254: flow list 0
05/05/2021 23:28:00 dut.10.240.183.254:
05/05/2021 23:28:00 dut.10.240.183.254: start
05/05/2021 23:28:00 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:28:05 dut.10.240.183.254: stop
05/05/2021 23:28:06 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:28:06 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv4_tcp_pay Result PASSED:
05/05/2021 23:28:06 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:28:08 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:28:13 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port Begin
05/05/2021 23:28:13 dut.10.240.183.254:
05/05/2021 23:28:13 tester:
05/05/2021 23:28:13 dut.10.240.183.254: rmmod ice
05/05/2021 23:28:16 dut.10.240.183.254:
05/05/2021 23:28:16 dut.10.240.183.254: modprobe ice
05/05/2021 23:28:20 dut.10.240.183.254:
05/05/2021 23:28:20 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:28:20 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:28:20 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:28:20 dut.10.240.183.254:
05/05/2021 23:28:22 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:28:22 dut.10.240.183.254:
05/05/2021 23:28:33 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:28:41 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:28:41 dut.10.240.183.254: set portlist 1
05/05/2021 23:28:42 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:28:42 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:28:42 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:28:42 dut.10.240.183.254: set verbose 1
05/05/2021 23:28:42 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:28:42 dut.10.240.183.254: flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions vf id 1 / end
05/05/2021 23:28:42 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:28:42 dut.10.240.183.254: flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions vf id 1 / end
05/05/2021 23:28:42 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:28:42 dut.10.240.183.254: flow list 0
05/05/2021 23:28:42 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES IPV4 TCP => VF
05/05/2021 23:28:42 dut.10.240.183.254: start
05/05/2021 23:28:42 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:28:47 dut.10.240.183.254: stop
05/05/2021 23:28:47 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:28:47 dut.10.240.183.254: start
05/05/2021 23:28:48 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:28:53 dut.10.240.183.254: stop
05/05/2021 23:28:53 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:28:53 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:28:53 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:28:53 dut.10.240.183.254: flow list 0
05/05/2021 23:28:53 dut.10.240.183.254:
05/05/2021 23:28:53 dut.10.240.183.254: start
05/05/2021 23:28:53 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:28:58 dut.10.240.183.254: stop
05/05/2021 23:28:58 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:28:58 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port Result PASSED:
05/05/2021 23:28:58 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:29:00 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:29:05 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv4_udp_pay Begin
05/05/2021 23:29:05 dut.10.240.183.254:
05/05/2021 23:29:06 tester:
05/05/2021 23:29:06 dut.10.240.183.254: rmmod ice
05/05/2021 23:29:09 dut.10.240.183.254:
05/05/2021 23:29:09 dut.10.240.183.254: modprobe ice
05/05/2021 23:29:12 dut.10.240.183.254:
05/05/2021 23:29:12 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:29:12 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:29:12 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:29:12 dut.10.240.183.254:
05/05/2021 23:29:15 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:29:15 dut.10.240.183.254:
05/05/2021 23:29:26 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:29:34 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:29:34 dut.10.240.183.254: set portlist 1
05/05/2021 23:29:34 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:29:34 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:29:34 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:29:34 dut.10.240.183.254: set verbose 1
05/05/2021 23:29:34 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:29:34 dut.10.240.183.254: flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:29:34 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:29:34 dut.10.240.183.254: flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:29:35 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:29:35 dut.10.240.183.254: flow list 0
05/05/2021 23:29:35 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES IPV4 UDP => VF
05/05/2021 23:29:35 dut.10.240.183.254: start
05/05/2021 23:29:35 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:29:40 dut.10.240.183.254: stop
05/05/2021 23:29:40 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:29:40 dut.10.240.183.254: start
05/05/2021 23:29:40 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:29:45 dut.10.240.183.254: stop
05/05/2021 23:29:45 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:29:45 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:29:45 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:29:45 dut.10.240.183.254: flow list 0
05/05/2021 23:29:45 dut.10.240.183.254:
05/05/2021 23:29:45 dut.10.240.183.254: start
05/05/2021 23:29:45 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:29:51 dut.10.240.183.254: stop
05/05/2021 23:29:51 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:29:51 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv4_udp_pay Result PASSED:
05/05/2021 23:29:51 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:29:53 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:29:58 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port Begin
05/05/2021 23:29:58 dut.10.240.183.254:
05/05/2021 23:29:58 tester:
05/05/2021 23:29:58 dut.10.240.183.254: rmmod ice
05/05/2021 23:30:01 dut.10.240.183.254:
05/05/2021 23:30:01 dut.10.240.183.254: modprobe ice
05/05/2021 23:30:05 dut.10.240.183.254:
05/05/2021 23:30:05 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:30:05 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:30:05 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:30:05 dut.10.240.183.254:
05/05/2021 23:30:07 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:30:07 dut.10.240.183.254:
05/05/2021 23:30:18 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:30:26 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:30:26 dut.10.240.183.254: set portlist 1
05/05/2021 23:30:26 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:30:26 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:30:26 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:30:26 dut.10.240.183.254: set verbose 1
05/05/2021 23:30:26 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:30:26 dut.10.240.183.254: flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp / end actions vf id 1 / end
05/05/2021 23:30:27 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:30:27 dut.10.240.183.254: flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp / end actions vf id 1 / end
05/05/2021 23:30:27 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:30:27 dut.10.240.183.254: flow list 0
05/05/2021 23:30:27 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES IPV4 UDP => VF
05/05/2021 23:30:27 dut.10.240.183.254: start
05/05/2021 23:30:27 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:30:32 dut.10.240.183.254: stop
05/05/2021 23:30:32 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:30:32 dut.10.240.183.254: start
05/05/2021 23:30:32 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:30:38 dut.10.240.183.254: stop
05/05/2021 23:30:38 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:30:38 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:30:38 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:30:38 dut.10.240.183.254: flow list 0
05/05/2021 23:30:38 dut.10.240.183.254:
05/05/2021 23:30:38 dut.10.240.183.254: start
05/05/2021 23:30:38 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:30:43 dut.10.240.183.254: stop
05/05/2021 23:30:43 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:30:43 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port Result PASSED:
05/05/2021 23:30:43 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:30:45 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:30:50 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv6_pay_ip_address Begin
05/05/2021 23:30:50 dut.10.240.183.254:
05/05/2021 23:30:50 tester:
05/05/2021 23:30:50 dut.10.240.183.254: rmmod ice
05/05/2021 23:30:54 dut.10.240.183.254:
05/05/2021 23:30:54 dut.10.240.183.254: modprobe ice
05/05/2021 23:30:57 dut.10.240.183.254:
05/05/2021 23:30:57 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:30:57 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:30:57 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:30:57 dut.10.240.183.254:
05/05/2021 23:31:00 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:31:00 dut.10.240.183.254:
05/05/2021 23:31:11 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:31:19 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:31:19 dut.10.240.183.254: set portlist 1
05/05/2021 23:31:19 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:31:19 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:31:19 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:31:19 dut.10.240.183.254: set verbose 1
05/05/2021 23:31:19 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:31:19 dut.10.240.183.254: flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / end actions vf id 1 / end
05/05/2021 23:31:19 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:31:19 dut.10.240.183.254: flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / end actions vf id 1 / end
05/05/2021 23:31:20 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:31:20 dut.10.240.183.254: flow list 0
05/05/2021 23:31:20 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES IPV6 => VF
05/05/2021 23:31:20 dut.10.240.183.254: start
05/05/2021 23:31:20 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:31:25 dut.10.240.183.254: stop
05/05/2021 23:31:25 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:31:25 dut.10.240.183.254: start
05/05/2021 23:31:25 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:31:30 dut.10.240.183.254: stop
05/05/2021 23:31:30 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:31:30 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:31:30 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:31:30 dut.10.240.183.254: flow list 0
05/05/2021 23:31:30 dut.10.240.183.254:
05/05/2021 23:31:30 dut.10.240.183.254: start
05/05/2021 23:31:30 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:31:35 dut.10.240.183.254: stop
05/05/2021 23:31:36 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:31:36 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv6_pay_ip_address Result PASSED:
05/05/2021 23:31:36 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:31:38 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:31:43 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv6_pay_session_id_proto_id Begin
05/05/2021 23:31:43 dut.10.240.183.254:
05/05/2021 23:31:43 tester:
05/05/2021 23:31:43 dut.10.240.183.254: rmmod ice
05/05/2021 23:31:46 dut.10.240.183.254:
05/05/2021 23:31:46 dut.10.240.183.254: modprobe ice
05/05/2021 23:31:50 dut.10.240.183.254:
05/05/2021 23:31:50 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:31:50 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:31:50 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:31:50 dut.10.240.183.254:
05/05/2021 23:31:52 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:31:52 dut.10.240.183.254:
05/05/2021 23:32:03 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:32:11 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:32:11 dut.10.240.183.254: set portlist 1
05/05/2021 23:32:11 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:32:11 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:32:12 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:32:12 dut.10.240.183.254: set verbose 1
05/05/2021 23:32:12 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:32:12 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions vf id 1 / end
05/05/2021 23:32:12 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:32:12 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions vf id 1 / end
05/05/2021 23:32:12 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:32:12 dut.10.240.183.254: flow list 0
05/05/2021 23:32:12 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES PPPOE_PROTO_ID => VF
05/05/2021 23:32:12 dut.10.240.183.254: start
05/05/2021 23:32:12 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:32:17 dut.10.240.183.254: stop
05/05/2021 23:32:17 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:32:17 dut.10.240.183.254: start
05/05/2021 23:32:18 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:32:23 dut.10.240.183.254: stop
05/05/2021 23:32:23 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:32:23 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:32:23 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:32:23 dut.10.240.183.254: flow list 0
05/05/2021 23:32:23 dut.10.240.183.254:
05/05/2021 23:32:23 dut.10.240.183.254: start
05/05/2021 23:32:23 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:32:28 dut.10.240.183.254: stop
05/05/2021 23:32:28 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:32:28 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv6_pay_session_id_proto_id Result PASSED:
05/05/2021 23:32:28 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:32:30 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:32:35 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv6_tcp_pay Begin
05/05/2021 23:32:35 dut.10.240.183.254:
05/05/2021 23:32:36 tester:
05/05/2021 23:32:36 dut.10.240.183.254: rmmod ice
05/05/2021 23:32:39 dut.10.240.183.254:
05/05/2021 23:32:39 dut.10.240.183.254: modprobe ice
05/05/2021 23:32:42 dut.10.240.183.254:
05/05/2021 23:32:42 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:32:42 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:32:42 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:32:43 dut.10.240.183.254:
05/05/2021 23:32:45 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:32:45 dut.10.240.183.254:
05/05/2021 23:32:56 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:33:04 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:33:04 dut.10.240.183.254: set portlist 1
05/05/2021 23:33:04 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:33:04 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:33:04 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:33:04 dut.10.240.183.254: set verbose 1
05/05/2021 23:33:04 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:33:04 dut.10.240.183.254: flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:33:04 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:33:04 dut.10.240.183.254: flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:33:05 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:33:05 dut.10.240.183.254: flow list 0
05/05/2021 23:33:05 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES IPV6 TCP => VF
05/05/2021 23:33:05 dut.10.240.183.254: start
05/05/2021 23:33:05 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:33:10 dut.10.240.183.254: stop
05/05/2021 23:33:10 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:33:10 dut.10.240.183.254: start
05/05/2021 23:33:10 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:33:15 dut.10.240.183.254: stop
05/05/2021 23:33:15 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:33:15 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:33:15 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:33:15 dut.10.240.183.254: flow list 0
05/05/2021 23:33:15 dut.10.240.183.254:
05/05/2021 23:33:15 dut.10.240.183.254: start
05/05/2021 23:33:16 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:33:21 dut.10.240.183.254: stop
05/05/2021 23:33:21 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:33:21 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv6_tcp_pay Result PASSED:
05/05/2021 23:33:21 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:33:23 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:33:28 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port Begin
05/05/2021 23:33:28 dut.10.240.183.254:
05/05/2021 23:33:28 tester:
05/05/2021 23:33:28 dut.10.240.183.254: rmmod ice
05/05/2021 23:33:32 dut.10.240.183.254:
05/05/2021 23:33:32 dut.10.240.183.254: modprobe ice
05/05/2021 23:33:35 dut.10.240.183.254:
05/05/2021 23:33:35 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:33:35 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:33:35 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:33:35 dut.10.240.183.254:
05/05/2021 23:33:38 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:33:38 dut.10.240.183.254:
05/05/2021 23:33:49 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:33:57 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:33:57 dut.10.240.183.254: set portlist 1
05/05/2021 23:33:57 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:33:57 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:33:57 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:33:57 dut.10.240.183.254: set verbose 1
05/05/2021 23:33:57 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:33:57 dut.10.240.183.254: flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / tcp / end actions vf id 1 / end
05/05/2021 23:33:57 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:33:57 dut.10.240.183.254: flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / tcp / end actions vf id 1 / end
05/05/2021 23:33:57 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:33:57 dut.10.240.183.254: flow list 0
05/05/2021 23:33:57 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES IPV6 TCP => VF
05/05/2021 23:33:57 dut.10.240.183.254: start
05/05/2021 23:33:58 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:34:03 dut.10.240.183.254: stop
05/05/2021 23:34:03 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:34:03 dut.10.240.183.254: start
05/05/2021 23:34:03 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:34:08 dut.10.240.183.254: stop
05/05/2021 23:34:08 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:34:08 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:34:08 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:34:08 dut.10.240.183.254: flow list 0
05/05/2021 23:34:08 dut.10.240.183.254:
05/05/2021 23:34:08 dut.10.240.183.254: start
05/05/2021 23:34:08 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:34:13 dut.10.240.183.254: stop
05/05/2021 23:34:13 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:34:13 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port Result PASSED:
05/05/2021 23:34:13 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:34:16 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:34:21 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv6_udp_pay Begin
05/05/2021 23:34:21 dut.10.240.183.254:
05/05/2021 23:34:21 tester:
05/05/2021 23:34:21 dut.10.240.183.254: rmmod ice
05/05/2021 23:34:24 dut.10.240.183.254:
05/05/2021 23:34:24 dut.10.240.183.254: modprobe ice
05/05/2021 23:34:28 dut.10.240.183.254:
05/05/2021 23:34:28 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:34:28 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:34:28 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:34:28 dut.10.240.183.254:
05/05/2021 23:34:30 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:34:30 dut.10.240.183.254:
05/05/2021 23:34:41 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:34:49 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:34:49 dut.10.240.183.254: set portlist 1
05/05/2021 23:34:49 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:34:49 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:34:49 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:34:49 dut.10.240.183.254: set verbose 1
05/05/2021 23:34:49 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:34:49 dut.10.240.183.254: flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:34:50 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:34:50 dut.10.240.183.254: flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions vf id 1 / end
05/05/2021 23:34:50 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:34:50 dut.10.240.183.254: flow list 0
05/05/2021 23:34:50 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES IPV6 UDP => VF
05/05/2021 23:34:50 dut.10.240.183.254: start
05/05/2021 23:34:50 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:34:55 dut.10.240.183.254: stop
05/05/2021 23:34:55 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:34:55 dut.10.240.183.254: start
05/05/2021 23:34:55 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:35:00 dut.10.240.183.254: stop
05/05/2021 23:35:01 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:35:01 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:35:01 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:35:01 dut.10.240.183.254: flow list 0
05/05/2021 23:35:01 dut.10.240.183.254:
05/05/2021 23:35:01 dut.10.240.183.254: start
05/05/2021 23:35:01 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:35:06 dut.10.240.183.254: stop
05/05/2021 23:35:06 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:35:06 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv6_udp_pay Result PASSED:
05/05/2021 23:35:06 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:35:08 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:35:13 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port Begin
05/05/2021 23:35:13 dut.10.240.183.254:
05/05/2021 23:35:13 tester:
05/05/2021 23:35:13 dut.10.240.183.254: rmmod ice
05/05/2021 23:35:17 dut.10.240.183.254:
05/05/2021 23:35:17 dut.10.240.183.254: modprobe ice
05/05/2021 23:35:20 dut.10.240.183.254:
05/05/2021 23:35:20 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:35:20 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:35:20 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:35:20 dut.10.240.183.254:
05/05/2021 23:35:23 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:35:23 dut.10.240.183.254:
05/05/2021 23:35:34 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:35:42 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:35:42 dut.10.240.183.254: set portlist 1
05/05/2021 23:35:42 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:35:42 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:35:42 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:35:42 dut.10.240.183.254: set verbose 1
05/05/2021 23:35:42 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:35:42 dut.10.240.183.254: flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / udp / end actions vf id 1 / end
05/05/2021 23:35:42 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:35:42 dut.10.240.183.254: flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / udp / end actions vf id 1 / end
05/05/2021 23:35:42 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:35:42 dut.10.240.183.254: flow list 0
05/05/2021 23:35:43 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES IPV6 UDP => VF
05/05/2021 23:35:43 dut.10.240.183.254: start
05/05/2021 23:35:43 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:35:48 dut.10.240.183.254: stop
05/05/2021 23:35:48 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:35:48 dut.10.240.183.254: start
05/05/2021 23:35:48 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:35:53 dut.10.240.183.254: stop
05/05/2021 23:35:53 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:35:53 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:35:53 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:35:53 dut.10.240.183.254: flow list 0
05/05/2021 23:35:53 dut.10.240.183.254:
05/05/2021 23:35:53 dut.10.240.183.254: start
05/05/2021 23:35:53 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:35:58 dut.10.240.183.254: stop
05/05/2021 23:35:59 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:35:59 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port Result PASSED:
05/05/2021 23:35:59 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:36:01 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:36:06 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_lcp_pay Begin
05/05/2021 23:36:06 dut.10.240.183.254:
05/05/2021 23:36:06 tester:
05/05/2021 23:36:06 dut.10.240.183.254: rmmod ice
05/05/2021 23:36:09 dut.10.240.183.254:
05/05/2021 23:36:09 dut.10.240.183.254: modprobe ice
05/05/2021 23:36:13 dut.10.240.183.254:
05/05/2021 23:36:13 dut.10.240.183.254: ethtool -i ens865f0
05/05/2021 23:36:13 dut.10.240.183.254: driver: ice
version: 1.6.0_rc26_4_g2fb2c79e_dirty
firmware-version: 3.00 0x80007216 1.2928.0
expansion-rom-version:
bus-info: 0000:03:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
05/05/2021 23:36:13 dut.10.240.183.254: ethtool --set-priv-flags ens865f0 vf-vlan-prune-disable on
05/05/2021 23:36:13 dut.10.240.183.254:
05/05/2021 23:36:15 dut.10.240.183.254: ip link set ens865f0 vf 0 trust on
05/05/2021 23:36:15 dut.10.240.183.254:
05/05/2021 23:36:26 dut.10.240.183.254: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:03:01.0,cap=dcf -a 0000:03:01.1 --file-prefix=dpdk_31044_20210505222204 -- -i
05/05/2021 23:36:34 dut.10.240.183.254: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_31044_20210505222204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:03:01.0
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:03:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:03:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.30.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:03:01.1 (socket 0)
TELEMETRY: No legacy callbacks, legacy socket not created
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: 92:7A:16:87:76:A7
Configuring Port 1 (socket 0)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]
Port 1: link state change event
Port 1: link state change event
Port 1: 2A:E5:E9:17:34:7E
Checking link statuses...
Done
05/05/2021 23:36:34 dut.10.240.183.254: set portlist 1
05/05/2021 23:36:35 dut.10.240.183.254:
previous number of forwarding ports 2 - changed to number of configured ports 1
Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.
05/05/2021 23:36:35 dut.10.240.183.254: set fwd rxonly
05/05/2021 23:36:35 dut.10.240.183.254:
Set rxonly packet forwarding mode
05/05/2021 23:36:35 dut.10.240.183.254: set verbose 1
05/05/2021 23:36:35 dut.10.240.183.254:
Change verbose level from 0 to 1
05/05/2021 23:36:35 dut.10.240.183.254: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions vf id 1 / end
05/05/2021 23:36:35 dut.10.240.183.254:
Flow rule validated
05/05/2021 23:36:35 dut.10.240.183.254: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions vf id 1 / end
05/05/2021 23:36:35 dut.10.240.183.254:
Flow rule #0 created
05/05/2021 23:36:35 dut.10.240.183.254: flow list 0
05/05/2021 23:36:35 dut.10.240.183.254:
ID Group Prio Attr Rule
0 0 0 i-- ETH VLAN PPPOES PPPOE_PROTO_ID => VF
05/05/2021 23:36:35 dut.10.240.183.254: start
05/05/2021 23:36:35 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:36:40 dut.10.240.183.254: stop
05/05/2021 23:36:40 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- Forward statistics for port 1 ----------------------
RX-packets: 1 RX-dropped: 0 RX-total: 1
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.
05/05/2021 23:36:40 dut.10.240.183.254: start
05/05/2021 23:36:41 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:36:46 dut.10.240.183.254: stop
05/05/2021 23:36:46 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:36:46 dut.10.240.183.254: flow destroy 0 rule 0
05/05/2021 23:36:46 dut.10.240.183.254:
Flow rule #0 destroyed
05/05/2021 23:36:46 dut.10.240.183.254: flow list 0
05/05/2021 23:36:46 dut.10.240.183.254:
05/05/2021 23:36:46 dut.10.240.183.254: start
05/05/2021 23:36:46 dut.10.240.183.254:
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
rxonly packet forwarding packets/burst=32
nb forwarding cores=1 - nb forwarding ports=1
port 0: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x0
RX queue: 0
RX desc=0 - RX free threshold=32
RX threshold registers: pthresh=8 hthresh=8 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=0 - TX free threshold=32
TX threshold registers: pthresh=32 hthresh=0 wthresh=0
TX offloads=0x0 - TX RS bit threshold=32
port 1: RX queue number: 1 Tx queue number: 1
Rx offloads=0x0 Tx offloads=0x10000
RX queue: 0
RX desc=512 - RX free threshold=32
RX threshold registers: pthresh=0 hthresh=0 wthresh=0
RX Offloads=0x0
TX queue: 0
TX desc=512 - TX free threshold=32
TX threshold registers: pthresh=0 hthresh=0 wthresh=0
TX offloads=0x10000 - TX RS bit threshold=32
05/05/2021 23:36:51 dut.10.240.183.254: stop
05/05/2021 23:36:51 dut.10.240.183.254:
Telling cores to ...
Waiting for lcores to finish...
---------------------- 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: 0 RX-dropped: 0 RX-total: 0
TX-packets: 0 TX-dropped: 0 TX-total: 0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done.
05/05/2021 23:36:51 CVLDCFSwitchFilterPPPOETest: Test Case test_mac_vlan_pppoe_lcp_pay Result PASSED:
05/05/2021 23:36:51 dut.10.240.183.254: kill_all: called by dut and prefix list has value.
05/05/2021 23:36:53 dut.10.240.183.254: Killed
[PEXPECT]#
05/05/2021 23:36:58 dts:
TEST SUITE ENDED: CVLDCFSwitchFilterPPPOETest
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V1] tests/cvl_dcf_switch_filter: set vf vlan for dcf mode
2021-05-06 4:07 ` Sun, QinX
@ 2021-05-07 6:32 ` Tu, Lijuan
0 siblings, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2021-05-07 6:32 UTC (permalink / raw)
To: Sun, QinX, dts
> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Sun, QinX
> Sent: 2021年5月6日 12:08
> To: dts@dpdk.org
> Subject: Re: [dts] [PATCH V1] tests/cvl_dcf_switch_filter: set vf vlan for dcf
> mode
>
> > -----Original Message-----
> > From: Sun, QinX <qinx.sun@intel.com>
> > Sent: Saturday, May 1, 2021 12:57 AM
> > To: dts@dpdk.org
> > Cc: Sun, QinX <qinx.sun@intel.com>
> > Subject: [dts] [PATCH V1] tests/cvl_dcf_switch_filter: set vf vlan for dcf mode
>
> Tested-by: Qin Sun <qinx.sun@intel.com>
Applied
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-05-07 6:32 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-30 16:57 [dts] [PATCH V1] tests/cvl_dcf_switch_filter: set vf vlan for dcf mode Qin Sun
2021-05-06 4:07 ` Sun, QinX
2021-05-07 6:32 ` Tu, Lijuan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).