test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1 0/2] remove replace pkg code
@ 2021-03-30  8:44 Zhimin Huang
  2021-03-30  8:44 ` [dts] [PATCH V1 1/2] tests/cvl_dcf_acl_filter: " Zhimin Huang
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Zhimin Huang @ 2021-03-30  8:44 UTC (permalink / raw)
  To: dts; +Cc: Zhimin Huang

*.These suites support os default, comms, wireless pkg after tested,
so remove replace pkg code in script.

Zhimin Huang (2):
  tests/cvl_dcf_acl_filter:remove replace pkg code
  tests/cvl_limit_value_test:remove replace pkg code

 test_plans/cvl_dcf_acl_filter_test_plan.rst   |  6 ++----
 test_plans/cvl_limit_value_test_test_plan.rst |  5 +++--
 tests/TestSuite_cvl_dcf_acl_filter.py         | 16 ----------------
 tests/TestSuite_cvl_limit_value_test.py       | 15 ---------------
 4 files changed, 5 insertions(+), 37 deletions(-)

-- 
1.8.3.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [dts] [PATCH V1 1/2] tests/cvl_dcf_acl_filter: remove replace pkg code
  2021-03-30  8:44 [dts] [PATCH V1 0/2] remove replace pkg code Zhimin Huang
@ 2021-03-30  8:44 ` Zhimin Huang
  2021-03-30 10:04   ` Huang, ZhiminX
  2021-03-30  8:44 ` [dts] [PATCH V1 2/2] tests/cvl_limit_value_test: " Zhimin Huang
  2021-04-07  1:05 ` [dts] [PATCH V1 0/2] " Tu, Lijuan
  2 siblings, 1 reply; 6+ messages in thread
From: Zhimin Huang @ 2021-03-30  8:44 UTC (permalink / raw)
  To: dts; +Cc: Zhimin Huang

*.update testplan pkg support and remove replace pkg in script

Signed-off-by: Zhimin Huang <zhiminx.huang@intel.com>
---
 test_plans/cvl_dcf_acl_filter_test_plan.rst |  6 ++----
 tests/TestSuite_cvl_dcf_acl_filter.py       | 16 ----------------
 2 files changed, 2 insertions(+), 20 deletions(-)

diff --git a/test_plans/cvl_dcf_acl_filter_test_plan.rst b/test_plans/cvl_dcf_acl_filter_test_plan.rst
index e9267a5..cdccb69 100644
--- a/test_plans/cvl_dcf_acl_filter_test_plan.rst
+++ b/test_plans/cvl_dcf_acl_filter_test_plan.rst
@@ -57,11 +57,9 @@ Prerequisites
    dpdk: http://dpdk.org/git/dpdk
    scapy: http://www.secdev.org/projects/scapy/
 
-3. Copy specific ice package to /lib/firmware/updates/intel/ice/ddp/ice.pkg,
-   then load driver::
+3. Support ice pkg::
 
-    rmmod ice
-    insmod ice.ko
+    os default/comms/wireless
 
 4. Compile DPDK::
 
diff --git a/tests/TestSuite_cvl_dcf_acl_filter.py b/tests/TestSuite_cvl_dcf_acl_filter.py
index 826da9c..1d516fc 100644
--- a/tests/TestSuite_cvl_dcf_acl_filter.py
+++ b/tests/TestSuite_cvl_dcf_acl_filter.py
@@ -749,12 +749,6 @@ class CVLDCFACLFilterTest(TestCase):
         self.testpmd_status = "close"
         #bind pf to kernel
         self.bind_nics_driver(self.dut_ports, driver="ice")
-        #move comms package to package folder
-        self.suite_config = rfc.get_suite_config(self)
-        comms_package_location = self.suite_config["comms_package_file_location"]
-        package_location = self.suite_config["package_file_location"]
-        self.dut.send_expect("cp %s %s" % (comms_package_location, package_location), "# ")
-        self.re_load_ice_driver()
         #set vf driver
         self.vf_driver = 'vfio-pci'
         self.dut.send_expect("modprobe uio", "# ")
@@ -784,16 +778,6 @@ class CVLDCFACLFilterTest(TestCase):
             port.bind_driver(self.vf_driver)
         time.sleep(15)
 
-    def re_load_ice_driver(self):
-        """
-        remove and reload the ice driver
-        """
-        ice_driver_file_location = self.suite_config["ice_driver_file_location"]
-        self.dut.send_expect("rmmod ice", "# ", 60)
-        self.dut.send_expect("insmod %s" % ice_driver_file_location, "# ", 60)
-        self.dut.send_expect("ifconfig %s up" % self.pf0_intf, "# ", 15)
-        self.dut.send_expect("ifconfig %s up" % self.tester_iface0, "# ", 15)
-
     def set_up(self):
         """
         Run before each test case.
-- 
1.8.3.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [dts] [PATCH V1 2/2] tests/cvl_limit_value_test: remove replace pkg code
  2021-03-30  8:44 [dts] [PATCH V1 0/2] remove replace pkg code Zhimin Huang
  2021-03-30  8:44 ` [dts] [PATCH V1 1/2] tests/cvl_dcf_acl_filter: " Zhimin Huang
@ 2021-03-30  8:44 ` Zhimin Huang
  2021-03-30 10:07   ` Huang, ZhiminX
  2021-04-07  1:05 ` [dts] [PATCH V1 0/2] " Tu, Lijuan
  2 siblings, 1 reply; 6+ messages in thread
From: Zhimin Huang @ 2021-03-30  8:44 UTC (permalink / raw)
  To: dts; +Cc: Zhimin Huang

*.update test plan support pkg and remove replace pkg in script

Signed-off-by: Zhimin Huang <zhiminx.huang@intel.com>
---
 test_plans/cvl_limit_value_test_test_plan.rst |  5 +++--
 tests/TestSuite_cvl_limit_value_test.py       | 15 ---------------
 2 files changed, 3 insertions(+), 17 deletions(-)

diff --git a/test_plans/cvl_limit_value_test_test_plan.rst b/test_plans/cvl_limit_value_test_test_plan.rst
index 8c8402e..242eb9a 100644
--- a/test_plans/cvl_limit_value_test_test_plan.rst
+++ b/test_plans/cvl_limit_value_test_test_plan.rst
@@ -66,8 +66,9 @@ Prerequisites
    DPDK: http://dpdk.org/git/dpdk
    scapy: http://www.secdev.org/projects/scapy/
 
-3. Copy specific ice package to /lib/firmware/intel/ice/ddp/ice.pkg
-   Then reboot server, and compile DPDK
+3. Support ice pkg::
+
+    os default/comms/wireless
 
 4. Generate 2 VFs on each PF and set mac address for each VF::
 
diff --git a/tests/TestSuite_cvl_limit_value_test.py b/tests/TestSuite_cvl_limit_value_test.py
index 77ce016..b806474 100644
--- a/tests/TestSuite_cvl_limit_value_test.py
+++ b/tests/TestSuite_cvl_limit_value_test.py
@@ -189,15 +189,6 @@ class TestCvlLimitValue(TestCase):
         self.dut.destroy_sriov_vfs_by_port(self.dut_ports[0])
         self.dut.destroy_sriov_vfs_by_port(self.dut_ports[1])
 
-    def re_load_ice_driver(self):
-        """
-        remove and reload the ice driver
-        """
-        ice_driver_file_location = self.suite_config["ice_driver_file_location"]
-        self.dut.send_expect("rmmod ice", "# ", 15)
-        self.dut.send_expect("insmod %s" % ice_driver_file_location, "# ", 60)
-        time.sleep(5)
-
     def config_testpmd(self):
         self.pmd_output.execute_cmd("set fwd rxonly")
         self.pmd_output.execute_cmd("set verbose 1")
@@ -813,12 +804,6 @@ class TestCvlLimitValue(TestCase):
     def test_max_rule_number(self):
         #bind pf to kernel
         self.bind_nics_driver(self.dut_ports, driver="ice")
-        #move comms package to package folder
-        self.suite_config = rfc.get_suite_config(self)
-        comms_package_location = self.suite_config["comms_package_file_location"]
-        package_location = self.suite_config["package_file_location"]
-        self.dut.send_expect("cp %s %s" % (comms_package_location, package_location), "# ")
-        self.re_load_ice_driver()
         #set vf driver
         self.vf_driver = 'vfio-pci'
         self.dut.send_expect('modprobe vfio-pci', '#')
-- 
1.8.3.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dts] [PATCH V1 1/2] tests/cvl_dcf_acl_filter: remove replace pkg code
  2021-03-30  8:44 ` [dts] [PATCH V1 1/2] tests/cvl_dcf_acl_filter: " Zhimin Huang
@ 2021-03-30 10:04   ` Huang, ZhiminX
  0 siblings, 0 replies; 6+ messages in thread
From: Huang, ZhiminX @ 2021-03-30 10:04 UTC (permalink / raw)
  To: dts

[-- Attachment #1: Type: text/plain, Size: 330 bytes --]

> -----Original Message-----
> From: Huang, ZhiminX <zhiminx.huang@intel.com>
> Sent: Tuesday, March 30, 2021 4:45 PM
> To: dts@dpdk.org
> Cc: Huang, ZhiminX <zhiminx.huang@intel.com>
> Subject: [dts] [PATCH V1 1/2] tests/cvl_dcf_acl_filter: remove replace pkg
> code
> 
Tested-by: Huang Zhimin <zhiminx.huang@intel.com>

[-- Attachment #2: CVLDCFACLFilterTest.log --]
[-- Type: application/octet-stream, Size: 575574 bytes --]

26/03/2021 10:47:44                            dts: 
TEST SUITE : CVLDCFACLFilterTest
26/03/2021 10:47:44                            dts: NIC :        columbiaville_100g
26/03/2021 10:47:44             dut.10.240.183.133: 
26/03/2021 10:47:44                         tester: 
26/03/2021 10:47:44             dut.10.240.183.133: ifconfig enp1s0 up
26/03/2021 10:47:44             dut.10.240.183.133: enp1s0: ERROR while getting interface flags: No such device
26/03/2021 10:47:49             dut.10.240.183.133: modprobe uio
26/03/2021 10:47:49             dut.10.240.183.133: 
26/03/2021 10:47:49             dut.10.240.183.133: ethtool -i ens801f0
26/03/2021 10:47:49             dut.10.240.183.133: driver: ice
version: 1.5.0_rc37_7_gc94639c4
firmware-version: 2.50 0x80006b7a 1.2916.0
expansion-rom-version: 
bus-info: 0000:81:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
26/03/2021 10:47:52             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.0/vendor
26/03/2021 10:47:52             dut.10.240.183.133: 0x8086
26/03/2021 10:47:52             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.0/device
26/03/2021 10:47:52             dut.10.240.183.133: 0x1889
26/03/2021 10:47:52             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.0/vendor
26/03/2021 10:47:52             dut.10.240.183.133: 0x8086
26/03/2021 10:47:52             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.0/device
26/03/2021 10:47:52             dut.10.240.183.133: 0x1889
26/03/2021 10:47:52             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.1/vendor
26/03/2021 10:47:52             dut.10.240.183.133: 0x8086
26/03/2021 10:47:52             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.1/device
26/03/2021 10:47:52             dut.10.240.183.133: 0x1889
26/03/2021 10:47:52             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.1/vendor
26/03/2021 10:47:52             dut.10.240.183.133: 0x8086
26/03/2021 10:47:52             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.1/device
26/03/2021 10:47:53             dut.10.240.183.133: 0x1889
26/03/2021 10:47:53             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.2/vendor
26/03/2021 10:47:53             dut.10.240.183.133: 0x8086
26/03/2021 10:47:53             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.2/device
26/03/2021 10:47:53             dut.10.240.183.133: 0x1889
26/03/2021 10:47:53             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.2/vendor
26/03/2021 10:47:53             dut.10.240.183.133: 0x8086
26/03/2021 10:47:53             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.2/device
26/03/2021 10:47:53             dut.10.240.183.133: 0x1889
26/03/2021 10:47:53             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.3/vendor
26/03/2021 10:47:53             dut.10.240.183.133: 0x8086
26/03/2021 10:47:53             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.3/device
26/03/2021 10:47:53             dut.10.240.183.133: 0x1889
26/03/2021 10:47:53             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.3/vendor
26/03/2021 10:47:53             dut.10.240.183.133: 0x8086
26/03/2021 10:47:53             dut.10.240.183.133: cat /sys/bus/pci/devices/0000\:81\:01.3/device
26/03/2021 10:47:53             dut.10.240.183.133: 0x1889
26/03/2021 10:47:54             dut.10.240.183.133: ip link set ens801f0 vf 0 trust on
26/03/2021 10:47:54             dut.10.240.183.133: 
26/03/2021 10:47:54             dut.10.240.183.133: ip link set ens801f0 vf 1 mac 00:01:23:45:67:89
26/03/2021 10:47:54             dut.10.240.183.133: 
26/03/2021 10:48:14             dut.10.240.183.133: ifconfig enp1s0 up
26/03/2021 10:48:14             dut.10.240.183.133: enp1s0: ERROR while getting interface flags: No such device
26/03/2021 10:48:14            CVLDCFACLFilterTest: Test Case test_mac_ipv4 Begin
26/03/2021 10:48:14             dut.10.240.183.133: 
26/03/2021 10:48:14                         tester: 
26/03/2021 10:48:19             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i
26/03/2021 10:48:32             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
26/03/2021 10:48:32             dut.10.240.183.133: set portlist 1
26/03/2021 10:48:32             dut.10.240.183.133: 
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.

26/03/2021 10:48:32             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:48:32             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:48:32             dut.10.240.183.133: set verbose 1
26/03/2021 10:48:32             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:48:32             dut.10.240.183.133: start
26/03/2021 10:48:32             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:48:32             dut.10.240.183.133: flow flush 0
26/03/2021 10:48:32             dut.10.240.183.133: 
26/03/2021 10:48:32             dut.10.240.183.133: flow create 0 ingress pattern eth src spec 00:11:22:33:44:55 src mask 00:ff:ff:ff:ff:ff / ipv4 / end actions drop / end
26/03/2021 10:48:32             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:48:35             dut.10.240.183.133: 
26/03/2021 10:48:35             dut.10.240.183.133: stop
26/03/2021 10:48:35             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 6             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 6             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:48:35             dut.10.240.183.133: start
26/03/2021 10:48:35             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:48:37             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:66:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:66 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_FRAG  - l2_len=14 - l3_len=20 - l4_len=0 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:66:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:66 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:32:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=01:11:22:33:44:66 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_ICMP  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:48:37             dut.10.240.183.133: stop
26/03/2021 10:48:37             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:48:37             dut.10.240.183.133: start
26/03/2021 10:48:37             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:48:37             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:48:37             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:48:39             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_FRAG  - l2_len=14 - l3_len=20 - l4_len=0 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=01:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=02:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=FF:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=01:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_ICMP  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:48:39             dut.10.240.183.133: stop
26/03/2021 10:48:39             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:48:39             dut.10.240.183.133: start
26/03/2021 10:48:39             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:48:39             dut.10.240.183.133: flow flush 0
26/03/2021 10:48:39             dut.10.240.183.133: 
26/03/2021 10:48:39             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv4 / end actions vf id 1 / end
26/03/2021 10:48:40             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #0 created
26/03/2021 10:48:40             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 00:11:22:33:44:66 / ipv4 / end actions vf id 1 / end
26/03/2021 10:48:40             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #1 created
26/03/2021 10:48:40             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 00:11:22:33:66:55 / ipv4 / end actions vf id 1 / end
26/03/2021 10:48:40             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #2 created
26/03/2021 10:48:40             dut.10.240.183.133: flow create 0 ingress pattern eth dst spec 00:11:22:33:44:55 dst mask ff:ff:ff:ff:ff:00 / ipv4 / end actions drop / end
26/03/2021 10:48:40             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #3 created
26/03/2021 10:48:42             dut.10.240.183.133: 
26/03/2021 10:48:42             dut.10.240.183.133: stop
26/03/2021 10:48:42             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 2             RX-total: 2
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 2             RX-total: 2
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:48:42             dut.10.240.183.133: start
26/03/2021 10:48:43             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:48:45             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:11:22:33:66:55 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:48:45             dut.10.240.183.133: stop
26/03/2021 10:48:45             dut.10.240.183.133: 
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.
26/03/2021 10:48:45             dut.10.240.183.133: start
26/03/2021 10:48:45             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:48:45             dut.10.240.183.133: flow destroy 0 rule 3
26/03/2021 10:48:45             dut.10.240.183.133: 
Flow rule #3 destroyed
26/03/2021 10:48:47             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:11:22:33:44:55 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:11:22:33:44:66 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:48:47             dut.10.240.183.133: stop
26/03/2021 10:48:47             dut.10.240.183.133: 
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.
26/03/2021 10:48:47             dut.10.240.183.133: start
26/03/2021 10:48:47             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:48:47             dut.10.240.183.133: flow flush 0
26/03/2021 10:48:47             dut.10.240.183.133: 
26/03/2021 10:48:47             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.0 / end actions drop / end
26/03/2021 10:48:47             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:48:49             dut.10.240.183.133: 
26/03/2021 10:48:49             dut.10.240.183.133: stop
26/03/2021 10:48:50             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 6             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 6             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:48:50             dut.10.240.183.133: start
26/03/2021 10:48:50             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:48:52             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_FRAG  - l2_len=14 - l3_len=20 - l4_len=0 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_ICMP  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:48:52             dut.10.240.183.133: stop
26/03/2021 10:48:52             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:48:52             dut.10.240.183.133: start
26/03/2021 10:48:52             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:48:52             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:48:52             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:48:54             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_FRAG  - l2_len=14 - l3_len=20 - l4_len=0 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_ICMP  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:48:54             dut.10.240.183.133: stop
26/03/2021 10:48:54             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:48:54             dut.10.240.183.133: start
26/03/2021 10:48:54             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:48:54             dut.10.240.183.133: flow flush 0
26/03/2021 10:48:54             dut.10.240.183.133: 
26/03/2021 10:48:54             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 dst spec 192.168.0.2 dst mask 255.255.255.0 / end actions drop / end
26/03/2021 10:48:55             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:48:57             dut.10.240.183.133: 
26/03/2021 10:48:57             dut.10.240.183.133: stop
26/03/2021 10:48:57             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 6             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 6             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:48:57             dut.10.240.183.133: start
26/03/2021 10:48:57             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:48:59             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_FRAG  - l2_len=14 - l3_len=20 - l4_len=0 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_ICMP  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:48:59             dut.10.240.183.133: stop
26/03/2021 10:48:59             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:48:59             dut.10.240.183.133: start
26/03/2021 10:48:59             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:48:59             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:48:59             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:49:01             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_FRAG  - l2_len=14 - l3_len=20 - l4_len=0 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_ICMP  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:49:01             dut.10.240.183.133: stop
26/03/2021 10:49:01             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:49:01             dut.10.240.183.133: start
26/03/2021 10:49:01             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:01             dut.10.240.183.133: flow flush 0
26/03/2021 10:49:01             dut.10.240.183.133: 
26/03/2021 10:49:01             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 33:00:00:00:00:01 / ipv4 / end actions vf id 1 / end
26/03/2021 10:49:02             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #0 created
26/03/2021 10:49:02             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 33:00:00:00:00:02 / ipv4 / end actions vf id 1 / end
26/03/2021 10:49:02             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #1 created
26/03/2021 10:49:02             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 33:00:00:00:00:03 / ipv4 / end actions vf id 1 / end
26/03/2021 10:49:02             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #2 created
26/03/2021 10:49:02             dut.10.240.183.133: flow create 0 ingress pattern eth src spec 00:11:22:33:44:55 src mask ff:ff:ff:ff:ff:00 dst spec 33:00:00:00:00:02 dst mask ff:ff:ff:ff:ff:fe / ipv4 src spec 192.168.0.1 src mask 255.255.255.0 dst spec 192.168.0.2 dst mask 255.255.0.255 / end actions drop / end
26/03/2021 10:49:02             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #3 created
26/03/2021 10:49:04             dut.10.240.183.133: 
26/03/2021 10:49:04             dut.10.240.183.133: stop
26/03/2021 10:49:04             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 6             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 6             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:49:04             dut.10.240.183.133: start
26/03/2021 10:49:04             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:06             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:66:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_FRAG  - l2_len=14 - l3_len=20 - l4_len=0 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:01 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_ICMP  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:49:06             dut.10.240.183.133: stop
26/03/2021 10:49:06             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:49:06             dut.10.240.183.133: start
26/03/2021 10:49:06             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:06             dut.10.240.183.133: flow destroy 0 rule 3
26/03/2021 10:49:06             dut.10.240.183.133: 
Flow rule #3 destroyed
26/03/2021 10:49:09             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:1B - dst=33:00:00:00:00:02 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:1B - dst=33:00:00:00:00:02 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_FRAG  - l2_len=14 - l3_len=20 - l4_len=0 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:00 - dst=33:00:00:00:00:03 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:FF - dst=33:00:00:00:00:02 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:FF - dst=33:00:00:00:00:02 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:FF - dst=33:00:00:00:00:02 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_ICMP  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:49:09             dut.10.240.183.133: stop
26/03/2021 10:49:09             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:49:09             dut.10.240.183.133: start
26/03/2021 10:49:09             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:09            CVLDCFACLFilterTest: Test Case test_mac_ipv4 Result PASSED:
26/03/2021 10:49:09             dut.10.240.183.133: flow flush 0
26/03/2021 10:49:09             dut.10.240.183.133: 
26/03/2021 10:49:09             dut.10.240.183.133: clear port stats all
26/03/2021 10:49:09             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:49:09             dut.10.240.183.133: quit
26/03/2021 10:49:10             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:49:10             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:49:11             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:49:11             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:49:11             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:49:11             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:49:11            CVLDCFACLFilterTest: Test Case test_mac_ipv4_sctp Begin
26/03/2021 10:49:11             dut.10.240.183.133: 
26/03/2021 10:49:11                         tester: 
26/03/2021 10:49:16             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i
26/03/2021 10:49:29             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
26/03/2021 10:49:29             dut.10.240.183.133: set portlist 1
26/03/2021 10:49:29             dut.10.240.183.133: 
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.

26/03/2021 10:49:29             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:49:29             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:49:29             dut.10.240.183.133: set verbose 1
26/03/2021 10:49:29             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:49:29             dut.10.240.183.133: start
26/03/2021 10:49:29             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:29             dut.10.240.183.133: flow flush 0
26/03/2021 10:49:30             dut.10.240.183.133: 
26/03/2021 10:49:30             dut.10.240.183.133: flow create 0 ingress pattern eth src spec 00:11:22:33:44:55 src mask ff:ff:ff:ff:ff:fe / ipv4 / sctp / end actions drop / end
26/03/2021 10:49:30             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:49:32             dut.10.240.183.133: 
26/03/2021 10:49:32             dut.10.240.183.133: stop
26/03/2021 10:49:32             dut.10.240.183.133: 
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.
26/03/2021 10:49:32             dut.10.240.183.133: start
26/03/2021 10:49:32             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:34             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:57 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x86dd - length=96 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV6 L4_SCTP  - l2_len=14 - l3_len=40 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:49:34             dut.10.240.183.133: stop
26/03/2021 10:49:34             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 4              RX-dropped: 0             RX-total: 4
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 4              RX-dropped: 0             RX-total: 4
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:49:34             dut.10.240.183.133: start
26/03/2021 10:49:34             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:34             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:49:34             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:49:36             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:54 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:49:36             dut.10.240.183.133: stop
26/03/2021 10:49:36             dut.10.240.183.133: 
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.
26/03/2021 10:49:36             dut.10.240.183.133: start
26/03/2021 10:49:36             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:36             dut.10.240.183.133: flow flush 0
26/03/2021 10:49:36             dut.10.240.183.133: 
26/03/2021 10:49:36             dut.10.240.183.133: flow create 0 ingress pattern eth dst spec 00:01:23:45:67:89 dst mask ff:ff:ff:ff:ff:00 / ipv4 / sctp / end actions drop / end
26/03/2021 10:49:37             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:49:39             dut.10.240.183.133: 
26/03/2021 10:49:39             dut.10.240.183.133: stop
26/03/2021 10:49:39             dut.10.240.183.133: 
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.
26/03/2021 10:49:39             dut.10.240.183.133: start
26/03/2021 10:49:39             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:41             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:49:41             dut.10.240.183.133: stop
26/03/2021 10:49:41             dut.10.240.183.133: 
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.
26/03/2021 10:49:41             dut.10.240.183.133: start
26/03/2021 10:49:41             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:41             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:49:41             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:49:43             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:49:43             dut.10.240.183.133: stop
26/03/2021 10:49:43             dut.10.240.183.133: 
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.
26/03/2021 10:49:43             dut.10.240.183.133: start
26/03/2021 10:49:43             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:43             dut.10.240.183.133: flow flush 0
26/03/2021 10:49:43             dut.10.240.183.133: 
26/03/2021 10:49:43             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.254 / sctp / end actions drop / end
26/03/2021 10:49:44             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:49:46             dut.10.240.183.133: 
26/03/2021 10:49:46             dut.10.240.183.133: stop
26/03/2021 10:49:46             dut.10.240.183.133: 
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.
26/03/2021 10:49:46             dut.10.240.183.133: start
26/03/2021 10:49:46             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:48             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:49:48             dut.10.240.183.133: stop
26/03/2021 10:49:48             dut.10.240.183.133: 
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.
26/03/2021 10:49:48             dut.10.240.183.133: start
26/03/2021 10:49:48             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:48             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:49:48             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:49:50             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:49:50             dut.10.240.183.133: stop
26/03/2021 10:49:50             dut.10.240.183.133: 
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.
26/03/2021 10:49:50             dut.10.240.183.133: start
26/03/2021 10:49:50             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:50             dut.10.240.183.133: flow flush 0
26/03/2021 10:49:50             dut.10.240.183.133: 
26/03/2021 10:49:50             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 dst spec 192.168.0.2 dst mask 255.255.255.243 / sctp / end actions drop / end
26/03/2021 10:49:51             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:49:53             dut.10.240.183.133: 
26/03/2021 10:49:53             dut.10.240.183.133: stop
26/03/2021 10:49:53             dut.10.240.183.133: 
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.
26/03/2021 10:49:53             dut.10.240.183.133: start
26/03/2021 10:49:53             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:55             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:49:55             dut.10.240.183.133: stop
26/03/2021 10:49:55             dut.10.240.183.133: 
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.
26/03/2021 10:49:55             dut.10.240.183.133: start
26/03/2021 10:49:55             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:55             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:49:55             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:49:57             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:49:57             dut.10.240.183.133: stop
26/03/2021 10:49:57             dut.10.240.183.133: 
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.
26/03/2021 10:49:57             dut.10.240.183.133: start
26/03/2021 10:49:57             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:49:57             dut.10.240.183.133: flow flush 0
26/03/2021 10:49:57             dut.10.240.183.133: 
26/03/2021 10:49:57             dut.10.240.183.133: flow create 0 priority 0 ingress pattern eth / ipv4 / sctp src spec 8010 src mask 65520 / end actions drop / end
26/03/2021 10:49:57             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:50:00             dut.10.240.183.133: 
26/03/2021 10:50:00             dut.10.240.183.133: stop
26/03/2021 10:50:00             dut.10.240.183.133: 
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.
26/03/2021 10:50:00             dut.10.240.183.133: start
26/03/2021 10:50:00             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:02             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x86dd - length=96 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV6 L4_SCTP  - l2_len=14 - l3_len=40 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:50:02             dut.10.240.183.133: stop
26/03/2021 10:50:02             dut.10.240.183.133: 
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.
26/03/2021 10:50:02             dut.10.240.183.133: start
26/03/2021 10:50:02             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:02             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:50:02             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:50:04             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:50:04             dut.10.240.183.133: stop
26/03/2021 10:50:04             dut.10.240.183.133: 
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.
26/03/2021 10:50:04             dut.10.240.183.133: start
26/03/2021 10:50:04             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:04             dut.10.240.183.133: flow flush 0
26/03/2021 10:50:04             dut.10.240.183.133: 
26/03/2021 10:50:04             dut.10.240.183.133: flow create 0 priority 0 ingress pattern eth / ipv4 / sctp dst spec 8010 dst mask 65520 / end actions drop / end
26/03/2021 10:50:04             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:50:07             dut.10.240.183.133: 
26/03/2021 10:50:07             dut.10.240.183.133: stop
26/03/2021 10:50:07             dut.10.240.183.133: 
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.
26/03/2021 10:50:07             dut.10.240.183.133: start
26/03/2021 10:50:07             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:09             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x86dd - length=96 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV6 L4_SCTP  - l2_len=14 - l3_len=40 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:50:09             dut.10.240.183.133: stop
26/03/2021 10:50:09             dut.10.240.183.133: 
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.
26/03/2021 10:50:09             dut.10.240.183.133: start
26/03/2021 10:50:09             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:09             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:50:09             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:50:11             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:50:11             dut.10.240.183.133: stop
26/03/2021 10:50:11             dut.10.240.183.133: 
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.
26/03/2021 10:50:11             dut.10.240.183.133: start
26/03/2021 10:50:11             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:11             dut.10.240.183.133: flow flush 0
26/03/2021 10:50:11             dut.10.240.183.133: 
26/03/2021 10:50:11             dut.10.240.183.133: flow create 0 priority 0 ingress pattern eth src spec 00:11:22:33:44:55 src mask ff:ff:ff:ff:ff:00 dst spec 00:01:23:45:67:89 dst mask ff:ff:ff:ff:ff:fe / ipv4 src spec 192.168.0.1 src mask 255.255.255.0 dst spec 192.168.0.2 dst mask 255.255.0.255 / sctp src spec 8010 src mask 65520 dst spec 8017 dst mask 65520 / end actions drop / end
26/03/2021 10:50:11             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:50:14             dut.10.240.183.133: 
26/03/2021 10:50:14             dut.10.240.183.133: stop
26/03/2021 10:50:14             dut.10.240.183.133: 
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.
26/03/2021 10:50:14             dut.10.240.183.133: start
26/03/2021 10:50:14             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:16             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:66:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:50:16             dut.10.240.183.133: stop
26/03/2021 10:50:16             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:50:16             dut.10.240.183.133: start
26/03/2021 10:50:16             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:16             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:50:16             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:50:18             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:66 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:50:18             dut.10.240.183.133: stop
26/03/2021 10:50:18             dut.10.240.183.133: 
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.
26/03/2021 10:50:18             dut.10.240.183.133: start
26/03/2021 10:50:18             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:18            CVLDCFACLFilterTest: Test Case test_mac_ipv4_sctp Result PASSED:
26/03/2021 10:50:18             dut.10.240.183.133: flow flush 0
26/03/2021 10:50:18             dut.10.240.183.133: 
26/03/2021 10:50:18             dut.10.240.183.133: clear port stats all
26/03/2021 10:50:18             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:50:18             dut.10.240.183.133: quit
26/03/2021 10:50:20             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:50:20             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:50:20             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:50:20             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:50:20             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:50:20             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:50:20            CVLDCFACLFilterTest: Test Case test_mac_ipv4_tcp Begin
26/03/2021 10:50:21             dut.10.240.183.133: 
26/03/2021 10:50:21                         tester: 
26/03/2021 10:50:26             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i
26/03/2021 10:50:39             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
26/03/2021 10:50:39             dut.10.240.183.133: set portlist 1
26/03/2021 10:50:39             dut.10.240.183.133: 
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.

26/03/2021 10:50:39             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:50:39             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:50:39             dut.10.240.183.133: set verbose 1
26/03/2021 10:50:39             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:50:39             dut.10.240.183.133: start
26/03/2021 10:50:39             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:39             dut.10.240.183.133: flow flush 0
26/03/2021 10:50:39             dut.10.240.183.133: 
26/03/2021 10:50:39             dut.10.240.183.133: flow create 0 ingress pattern eth src spec 00:11:22:33:44:55 src mask ff:ff:ff:ff:ff:fe / ipv4 / tcp / end actions drop / end
26/03/2021 10:50:39             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:50:41             dut.10.240.183.133: 
26/03/2021 10:50:41             dut.10.240.183.133: stop
26/03/2021 10:50:41             dut.10.240.183.133: 
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.
26/03/2021 10:50:41             dut.10.240.183.133: start
26/03/2021 10:50:41             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:44             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:57 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x86dd - length=104 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_TCP  - l2_len=14 - l3_len=40 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:50:44             dut.10.240.183.133: stop
26/03/2021 10:50:44             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 4              RX-dropped: 0             RX-total: 4
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 4              RX-dropped: 0             RX-total: 4
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:50:44             dut.10.240.183.133: start
26/03/2021 10:50:44             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:44             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:50:44             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:50:46             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:54 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:50:46             dut.10.240.183.133: stop
26/03/2021 10:50:46             dut.10.240.183.133: 
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.
26/03/2021 10:50:46             dut.10.240.183.133: start
26/03/2021 10:50:46             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:46             dut.10.240.183.133: flow flush 0
26/03/2021 10:50:46             dut.10.240.183.133: 
26/03/2021 10:50:46             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv4 / tcp / end actions vf id 1 / end
26/03/2021 10:50:46             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #0 created
26/03/2021 10:50:46             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 00:11:22:33:44:66 / ipv4 / tcp / end actions vf id 1 / end
26/03/2021 10:50:47             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #1 created
26/03/2021 10:50:47             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 00:11:22:33:66:55 / ipv4 / tcp / end actions vf id 1 / end
26/03/2021 10:50:47             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #2 created
26/03/2021 10:50:47             dut.10.240.183.133: flow create 0 ingress pattern eth dst spec 00:11:22:33:44:55 dst mask ff:ff:ff:ff:ff:00 / ipv4 / tcp / end actions drop / end
26/03/2021 10:50:47             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #3 created
26/03/2021 10:50:49             dut.10.240.183.133: 
26/03/2021 10:50:49             dut.10.240.183.133: stop
26/03/2021 10:50:49             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 2             RX-total: 2
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 2             RX-total: 2
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:50:49             dut.10.240.183.133: start
26/03/2021 10:50:49             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:51             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:11:22:33:66:55 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:50:51             dut.10.240.183.133: stop
26/03/2021 10:50:51             dut.10.240.183.133: 
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.
26/03/2021 10:50:51             dut.10.240.183.133: start
26/03/2021 10:50:51             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:51             dut.10.240.183.133: flow destroy 0 rule 3
26/03/2021 10:50:51             dut.10.240.183.133: 
Flow rule #3 destroyed
26/03/2021 10:50:53             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:11:22:33:44:55 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:11:22:33:44:66 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:50:53             dut.10.240.183.133: stop
26/03/2021 10:50:53             dut.10.240.183.133: 
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.
26/03/2021 10:50:53             dut.10.240.183.133: start
26/03/2021 10:50:54             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:54             dut.10.240.183.133: flow flush 0
26/03/2021 10:50:54             dut.10.240.183.133: 
26/03/2021 10:50:54             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.254 / tcp / end actions drop / end
26/03/2021 10:50:54             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:50:56             dut.10.240.183.133: 
26/03/2021 10:50:56             dut.10.240.183.133: stop
26/03/2021 10:50:56             dut.10.240.183.133: 
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.
26/03/2021 10:50:56             dut.10.240.183.133: start
26/03/2021 10:50:56             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:58             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:50:58             dut.10.240.183.133: stop
26/03/2021 10:50:58             dut.10.240.183.133: 
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.
26/03/2021 10:50:58             dut.10.240.183.133: start
26/03/2021 10:50:58             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:50:58             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:50:58             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:51:00             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:51:00             dut.10.240.183.133: stop
26/03/2021 10:51:00             dut.10.240.183.133: 
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.
26/03/2021 10:51:00             dut.10.240.183.133: start
26/03/2021 10:51:00             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:00             dut.10.240.183.133: flow flush 0
26/03/2021 10:51:01             dut.10.240.183.133: 
26/03/2021 10:51:01             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 dst spec 192.168.0.2 dst mask 255.255.255.243 / tcp / end actions drop / end
26/03/2021 10:51:01             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:51:03             dut.10.240.183.133: 
26/03/2021 10:51:03             dut.10.240.183.133: stop
26/03/2021 10:51:03             dut.10.240.183.133: 
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.
26/03/2021 10:51:03             dut.10.240.183.133: start
26/03/2021 10:51:03             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:05             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:51:05             dut.10.240.183.133: stop
26/03/2021 10:51:05             dut.10.240.183.133: 
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.
26/03/2021 10:51:05             dut.10.240.183.133: start
26/03/2021 10:51:05             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:05             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:51:05             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:51:07             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:51:07             dut.10.240.183.133: stop
26/03/2021 10:51:07             dut.10.240.183.133: 
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.
26/03/2021 10:51:07             dut.10.240.183.133: start
26/03/2021 10:51:07             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:07             dut.10.240.183.133: flow flush 0
26/03/2021 10:51:08             dut.10.240.183.133: 
26/03/2021 10:51:08             dut.10.240.183.133: flow create 0 priority 0 ingress pattern eth / ipv4 / tcp src spec 8010 src mask 65520 / end actions drop / end
26/03/2021 10:51:08             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:51:10             dut.10.240.183.133: 
26/03/2021 10:51:10             dut.10.240.183.133: stop
26/03/2021 10:51:10             dut.10.240.183.133: 
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.
26/03/2021 10:51:10             dut.10.240.183.133: start
26/03/2021 10:51:10             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:12             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x86dd - length=104 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_TCP  - l2_len=14 - l3_len=40 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:51:12             dut.10.240.183.133: stop
26/03/2021 10:51:12             dut.10.240.183.133: 
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.
26/03/2021 10:51:12             dut.10.240.183.133: start
26/03/2021 10:51:12             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:12             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:51:12             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:51:14             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:51:14             dut.10.240.183.133: stop
26/03/2021 10:51:14             dut.10.240.183.133: 
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.
26/03/2021 10:51:14             dut.10.240.183.133: start
26/03/2021 10:51:14             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:14             dut.10.240.183.133: flow flush 0
26/03/2021 10:51:14             dut.10.240.183.133: 
26/03/2021 10:51:14             dut.10.240.183.133: flow create 0 priority 0 ingress pattern eth / ipv4 / tcp dst spec 8010 dst mask 65520 / end actions drop / end
26/03/2021 10:51:15             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:51:17             dut.10.240.183.133: 
26/03/2021 10:51:17             dut.10.240.183.133: stop
26/03/2021 10:51:17             dut.10.240.183.133: 
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.
26/03/2021 10:51:17             dut.10.240.183.133: start
26/03/2021 10:51:17             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:19             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x86dd - length=104 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_TCP  - l2_len=14 - l3_len=40 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:51:19             dut.10.240.183.133: stop
26/03/2021 10:51:19             dut.10.240.183.133: 
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.
26/03/2021 10:51:19             dut.10.240.183.133: start
26/03/2021 10:51:19             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:19             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:51:19             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:51:21             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:51:21             dut.10.240.183.133: stop
26/03/2021 10:51:21             dut.10.240.183.133: 
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.
26/03/2021 10:51:21             dut.10.240.183.133: start
26/03/2021 10:51:21             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:21             dut.10.240.183.133: flow flush 0
26/03/2021 10:51:21             dut.10.240.183.133: 
26/03/2021 10:51:21             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 33:00:00:00:00:01 / ipv4 / end actions vf id 1 / end
26/03/2021 10:51:22             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #0 created
26/03/2021 10:51:22             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 33:00:00:00:00:02 / ipv4 / end actions vf id 1 / end
26/03/2021 10:51:22             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #1 created
26/03/2021 10:51:22             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 33:00:00:00:00:03 / ipv4 / end actions vf id 1 / end
26/03/2021 10:51:22             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #2 created
26/03/2021 10:51:22             dut.10.240.183.133: flow create 0 priority 0 ingress pattern eth src spec 00:11:22:33:44:55 src mask ff:ff:ff:ff:ff:00 dst spec 33:00:00:00:00:02 dst mask ff:ff:ff:ff:ff:fe / ipv4 src spec 192.168.0.1 src mask 255.255.255.0 dst spec 192.168.0.2 dst mask 255.255.0.255 / tcp src spec 8010 src mask 65520 dst spec 8017 dst mask 65520 / end actions drop / end
26/03/2021 10:51:22             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #3 created
26/03/2021 10:51:24             dut.10.240.183.133: 
26/03/2021 10:51:24             dut.10.240.183.133: stop
26/03/2021 10:51:24             dut.10.240.183.133: 
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.
26/03/2021 10:51:24             dut.10.240.183.133: start
26/03/2021 10:51:24             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:26             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:66:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:01 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:51:26             dut.10.240.183.133: stop
26/03/2021 10:51:26             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 7              RX-dropped: 0             RX-total: 7
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 7              RX-dropped: 0             RX-total: 7
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:51:26             dut.10.240.183.133: start
26/03/2021 10:51:26             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:26             dut.10.240.183.133: flow destroy 0 rule 3
26/03/2021 10:51:26             dut.10.240.183.133: 
Flow rule #3 destroyed
26/03/2021 10:51:28             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:66 - dst=33:00:00:00:00:03 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:51:28             dut.10.240.183.133: stop
26/03/2021 10:51:28             dut.10.240.183.133: 
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.
26/03/2021 10:51:28             dut.10.240.183.133: start
26/03/2021 10:51:29             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:29            CVLDCFACLFilterTest: Test Case test_mac_ipv4_tcp Result PASSED:
26/03/2021 10:51:29             dut.10.240.183.133: flow flush 0
26/03/2021 10:51:29             dut.10.240.183.133: 
26/03/2021 10:51:29             dut.10.240.183.133: clear port stats all
26/03/2021 10:51:29             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:51:29             dut.10.240.183.133: quit
26/03/2021 10:51:30             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:51:30             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:51:31             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:51:31             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:51:31             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:51:31             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:51:31            CVLDCFACLFilterTest: Test Case test_mac_ipv4_udp Begin
26/03/2021 10:51:31             dut.10.240.183.133: 
26/03/2021 10:51:31                         tester: 
26/03/2021 10:51:36             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i
26/03/2021 10:51:49             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
26/03/2021 10:51:49             dut.10.240.183.133: set portlist 1
26/03/2021 10:51:49             dut.10.240.183.133: 
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.

26/03/2021 10:51:49             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:51:49             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:51:49             dut.10.240.183.133: set verbose 1
26/03/2021 10:51:49             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:51:49             dut.10.240.183.133: start
26/03/2021 10:51:49             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:49             dut.10.240.183.133: flow flush 0
26/03/2021 10:51:49             dut.10.240.183.133: 
26/03/2021 10:51:49             dut.10.240.183.133: flow create 0 ingress pattern eth src spec 00:11:22:33:44:55 src mask ff:ff:ff:ff:ff:fe / ipv4 / udp / end actions drop / end
26/03/2021 10:51:50             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:51:52             dut.10.240.183.133: 
26/03/2021 10:51:52             dut.10.240.183.133: stop
26/03/2021 10:51:52             dut.10.240.183.133: 
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.
26/03/2021 10:51:52             dut.10.240.183.133: start
26/03/2021 10:51:52             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:54             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:57 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x86dd - length=92 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:51:54             dut.10.240.183.133: stop
26/03/2021 10:51:54             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 4              RX-dropped: 0             RX-total: 4
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 4              RX-dropped: 0             RX-total: 4
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:51:54             dut.10.240.183.133: start
26/03/2021 10:51:54             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:54             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:51:54             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:51:56             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:54 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:51:56             dut.10.240.183.133: stop
26/03/2021 10:51:56             dut.10.240.183.133: 
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.
26/03/2021 10:51:56             dut.10.240.183.133: start
26/03/2021 10:51:56             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:51:56             dut.10.240.183.133: flow flush 0
26/03/2021 10:51:56             dut.10.240.183.133: 
26/03/2021 10:51:56             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv4 / udp / end actions vf id 1 / end
26/03/2021 10:51:57             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #0 created
26/03/2021 10:51:57             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 00:11:22:33:44:66 / ipv4 / udp / end actions vf id 1 / end
26/03/2021 10:51:57             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #1 created
26/03/2021 10:51:57             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 00:11:22:33:66:55 / ipv4 / udp / end actions vf id 1 / end
26/03/2021 10:51:57             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #2 created
26/03/2021 10:51:57             dut.10.240.183.133: flow create 0 ingress pattern eth dst spec 00:11:22:33:44:55 dst mask ff:ff:ff:ff:ff:00 / ipv4 / udp / end actions drop / end
26/03/2021 10:51:57             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #3 created
26/03/2021 10:51:59             dut.10.240.183.133: 
26/03/2021 10:51:59             dut.10.240.183.133: stop
26/03/2021 10:51:59             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 2             RX-total: 2
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 2             RX-total: 2
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:51:59             dut.10.240.183.133: start
26/03/2021 10:51:59             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:01             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:11:22:33:66:55 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:52:01             dut.10.240.183.133: stop
26/03/2021 10:52:01             dut.10.240.183.133: 
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.
26/03/2021 10:52:01             dut.10.240.183.133: start
26/03/2021 10:52:02             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:02             dut.10.240.183.133: flow destroy 0 rule 3
26/03/2021 10:52:02             dut.10.240.183.133: 
Flow rule #3 destroyed
26/03/2021 10:52:04             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:11:22:33:44:55 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:02:00:00:00:01 - dst=00:11:22:33:44:66 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:52:04             dut.10.240.183.133: stop
26/03/2021 10:52:04             dut.10.240.183.133: 
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.
26/03/2021 10:52:04             dut.10.240.183.133: start
26/03/2021 10:52:04             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:04             dut.10.240.183.133: flow flush 0
26/03/2021 10:52:04             dut.10.240.183.133: 
26/03/2021 10:52:04             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.254 / udp / end actions drop / end
26/03/2021 10:52:04             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:52:06             dut.10.240.183.133: 
26/03/2021 10:52:06             dut.10.240.183.133: stop
26/03/2021 10:52:06             dut.10.240.183.133: 
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.
26/03/2021 10:52:06             dut.10.240.183.133: start
26/03/2021 10:52:06             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:08             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:52:08             dut.10.240.183.133: stop
26/03/2021 10:52:08             dut.10.240.183.133: 
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.
26/03/2021 10:52:08             dut.10.240.183.133: start
26/03/2021 10:52:08             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:08             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:52:09             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:52:11             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:52:11             dut.10.240.183.133: stop
26/03/2021 10:52:11             dut.10.240.183.133: 
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.
26/03/2021 10:52:11             dut.10.240.183.133: start
26/03/2021 10:52:11             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:11             dut.10.240.183.133: flow flush 0
26/03/2021 10:52:11             dut.10.240.183.133: 
26/03/2021 10:52:11             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 dst spec 192.168.0.2 dst mask 255.255.255.243 / udp / end actions drop / end
26/03/2021 10:52:11             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:52:13             dut.10.240.183.133: 
26/03/2021 10:52:13             dut.10.240.183.133: stop
26/03/2021 10:52:13             dut.10.240.183.133: 
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.
26/03/2021 10:52:13             dut.10.240.183.133: start
26/03/2021 10:52:13             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:15             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:52:15             dut.10.240.183.133: stop
26/03/2021 10:52:15             dut.10.240.183.133: 
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.
26/03/2021 10:52:15             dut.10.240.183.133: start
26/03/2021 10:52:15             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:15             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:52:16             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:52:18             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:52:18             dut.10.240.183.133: stop
26/03/2021 10:52:18             dut.10.240.183.133: 
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.
26/03/2021 10:52:18             dut.10.240.183.133: start
26/03/2021 10:52:18             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:18             dut.10.240.183.133: flow flush 0
26/03/2021 10:52:18             dut.10.240.183.133: 
26/03/2021 10:52:18             dut.10.240.183.133: flow create 0 priority 0 ingress pattern eth / ipv4 / udp src spec 8010 src mask 65520 / end actions drop / end
26/03/2021 10:52:18             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:52:20             dut.10.240.183.133: 
26/03/2021 10:52:20             dut.10.240.183.133: stop
26/03/2021 10:52:20             dut.10.240.183.133: 
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.
26/03/2021 10:52:20             dut.10.240.183.133: start
26/03/2021 10:52:20             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:22             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x86dd - length=92 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:52:22             dut.10.240.183.133: stop
26/03/2021 10:52:22             dut.10.240.183.133: 
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.
26/03/2021 10:52:22             dut.10.240.183.133: start
26/03/2021 10:52:22             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:22             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:52:23             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:52:25             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:52:25             dut.10.240.183.133: stop
26/03/2021 10:52:25             dut.10.240.183.133: 
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.
26/03/2021 10:52:25             dut.10.240.183.133: start
26/03/2021 10:52:25             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:25             dut.10.240.183.133: flow flush 0
26/03/2021 10:52:25             dut.10.240.183.133: 
26/03/2021 10:52:25             dut.10.240.183.133: flow create 0 priority 0 ingress pattern eth / ipv4 / udp dst spec 8010 dst mask 65520 / end actions drop / end
26/03/2021 10:52:25             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:52:27             dut.10.240.183.133: 
26/03/2021 10:52:27             dut.10.240.183.133: stop
26/03/2021 10:52:27             dut.10.240.183.133: 
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.
26/03/2021 10:52:27             dut.10.240.183.133: start
26/03/2021 10:52:27             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:29             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x86dd - length=92 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:52:29             dut.10.240.183.133: stop
26/03/2021 10:52:29             dut.10.240.183.133: 
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.
26/03/2021 10:52:29             dut.10.240.183.133: start
26/03/2021 10:52:29             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:29             dut.10.240.183.133: flow destroy 0 rule 0
26/03/2021 10:52:29             dut.10.240.183.133: 
Flow rule #0 destroyed
26/03/2021 10:52:32             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:52:32             dut.10.240.183.133: stop
26/03/2021 10:52:32             dut.10.240.183.133: 
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.
26/03/2021 10:52:32             dut.10.240.183.133: start
26/03/2021 10:52:32             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:32             dut.10.240.183.133: flow flush 0
26/03/2021 10:52:32             dut.10.240.183.133: 
26/03/2021 10:52:32             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 33:00:00:00:00:01 / ipv4 / udp / end actions vf id 1 / end
26/03/2021 10:52:32             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #0 created
26/03/2021 10:52:32             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 33:00:00:00:00:02 / ipv4 / udp / end actions vf id 1 / end
26/03/2021 10:52:32             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #1 created
26/03/2021 10:52:32             dut.10.240.183.133: flow create 0 ingress pattern eth dst is 33:00:00:00:00:03 / ipv4 / udp / end actions vf id 1 / end
26/03/2021 10:52:32             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #2 created
26/03/2021 10:52:32             dut.10.240.183.133: flow create 0 priority 0 ingress pattern eth src spec 00:11:22:33:44:55 src mask ff:ff:ff:ff:ff:00 dst spec 33:00:00:00:00:03 dst mask ff:ff:ff:ff:ff:fe / ipv4 src spec 192.168.0.1 src mask 255.255.255.0 dst spec 192.168.0.2 dst mask 255.255.0.255 / udp src spec 8010 src mask 65520 dst spec 8017 dst mask 65520 / end actions drop / end
26/03/2021 10:52:32             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #3 created
26/03/2021 10:52:34             dut.10.240.183.133: 
26/03/2021 10:52:34             dut.10.240.183.133: stop
26/03/2021 10:52:34             dut.10.240.183.133: 
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.
26/03/2021 10:52:34             dut.10.240.183.133: start
26/03/2021 10:52:34             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:36             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:66:55 - dst=33:00:00:00:00:03 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:01 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=33:00:00:00:00:02 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:52:36             dut.10.240.183.133: stop
26/03/2021 10:52:36             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 6              RX-dropped: 0             RX-total: 6
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:52:36             dut.10.240.183.133: start
26/03/2021 10:52:37             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:37             dut.10.240.183.133: flow destroy 0 rule 3
26/03/2021 10:52:37             dut.10.240.183.133: 
Flow rule #3 destroyed
26/03/2021 10:52:39             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:66 - dst=33:00:00:00:00:02 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:52:39             dut.10.240.183.133: stop
26/03/2021 10:52:39             dut.10.240.183.133: 
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.
26/03/2021 10:52:39             dut.10.240.183.133: start
26/03/2021 10:52:39             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:52:39            CVLDCFACLFilterTest: Test Case test_mac_ipv4_udp Result PASSED:
26/03/2021 10:52:39             dut.10.240.183.133: flow flush 0
26/03/2021 10:52:39             dut.10.240.183.133: 
26/03/2021 10:52:39             dut.10.240.183.133: clear port stats all
26/03/2021 10:52:39             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:52:39             dut.10.240.183.133: quit
26/03/2021 10:52:40             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:52:40             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:52:41             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:52:41             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:52:41             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:52:41             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:52:41            CVLDCFACLFilterTest: Test Case test_max_entry_num Begin
26/03/2021 10:52:41             dut.10.240.183.133: 
26/03/2021 10:52:41                         tester: 
26/03/2021 10:52:41             dut.10.240.183.133: scp -v dep/max_entry_num root@10.240.183.133:/tmp/
26/03/2021 10:52:48             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i --cmdline-file=/tmp/max_entry_num
26/03/2021 10:53:08             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
Interactive-mode selected
CLI commands to be read from /tmp/max_entry_num
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #1 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #2 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #3 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #4 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #5 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #6 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #7 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #8 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #9 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #10 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #11 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #12 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #13 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #14 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #15 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #16 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #17 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #18 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #19 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #20 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #21 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #22 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #23 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #24 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #25 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #26 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #27 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #28 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #29 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #30 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #31 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #32 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #33 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #34 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #35 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #36 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #37 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #38 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #39 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #40 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #41 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #42 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #43 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #44 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #45 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #46 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #47 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #48 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #49 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #50 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #51 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #52 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #53 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #54 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #55 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #56 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #57 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #58 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #59 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #60 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #61 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #62 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #63 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #64 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #65 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #66 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #67 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #68 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #69 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #70 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #71 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #72 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #73 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #74 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #75 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #76 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #77 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #78 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #79 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #80 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #81 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #82 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #83 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #84 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #85 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #86 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #87 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #88 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #89 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #90 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #91 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #92 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #93 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #94 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #95 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #96 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #97 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #98 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #99 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #100 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #101 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #102 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #103 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #104 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #105 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #106 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #107 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #108 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #109 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #110 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #111 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #112 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #113 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #114 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #115 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #116 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #117 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #118 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #119 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #120 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #121 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #122 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #123 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #124 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #125 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #126 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #127 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #128 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #129 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #130 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #131 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #132 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #133 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #134 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #135 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #136 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #137 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #138 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #139 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #140 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #141 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #142 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #143 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #144 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #145 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #146 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #147 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #148 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #149 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #150 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #151 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #152 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #153 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #154 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #155 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #156 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #157 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #158 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #159 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #160 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #161 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #162 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #163 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #164 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #165 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #166 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #167 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #168 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #169 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #170 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #171 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #172 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #173 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #174 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #175 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #176 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #177 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #178 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #179 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #180 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #181 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #182 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #183 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #184 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #185 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #186 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #187 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #188 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #189 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #190 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #191 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #192 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #193 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #194 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #195 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #196 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #197 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #198 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #199 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #200 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #201 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #202 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #203 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #204 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #205 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #206 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #207 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #208 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #209 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #210 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #211 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #212 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #213 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #214 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #215 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #216 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #217 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #218 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #219 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #220 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #221 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #222 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #223 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #224 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #225 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #226 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #227 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #228 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #229 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #230 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #231 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #232 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #233 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #234 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #235 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #236 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #237 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #238 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #239 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #240 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #241 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #242 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #243 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #244 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #245 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #246 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #247 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #248 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #249 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #250 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #251 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #252 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #253 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #254 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #255 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #256 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #257 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #258 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #259 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #260 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #261 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #262 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #263 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #264 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #265 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #266 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #267 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #268 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #269 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #270 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #271 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #272 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #273 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #274 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #275 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #276 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #277 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #278 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #279 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #280 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #281 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #282 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #283 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #284 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #285 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #286 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #287 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #288 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #289 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #290 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #291 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #292 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #293 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #294 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #295 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #296 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #297 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #298 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #299 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #300 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #301 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #302 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #303 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #304 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #305 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #306 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #307 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #308 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #309 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #310 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #311 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #312 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #313 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #314 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #315 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #316 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #317 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #318 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #319 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #320 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #321 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #322 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #323 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #324 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #325 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #326 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #327 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #328 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #329 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #330 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #331 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #332 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #333 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #334 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #335 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #336 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #337 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #338 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #339 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #340 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #341 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #342 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #343 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #344 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #345 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #346 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #347 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #348 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #349 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #350 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #351 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #352 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #353 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #354 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #355 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #356 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #357 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #358 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #359 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #360 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #361 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #362 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #363 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #364 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #365 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #366 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #367 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #368 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #369 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #370 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #371 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #372 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #373 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #374 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #375 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #376 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #377 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #378 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #379 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #380 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #381 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #382 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #383 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #384 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #385 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #386 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #387 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #388 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #389 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #390 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #391 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #392 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #393 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #394 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #395 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #396 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #397 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #398 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #399 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #400 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #401 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #402 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #403 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #404 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #405 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #406 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #407 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #408 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #409 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #410 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #411 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #412 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #413 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #414 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #415 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #416 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #417 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #418 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #419 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #420 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #421 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #422 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #423 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #424 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #425 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #426 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #427 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #428 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #429 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #430 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #431 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #432 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #433 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #434 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #435 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #436 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #437 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #438 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #439 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #440 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #441 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #442 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #443 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #444 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #445 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #446 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #447 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #448 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #449 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #450 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #451 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #452 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #453 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #454 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #455 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #456 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #457 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #458 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #459 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #460 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #461 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #462 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #463 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #464 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #465 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #466 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #467 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #468 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #469 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #470 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #471 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #472 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #473 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #474 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #475 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #476 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #477 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #478 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #479 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #480 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #481 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #482 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #483 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #484 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #485 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #486 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #487 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #488 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #489 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #490 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #491 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #492 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #493 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #494 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #495 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #496 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #497 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #498 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #499 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #500 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #501 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #502 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #503 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #504 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #505 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #506 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #507 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #508 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #509 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #510 created
Read CLI commands from /tmp/max_entry_num
26/03/2021 10:53:08             dut.10.240.183.133: set portlist 1
26/03/2021 10:53:08             dut.10.240.183.133: 
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.

26/03/2021 10:53:08             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:53:08             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:53:08             dut.10.240.183.133: set verbose 1
26/03/2021 10:53:08             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:53:08             dut.10.240.183.133: start
26/03/2021 10:53:08             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:53:08             dut.10.240.183.133: show port info 0
26/03/2021 10:53:08             dut.10.240.183.133: 

********************* Infos for port 0  *********************
MAC address: C6:41:04:07:4F:99
Device name: 0000:81:01.0
Driver name: net_ice_dcf
Firmware-version: not available
Devargs: cap=dcf
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: None
Link duplex: half-duplex
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: 16
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: 16
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
26/03/2021 10:53:08             dut.10.240.183.133: flow list 0
26/03/2021 10:53:08             dut.10.240.183.133: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 TCP => DROP
1	0	0	i--	ETH IPV4 TCP => DROP
2	0	0	i--	ETH IPV4 TCP => DROP
3	0	0	i--	ETH IPV4 TCP => DROP
4	0	0	i--	ETH IPV4 TCP => DROP
5	0	0	i--	ETH IPV4 TCP => DROP
6	0	0	i--	ETH IPV4 TCP => DROP
7	0	0	i--	ETH IPV4 TCP => DROP
8	0	0	i--	ETH IPV4 TCP => DROP
9	0	0	i--	ETH IPV4 TCP => DROP
10	0	0	i--	ETH IPV4 TCP => DROP
11	0	0	i--	ETH IPV4 TCP => DROP
12	0	0	i--	ETH IPV4 TCP => DROP
13	0	0	i--	ETH IPV4 TCP => DROP
14	0	0	i--	ETH IPV4 TCP => DROP
15	0	0	i--	ETH IPV4 TCP => DROP
16	0	0	i--	ETH IPV4 TCP => DROP
17	0	0	i--	ETH IPV4 TCP => DROP
18	0	0	i--	ETH IPV4 TCP => DROP
19	0	0	i--	ETH IPV4 TCP => DROP
20	0	0	i--	ETH IPV4 TCP => DROP
21	0	0	i--	ETH IPV4 TCP => DROP
22	0	0	i--	ETH IPV4 TCP => DROP
23	0	0	i--	ETH IPV4 TCP => DROP
24	0	0	i--	ETH IPV4 TCP => DROP
25	0	0	i--	ETH IPV4 TCP => DROP
26	0	0	i--	ETH IPV4 TCP => DROP
27	0	0	i--	ETH IPV4 TCP => DROP
28	0	0	i--	ETH IPV4 TCP => DROP
29	0	0	i--	ETH IPV4 TCP => DROP
30	0	0	i--	ETH IPV4 TCP => DROP
31	0	0	i--	ETH IPV4 TCP => DROP
32	0	0	i--	ETH IPV4 TCP => DROP
33	0	0	i--	ETH IPV4 TCP => DROP
34	0	0	i--	ETH IPV4 TCP => DROP
35	0	0	i--	ETH IPV4 TCP => DROP
36	0	0	i--	ETH IPV4 TCP => DROP
37	0	0	i--	ETH IPV4 TCP => DROP
38	0	0	i--	ETH IPV4 TCP => DROP
39	0	0	i--	ETH IPV4 TCP => DROP
40	0	0	i--	ETH IPV4 TCP => DROP
41	0	0	i--	ETH IPV4 TCP => DROP
42	0	0	i--	ETH IPV4 TCP => DROP
43	0	0	i--	ETH IPV4 TCP => DROP
44	0	0	i--	ETH IPV4 TCP => DROP
45	0	0	i--	ETH IPV4 TCP => DROP
46	0	0	i--	ETH IPV4 TCP => DROP
47	0	0	i--	ETH IPV4 TCP => DROP
48	0	0	i--	ETH IPV4 TCP => DROP
49	0	0	i--	ETH IPV4 TCP => DROP
50	0	0	i--	ETH IPV4 TCP => DROP
51	0	0	i--	ETH IPV4 TCP => DROP
52	0	0	i--	ETH IPV4 TCP => DROP
53	0	0	i--	ETH IPV4 TCP => DROP
54	0	0	i--	ETH IPV4 TCP => DROP
55	0	0	i--	ETH IPV4 TCP => DROP
56	0	0	i--	ETH IPV4 TCP => DROP
57	0	0	i--	ETH IPV4 TCP => DROP
58	0	0	i--	ETH IPV4 TCP => DROP
59	0	0	i--	ETH IPV4 TCP => DROP
60	0	0	i--	ETH IPV4 TCP => DROP
61	0	0	i--	ETH IPV4 TCP => DROP
62	0	0	i--	ETH IPV4 TCP => DROP
63	0	0	i--	ETH IPV4 TCP => DROP
64	0	0	i--	ETH IPV4 TCP => DROP
65	0	0	i--	ETH IPV4 TCP => DROP
66	0	0	i--	ETH IPV4 TCP => DROP
67	0	0	i--	ETH IPV4 TCP => DROP
68	0	0	i--	ETH IPV4 TCP => DROP
69	0	0	i--	ETH IPV4 TCP => DROP
70	0	0	i--	ETH IPV4 TCP => DROP
71	0	0	i--	ETH IPV4 TCP => DROP
72	0	0	i--	ETH IPV4 TCP => DROP
73	0	0	i--	ETH IPV4 TCP => DROP
74	0	0	i--	ETH IPV4 TCP => DROP
75	0	0	i--	ETH IPV4 TCP => DROP
76	0	0	i--	ETH IPV4 TCP => DROP
77	0	0	i--	ETH IPV4 TCP => DROP
78	0	0	i--	ETH IPV4 TCP => DROP
79	0	0	i--	ETH IPV4 TCP => DROP
80	0	0	i--	ETH IPV4 TCP => DROP
81	0	0	i--	ETH IPV4 TCP => DROP
82	0	0	i--	ETH IPV4 TCP => DROP
83	0	0	i--	ETH IPV4 TCP => DROP
84	0	0	i--	ETH IPV4 TCP => DROP
85	0	0	i--	ETH IPV4 TCP => DROP
86	0	0	i--	ETH IPV4 TCP => DROP
87	0	0	i--	ETH IPV4 TCP => DROP
88	0	0	i--	ETH IPV4 TCP => DROP
89	0	0	i--	ETH IPV4 TCP => DROP
90	0	0	i--	ETH IPV4 TCP => DROP
91	0	0	i--	ETH IPV4 TCP => DROP
92	0	0	i--	ETH IPV4 TCP => DROP
93	0	0	i--	ETH IPV4 TCP => DROP
94	0	0	i--	ETH IPV4 TCP => DROP
95	0	0	i--	ETH IPV4 TCP => DROP
96	0	0	i--	ETH IPV4 TCP => DROP
97	0	0	i--	ETH IPV4 TCP => DROP
98	0	0	i--	ETH IPV4 TCP => DROP
99	0	0	i--	ETH IPV4 TCP => DROP
100	0	0	i--	ETH IPV4 TCP => DROP
101	0	0	i--	ETH IPV4 TCP => DROP
102	0	0	i--	ETH IPV4 TCP => DROP
103	0	0	i--	ETH IPV4 TCP => DROP
104	0	0	i--	ETH IPV4 TCP => DROP
105	0	0	i--	ETH IPV4 TCP => DROP
106	0	0	i--	ETH IPV4 TCP => DROP
107	0	0	i--	ETH IPV4 TCP => DROP
108	0	0	i--	ETH IPV4 TCP => DROP
109	0	0	i--	ETH IPV4 TCP => DROP
110	0	0	i--	ETH IPV4 TCP => DROP
111	0	0	i--	ETH IPV4 TCP => DROP
112	0	0	i--	ETH IPV4 TCP => DROP
113	0	0	i--	ETH IPV4 TCP => DROP
114	0	0	i--	ETH IPV4 TCP => DROP
115	0	0	i--	ETH IPV4 TCP => DROP
116	0	0	i--	ETH IPV4 TCP => DROP
117	0	0	i--	ETH IPV4 TCP => DROP
118	0	0	i--	ETH IPV4 TCP => DROP
119	0	0	i--	ETH IPV4 TCP => DROP
120	0	0	i--	ETH IPV4 TCP => DROP
121	0	0	i--	ETH IPV4 TCP => DROP
122	0	0	i--	ETH IPV4 TCP => DROP
123	0	0	i--	ETH IPV4 TCP => DROP
124	0	0	i--	ETH IPV4 TCP => DROP
125	0	0	i--	ETH IPV4 TCP => DROP
126	0	0	i--	ETH IPV4 TCP => DROP
127	0	0	i--	ETH IPV4 TCP => DROP
128	0	0	i--	ETH IPV4 TCP => DROP
129	0	0	i--	ETH IPV4 TCP => DROP
130	0	0	i--	ETH IPV4 TCP => DROP
131	0	0	i--	ETH IPV4 TCP => DROP
132	0	0	i--	ETH IPV4 TCP => DROP
133	0	0	i--	ETH IPV4 TCP => DROP
134	0	0	i--	ETH IPV4 TCP => DROP
135	0	0	i--	ETH IPV4 TCP => DROP
136	0	0	i--	ETH IPV4 TCP => DROP
137	0	0	i--	ETH IPV4 TCP => DROP
138	0	0	i--	ETH IPV4 TCP => DROP
139	0	0	i--	ETH IPV4 TCP => DROP
140	0	0	i--	ETH IPV4 TCP => DROP
141	0	0	i--	ETH IPV4 TCP => DROP
142	0	0	i--	ETH IPV4 TCP => DROP
143	0	0	i--	ETH IPV4 TCP => DROP
144	0	0	i--	ETH IPV4 TCP => DROP
145	0	0	i--	ETH IPV4 TCP => DROP
146	0	0	i--	ETH IPV4 TCP => DROP
147	0	0	i--	ETH IPV4 TCP => DROP
148	0	0	i--	ETH IPV4 TCP => DROP
149	0	0	i--	ETH IPV4 TCP => DROP
150	0	0	i--	ETH IPV4 TCP => DROP
151	0	0	i--	ETH IPV4 TCP => DROP
152	0	0	i--	ETH IPV4 TCP => DROP
153	0	0	i--	ETH IPV4 TCP => DROP
154	0	0	i--	ETH IPV4 TCP => DROP
155	0	0	i--	ETH IPV4 TCP => DROP
156	0	0	i--	ETH IPV4 TCP => DROP
157	0	0	i--	ETH IPV4 TCP => DROP
158	0	0	i--	ETH IPV4 TCP => DROP
159	0	0	i--	ETH IPV4 TCP => DROP
160	0	0	i--	ETH IPV4 TCP => DROP
161	0	0	i--	ETH IPV4 TCP => DROP
162	0	0	i--	ETH IPV4 TCP => DROP
163	0	0	i--	ETH IPV4 TCP => DROP
164	0	0	i--	ETH IPV4 TCP => DROP
165	0	0	i--	ETH IPV4 TCP => DROP
166	0	0	i--	ETH IPV4 TCP => DROP
167	0	0	i--	ETH IPV4 TCP => DROP
168	0	0	i--	ETH IPV4 TCP => DROP
169	0	0	i--	ETH IPV4 TCP => DROP
170	0	0	i--	ETH IPV4 TCP => DROP
171	0	0	i--	ETH IPV4 TCP => DROP
172	0	0	i--	ETH IPV4 TCP => DROP
173	0	0	i--	ETH IPV4 TCP => DROP
174	0	0	i--	ETH IPV4 TCP => DROP
175	0	0	i--	ETH IPV4 TCP => DROP
176	0	0	i--	ETH IPV4 TCP => DROP
177	0	0	i--	ETH IPV4 TCP => DROP
178	0	0	i--	ETH IPV4 TCP => DROP
179	0	0	i--	ETH IPV4 TCP => DROP
180	0	0	i--	ETH IPV4 TCP => DROP
181	0	0	i--	ETH IPV4 TCP => DROP
182	0	0	i--	ETH IPV4 TCP => DROP
183	0	0	i--	ETH IPV4 TCP => DROP
184	0	0	i--	ETH IPV4 TCP => DROP
185	0	0	i--	ETH IPV4 TCP => DROP
186	0	0	i--	ETH IPV4 TCP => DROP
187	0	0	i--	ETH IPV4 TCP => DROP
188	0	0	i--	ETH IPV4 TCP => DROP
189	0	0	i--	ETH IPV4 TCP => DROP
190	0	0	i--	ETH IPV4 TCP => DROP
191	0	0	i--	ETH IPV4 TCP => DROP
192	0	0	i--	ETH IPV4 TCP => DROP
193	0	0	i--	ETH IPV4 TCP => DROP
194	0	0	i--	ETH IPV4 TCP => DROP
195	0	0	i--	ETH IPV4 TCP => DROP
196	0	0	i--	ETH IPV4 TCP => DROP
197	0	0	i--	ETH IPV4 TCP => DROP
198	0	0	i--	ETH IPV4 TCP => DROP
199	0	0	i--	ETH IPV4 TCP => DROP
200	0	0	i--	ETH IPV4 TCP => DROP
201	0	0	i--	ETH IPV4 TCP => DROP
202	0	0	i--	ETH IPV4 TCP => DROP
203	0	0	i--	ETH IPV4 TCP => DROP
204	0	0	i--	ETH IPV4 TCP => DROP
205	0	0	i--	ETH IPV4 TCP => DROP
206	0	0	i--	ETH IPV4 TCP => DROP
207	0	0	i--	ETH IPV4 TCP => DROP
208	0	0	i--	ETH IPV4 TCP => DROP
209	0	0	i--	ETH IPV4 TCP => DROP
210	0	0	i--	ETH IPV4 TCP => DROP
211	0	0	i--	ETH IPV4 TCP => DROP
212	0	0	i--	ETH IPV4 TCP => DROP
213	0	0	i--	ETH IPV4 TCP => DROP
214	0	0	i--	ETH IPV4 TCP => DROP
215	0	0	i--	ETH IPV4 TCP => DROP
216	0	0	i--	ETH IPV4 TCP => DROP
217	0	0	i--	ETH IPV4 TCP => DROP
218	0	0	i--	ETH IPV4 TCP => DROP
219	0	0	i--	ETH IPV4 TCP => DROP
220	0	0	i--	ETH IPV4 TCP => DROP
221	0	0	i--	ETH IPV4 TCP => DROP
222	0	0	i--	ETH IPV4 TCP => DROP
223	0	0	i--	ETH IPV4 TCP => DROP
224	0	0	i--	ETH IPV4 TCP => DROP
225	0	0	i--	ETH IPV4 TCP => DROP
226	0	0	i--	ETH IPV4 TCP => DROP
227	0	0	i--	ETH IPV4 TCP => DROP
228	0	0	i--	ETH IPV4 TCP => DROP
229	0	0	i--	ETH IPV4 TCP => DROP
230	0	0	i--	ETH IPV4 TCP => DROP
231	0	0	i--	ETH IPV4 TCP => DROP
232	0	0	i--	ETH IPV4 TCP => DROP
233	0	0	i--	ETH IPV4 TCP => DROP
234	0	0	i--	ETH IPV4 TCP => DROP
235	0	0	i--	ETH IPV4 TCP => DROP
236	0	0	i--	ETH IPV4 TCP => DROP
237	0	0	i--	ETH IPV4 TCP => DROP
238	0	0	i--	ETH IPV4 TCP => DROP
239	0	0	i--	ETH IPV4 TCP => DROP
240	0	0	i--	ETH IPV4 TCP => DROP
241	0	0	i--	ETH IPV4 TCP => DROP
242	0	0	i--	ETH IPV4 TCP => DROP
243	0	0	i--	ETH IPV4 TCP => DROP
244	0	0	i--	ETH IPV4 TCP => DROP
245	0	0	i--	ETH IPV4 TCP => DROP
246	0	0	i--	ETH IPV4 TCP => DROP
247	0	0	i--	ETH IPV4 TCP => DROP
248	0	0	i--	ETH IPV4 TCP => DROP
249	0	0	i--	ETH IPV4 TCP => DROP
250	0	0	i--	ETH IPV4 TCP => DROP
251	0	0	i--	ETH IPV4 TCP => DROP
252	0	0	i--	ETH IPV4 TCP => DROP
253	0	0	i--	ETH IPV4 TCP => DROP
254	0	0	i--	ETH IPV4 TCP => DROP
255	0	0	i--	ETH IPV4 TCP => DROP
256	0	0	i--	ETH IPV4 TCP => DROP
257	0	0	i--	ETH IPV4 TCP => DROP
258	0	0	i--	ETH IPV4 TCP => DROP
259	0	0	i--	ETH IPV4 TCP => DROP
260	0	0	i--	ETH IPV4 TCP => DROP
261	0	0	i--	ETH IPV4 TCP => DROP
262	0	0	i--	ETH IPV4 TCP => DROP
263	0	0	i--	ETH IPV4 TCP => DROP
264	0	0	i--	ETH IPV4 TCP => DROP
265	0	0	i--	ETH IPV4 TCP => DROP
266	0	0	i--	ETH IPV4 TCP => DROP
267	0	0	i--	ETH IPV4 TCP => DROP
268	0	0	i--	ETH IPV4 TCP => DROP
269	0	0	i--	ETH IPV4 TCP => DROP
270	0	0	i--	ETH IPV4 TCP => DROP
271	0	0	i--	ETH IPV4 TCP => DROP
272	0	0	i--	ETH IPV4 TCP => DROP
273	0	0	i--	ETH IPV4 TCP => DROP
274	0	0	i--	ETH IPV4 TCP => DROP
275	0	0	i--	ETH IPV4 TCP => DROP
276	0	0	i--	ETH IPV4 TCP => DROP
277	0	0	i--	ETH IPV4 TCP => DROP
278	0	0	i--	ETH IPV4 TCP => DROP
279	0	0	i--	ETH IPV4 TCP => DROP
280	0	0	i--	ETH IPV4 TCP => DROP
281	0	0	i--	ETH IPV4 TCP => DROP
282	0	0	i--	ETH IPV4 TCP => DROP
283	0	0	i--	ETH IPV4 TCP => DROP
284	0	0	i--	ETH IPV4 TCP => DROP
285	0	0	i--	ETH IPV4 TCP => DROP
286	0	0	i--	ETH IPV4 TCP => DROP
287	0	0	i--	ETH IPV4 TCP => DROP
288	0	0	i--	ETH IPV4 TCP => DROP
289	0	0	i--	ETH IPV4 TCP => DROP
290	0	0	i--	ETH IPV4 TCP => DROP
291	0	0	i--	ETH IPV4 TCP => DROP
292	0	0	i--	ETH IPV4 TCP => DROP
293	0	0	i--	ETH IPV4 TCP => DROP
294	0	0	i--	ETH IPV4 TCP => DROP
295	0	0	i--	ETH IPV4 TCP => DROP
296	0	0	i--	ETH IPV4 TCP => DROP
297	0	0	i--	ETH IPV4 TCP => DROP
298	0	0	i--	ETH IPV4 TCP => DROP
299	0	0	i--	ETH IPV4 TCP => DROP
300	0	0	i--	ETH IPV4 TCP => DROP
301	0	0	i--	ETH IPV4 TCP => DROP
302	0	0	i--	ETH IPV4 TCP => DROP
303	0	0	i--	ETH IPV4 TCP => DROP
304	0	0	i--	ETH IPV4 TCP => DROP
305	0	0	i--	ETH IPV4 TCP => DROP
306	0	0	i--	ETH IPV4 TCP => DROP
307	0	0	i--	ETH IPV4 TCP => DROP
308	0	0	i--	ETH IPV4 TCP => DROP
309	0	0	i--	ETH IPV4 TCP => DROP
310	0	0	i--	ETH IPV4 TCP => DROP
311	0	0	i--	ETH IPV4 TCP => DROP
312	0	0	i--	ETH IPV4 TCP => DROP
313	0	0	i--	ETH IPV4 TCP => DROP
314	0	0	i--	ETH IPV4 TCP => DROP
315	0	0	i--	ETH IPV4 TCP => DROP
316	0	0	i--	ETH IPV4 TCP => DROP
317	0	0	i--	ETH IPV4 TCP => DROP
318	0	0	i--	ETH IPV4 TCP => DROP
319	0	0	i--	ETH IPV4 TCP => DROP
320	0	0	i--	ETH IPV4 TCP => DROP
321	0	0	i--	ETH IPV4 TCP => DROP
322	0	0	i--	ETH IPV4 TCP => DROP
323	0	0	i--	ETH IPV4 TCP => DROP
324	0	0	i--	ETH IPV4 TCP => DROP
325	0	0	i--	ETH IPV4 TCP => DROP
326	0	0	i--	ETH IPV4 TCP => DROP
327	0	0	i--	ETH IPV4 TCP => DROP
328	0	0	i--	ETH IPV4 TCP => DROP
329	0	0	i--	ETH IPV4 TCP => DROP
330	0	0	i--	ETH IPV4 TCP => DROP
331	0	0	i--	ETH IPV4 TCP => DROP
332	0	0	i--	ETH IPV4 TCP => DROP
333	0	0	i--	ETH IPV4 TCP => DROP
334	0	0	i--	ETH IPV4 TCP => DROP
335	0	0	i--	ETH IPV4 TCP => DROP
336	0	0	i--	ETH IPV4 TCP => DROP
337	0	0	i--	ETH IPV4 TCP => DROP
338	0	0	i--	ETH IPV4 TCP => DROP
339	0	0	i--	ETH IPV4 TCP => DROP
340	0	0	i--	ETH IPV4 TCP => DROP
341	0	0	i--	ETH IPV4 TCP => DROP
342	0	0	i--	ETH IPV4 TCP => DROP
343	0	0	i--	ETH IPV4 TCP => DROP
344	0	0	i--	ETH IPV4 TCP => DROP
345	0	0	i--	ETH IPV4 TCP => DROP
346	0	0	i--	ETH IPV4 TCP => DROP
347	0	0	i--	ETH IPV4 TCP => DROP
348	0	0	i--	ETH IPV4 TCP => DROP
349	0	0	i--	ETH IPV4 TCP => DROP
350	0	0	i--	ETH IPV4 TCP => DROP
351	0	0	i--	ETH IPV4 TCP => DROP
352	0	0	i--	ETH IPV4 TCP => DROP
353	0	0	i--	ETH IPV4 TCP => DROP
354	0	0	i--	ETH IPV4 TCP => DROP
355	0	0	i--	ETH IPV4 TCP => DROP
356	0	0	i--	ETH IPV4 TCP => DROP
357	0	0	i--	ETH IPV4 TCP => DROP
358	0	0	i--	ETH IPV4 TCP => DROP
359	0	0	i--	ETH IPV4 TCP => DROP
360	0	0	i--	ETH IPV4 TCP => DROP
361	0	0	i--	ETH IPV4 TCP => DROP
362	0	0	i--	ETH IPV4 TCP => DROP
363	0	0	i--	ETH IPV4 TCP => DROP
364	0	0	i--	ETH IPV4 TCP => DROP
365	0	0	i--	ETH IPV4 TCP => DROP
366	0	0	i--	ETH IPV4 TCP => DROP
367	0	0	i--	ETH IPV4 TCP => DROP
368	0	0	i--	ETH IPV4 TCP => DROP
369	0	0	i--	ETH IPV4 TCP => DROP
370	0	0	i--	ETH IPV4 TCP => DROP
371	0	0	i--	ETH IPV4 TCP => DROP
372	0	0	i--	ETH IPV4 TCP => DROP
373	0	0	i--	ETH IPV4 TCP => DROP
374	0	0	i--	ETH IPV4 TCP => DROP
375	0	0	i--	ETH IPV4 TCP => DROP
376	0	0	i--	ETH IPV4 TCP => DROP
377	0	0	i--	ETH IPV4 TCP => DROP
378	0	0	i--	ETH IPV4 TCP => DROP
379	0	0	i--	ETH IPV4 TCP => DROP
380	0	0	i--	ETH IPV4 TCP => DROP
381	0	0	i--	ETH IPV4 TCP => DROP
382	0	0	i--	ETH IPV4 TCP => DROP
383	0	0	i--	ETH IPV4 TCP => DROP
384	0	0	i--	ETH IPV4 TCP => DROP
385	0	0	i--	ETH IPV4 TCP => DROP
386	0	0	i--	ETH IPV4 TCP => DROP
387	0	0	i--	ETH IPV4 TCP => DROP
388	0	0	i--	ETH IPV4 TCP => DROP
389	0	0	i--	ETH IPV4 TCP => DROP
390	0	0	i--	ETH IPV4 TCP => DROP
391	0	0	i--	ETH IPV4 TCP => DROP
392	0	0	i--	ETH IPV4 TCP => DROP
393	0	0	i--	ETH IPV4 TCP => DROP
394	0	0	i--	ETH IPV4 TCP => DROP
395	0	0	i--	ETH IPV4 TCP => DROP
396	0	0	i--	ETH IPV4 TCP => DROP
397	0	0	i--	ETH IPV4 TCP => DROP
398	0	0	i--	ETH IPV4 TCP => DROP
399	0	0	i--	ETH IPV4 TCP => DROP
400	0	0	i--	ETH IPV4 TCP => DROP
401	0	0	i--	ETH IPV4 TCP => DROP
402	0	0	i--	ETH IPV4 TCP => DROP
403	0	0	i--	ETH IPV4 TCP => DROP
404	0	0	i--	ETH IPV4 TCP => DROP
405	0	0	i--	ETH IPV4 TCP => DROP
406	0	0	i--	ETH IPV4 TCP => DROP
407	0	0	i--	ETH IPV4 TCP => DROP
408	0	0	i--	ETH IPV4 TCP => DROP
409	0	0	i--	ETH IPV4 TCP => DROP
410	0	0	i--	ETH IPV4 TCP => DROP
411	0	0	i--	ETH IPV4 TCP => DROP
412	0	0	i--	ETH IPV4 TCP => DROP
413	0	0	i--	ETH IPV4 TCP => DROP
414	0	0	i--	ETH IPV4 TCP => DROP
415	0	0	i--	ETH IPV4 TCP => DROP
416	0	0	i--	ETH IPV4 TCP => DROP
417	0	0	i--	ETH IPV4 TCP => DROP
418	0	0	i--	ETH IPV4 TCP => DROP
419	0	0	i--	ETH IPV4 TCP => DROP
420	0	0	i--	ETH IPV4 TCP => DROP
421	0	0	i--	ETH IPV4 TCP => DROP
422	0	0	i--	ETH IPV4 TCP => DROP
423	0	0	i--	ETH IPV4 TCP => DROP
424	0	0	i--	ETH IPV4 TCP => DROP
425	0	0	i--	ETH IPV4 TCP => DROP
426	0	0	i--	ETH IPV4 TCP => DROP
427	0	0	i--	ETH IPV4 TCP => DROP
428	0	0	i--	ETH IPV4 TCP => DROP
429	0	0	i--	ETH IPV4 TCP => DROP
430	0	0	i--	ETH IPV4 TCP => DROP
431	0	0	i--	ETH IPV4 TCP => DROP
432	0	0	i--	ETH IPV4 TCP => DROP
433	0	0	i--	ETH IPV4 TCP => DROP
434	0	0	i--	ETH IPV4 TCP => DROP
435	0	0	i--	ETH IPV4 TCP => DROP
436	0	0	i--	ETH IPV4 TCP => DROP
437	0	0	i--	ETH IPV4 TCP => DROP
438	0	0	i--	ETH IPV4 TCP => DROP
439	0	0	i--	ETH IPV4 TCP => DROP
440	0	0	i--	ETH IPV4 TCP => DROP
441	0	0	i--	ETH IPV4 TCP => DROP
442	0	0	i--	ETH IPV4 TCP => DROP
443	0	0	i--	ETH IPV4 TCP => DROP
444	0	0	i--	ETH IPV4 TCP => DROP
445	0	0	i--	ETH IPV4 TCP => DROP
446	0	0	i--	ETH IPV4 TCP => DROP
447	0	0	i--	ETH IPV4 TCP => DROP
448	0	0	i--	ETH IPV4 TCP => DROP
449	0	0	i--	ETH IPV4 TCP => DROP
450	0	0	i--	ETH IPV4 TCP => DROP
451	0	0	i--	ETH IPV4 TCP => DROP
452	0	0	i--	ETH IPV4 TCP => DROP
453	0	0	i--	ETH IPV4 TCP => DROP
454	0	0	i--	ETH IPV4 TCP => DROP
455	0	0	i--	ETH IPV4 TCP => DROP
456	0	0	i--	ETH IPV4 TCP => DROP
457	0	0	i--	ETH IPV4 TCP => DROP
458	0	0	i--	ETH IPV4 TCP => DROP
459	0	0	i--	ETH IPV4 TCP => DROP
460	0	0	i--	ETH IPV4 TCP => DROP
461	0	0	i--	ETH IPV4 TCP => DROP
462	0	0	i--	ETH IPV4 TCP => DROP
463	0	0	i--	ETH IPV4 TCP => DROP
464	0	0	i--	ETH IPV4 TCP => DROP
465	0	0	i--	ETH IPV4 TCP => DROP
466	0	0	i--	ETH IPV4 TCP => DROP
467	0	0	i--	ETH IPV4 TCP => DROP
468	0	0	i--	ETH IPV4 TCP => DROP
469	0	0	i--	ETH IPV4 TCP => DROP
470	0	0	i--	ETH IPV4 TCP => DROP
471	0	0	i--	ETH IPV4 TCP => DROP
472	0	0	i--	ETH IPV4 TCP => DROP
473	0	0	i--	ETH IPV4 TCP => DROP
474	0	0	i--	ETH IPV4 TCP => DROP
475	0	0	i--	ETH IPV4 TCP => DROP
476	0	0	i--	ETH IPV4 TCP => DROP
477	0	0	i--	ETH IPV4 TCP => DROP
478	0	0	i--	ETH IPV4 TCP => DROP
479	0	0	i--	ETH IPV4 TCP => DROP
480	0	0	i--	ETH IPV4 TCP => DROP
481	0	0	i--	ETH IPV4 TCP => DROP
482	0	0	i--	ETH IPV4 TCP => DROP
483	0	0	i--	ETH IPV4 TCP => DROP
484	0	0	i--	ETH IPV4 TCP => DROP
485	0	0	i--	ETH IPV4 TCP => DROP
486	0	0	i--	ETH IPV4 TCP => DROP
487	0	0	i--	ETH IPV4 TCP => DROP
488	0	0	i--	ETH IPV4 TCP => DROP
489	0	0	i--	ETH IPV4 TCP => DROP
490	0	0	i--	ETH IPV4 TCP => DROP
491	0	0	i--	ETH IPV4 TCP => DROP
492	0	0	i--	ETH IPV4 TCP => DROP
493	0	0	i--	ETH IPV4 TCP => DROP
494	0	0	i--	ETH IPV4 TCP => DROP
495	0	0	i--	ETH IPV4 TCP => DROP
496	0	0	i--	ETH IPV4 TCP => DROP
497	0	0	i--	ETH IPV4 TCP => DROP
498	0	0	i--	ETH IPV4 TCP => DROP
499	0	0	i--	ETH IPV4 TCP => DROP
500	0	0	i--	ETH IPV4 TCP => DROP
501	0	0	i--	ETH IPV4 TCP => DROP
502	0	0	i--	ETH IPV4 TCP => DROP
503	0	0	i--	ETH IPV4 TCP => DROP
504	0	0	i--	ETH IPV4 TCP => DROP
505	0	0	i--	ETH IPV4 TCP => DROP
506	0	0	i--	ETH IPV4 TCP => DROP
507	0	0	i--	ETH IPV4 TCP => DROP
508	0	0	i--	ETH IPV4 TCP => DROP
509	0	0	i--	ETH IPV4 TCP => DROP
510	0	0	i--	ETH IPV4 TCP => DROP
26/03/2021 10:53:08             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.1.255 src mask 255.255.255.255 / tcp / end actions drop / end
26/03/2021 10:53:08             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #511 created
26/03/2021 10:53:08             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.2.255 src mask 255.255.255.254 / tcp / end actions drop / end
26/03/2021 10:53:09             dut.10.240.183.133: 
ice_acl_hw_set_conf(): Fail to add entry.
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): failed to set hw configure.: File exists
26/03/2021 10:53:09             dut.10.240.183.133: flow list 0
26/03/2021 10:53:09             dut.10.240.183.133: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 TCP => DROP
1	0	0	i--	ETH IPV4 TCP => DROP
2	0	0	i--	ETH IPV4 TCP => DROP
3	0	0	i--	ETH IPV4 TCP => DROP
4	0	0	i--	ETH IPV4 TCP => DROP
5	0	0	i--	ETH IPV4 TCP => DROP
6	0	0	i--	ETH IPV4 TCP => DROP
7	0	0	i--	ETH IPV4 TCP => DROP
8	0	0	i--	ETH IPV4 TCP => DROP
9	0	0	i--	ETH IPV4 TCP => DROP
10	0	0	i--	ETH IPV4 TCP => DROP
11	0	0	i--	ETH IPV4 TCP => DROP
12	0	0	i--	ETH IPV4 TCP => DROP
13	0	0	i--	ETH IPV4 TCP => DROP
14	0	0	i--	ETH IPV4 TCP => DROP
15	0	0	i--	ETH IPV4 TCP => DROP
16	0	0	i--	ETH IPV4 TCP => DROP
17	0	0	i--	ETH IPV4 TCP => DROP
18	0	0	i--	ETH IPV4 TCP => DROP
19	0	0	i--	ETH IPV4 TCP => DROP
20	0	0	i--	ETH IPV4 TCP => DROP
21	0	0	i--	ETH IPV4 TCP => DROP
22	0	0	i--	ETH IPV4 TCP => DROP
23	0	0	i--	ETH IPV4 TCP => DROP
24	0	0	i--	ETH IPV4 TCP => DROP
25	0	0	i--	ETH IPV4 TCP => DROP
26	0	0	i--	ETH IPV4 TCP => DROP
27	0	0	i--	ETH IPV4 TCP => DROP
28	0	0	i--	ETH IPV4 TCP => DROP
29	0	0	i--	ETH IPV4 TCP => DROP
30	0	0	i--	ETH IPV4 TCP => DROP
31	0	0	i--	ETH IPV4 TCP => DROP
32	0	0	i--	ETH IPV4 TCP => DROP
33	0	0	i--	ETH IPV4 TCP => DROP
34	0	0	i--	ETH IPV4 TCP => DROP
35	0	0	i--	ETH IPV4 TCP => DROP
36	0	0	i--	ETH IPV4 TCP => DROP
37	0	0	i--	ETH IPV4 TCP => DROP
38	0	0	i--	ETH IPV4 TCP => DROP
39	0	0	i--	ETH IPV4 TCP => DROP
40	0	0	i--	ETH IPV4 TCP => DROP
41	0	0	i--	ETH IPV4 TCP => DROP
42	0	0	i--	ETH IPV4 TCP => DROP
43	0	0	i--	ETH IPV4 TCP => DROP
44	0	0	i--	ETH IPV4 TCP => DROP
45	0	0	i--	ETH IPV4 TCP => DROP
46	0	0	i--	ETH IPV4 TCP => DROP
47	0	0	i--	ETH IPV4 TCP => DROP
48	0	0	i--	ETH IPV4 TCP => DROP
49	0	0	i--	ETH IPV4 TCP => DROP
50	0	0	i--	ETH IPV4 TCP => DROP
51	0	0	i--	ETH IPV4 TCP => DROP
52	0	0	i--	ETH IPV4 TCP => DROP
53	0	0	i--	ETH IPV4 TCP => DROP
54	0	0	i--	ETH IPV4 TCP => DROP
55	0	0	i--	ETH IPV4 TCP => DROP
56	0	0	i--	ETH IPV4 TCP => DROP
57	0	0	i--	ETH IPV4 TCP => DROP
58	0	0	i--	ETH IPV4 TCP => DROP
59	0	0	i--	ETH IPV4 TCP => DROP
60	0	0	i--	ETH IPV4 TCP => DROP
61	0	0	i--	ETH IPV4 TCP => DROP
62	0	0	i--	ETH IPV4 TCP => DROP
63	0	0	i--	ETH IPV4 TCP => DROP
64	0	0	i--	ETH IPV4 TCP => DROP
65	0	0	i--	ETH IPV4 TCP => DROP
66	0	0	i--	ETH IPV4 TCP => DROP
67	0	0	i--	ETH IPV4 TCP => DROP
68	0	0	i--	ETH IPV4 TCP => DROP
69	0	0	i--	ETH IPV4 TCP => DROP
70	0	0	i--	ETH IPV4 TCP => DROP
71	0	0	i--	ETH IPV4 TCP => DROP
72	0	0	i--	ETH IPV4 TCP => DROP
73	0	0	i--	ETH IPV4 TCP => DROP
74	0	0	i--	ETH IPV4 TCP => DROP
75	0	0	i--	ETH IPV4 TCP => DROP
76	0	0	i--	ETH IPV4 TCP => DROP
77	0	0	i--	ETH IPV4 TCP => DROP
78	0	0	i--	ETH IPV4 TCP => DROP
79	0	0	i--	ETH IPV4 TCP => DROP
80	0	0	i--	ETH IPV4 TCP => DROP
81	0	0	i--	ETH IPV4 TCP => DROP
82	0	0	i--	ETH IPV4 TCP => DROP
83	0	0	i--	ETH IPV4 TCP => DROP
84	0	0	i--	ETH IPV4 TCP => DROP
85	0	0	i--	ETH IPV4 TCP => DROP
86	0	0	i--	ETH IPV4 TCP => DROP
87	0	0	i--	ETH IPV4 TCP => DROP
88	0	0	i--	ETH IPV4 TCP => DROP
89	0	0	i--	ETH IPV4 TCP => DROP
90	0	0	i--	ETH IPV4 TCP => DROP
91	0	0	i--	ETH IPV4 TCP => DROP
92	0	0	i--	ETH IPV4 TCP => DROP
93	0	0	i--	ETH IPV4 TCP => DROP
94	0	0	i--	ETH IPV4 TCP => DROP
95	0	0	i--	ETH IPV4 TCP => DROP
96	0	0	i--	ETH IPV4 TCP => DROP
97	0	0	i--	ETH IPV4 TCP => DROP
98	0	0	i--	ETH IPV4 TCP => DROP
99	0	0	i--	ETH IPV4 TCP => DROP
100	0	0	i--	ETH IPV4 TCP => DROP
101	0	0	i--	ETH IPV4 TCP => DROP
102	0	0	i--	ETH IPV4 TCP => DROP
103	0	0	i--	ETH IPV4 TCP => DROP
104	0	0	i--	ETH IPV4 TCP => DROP
105	0	0	i--	ETH IPV4 TCP => DROP
106	0	0	i--	ETH IPV4 TCP => DROP
107	0	0	i--	ETH IPV4 TCP => DROP
108	0	0	i--	ETH IPV4 TCP => DROP
109	0	0	i--	ETH IPV4 TCP => DROP
110	0	0	i--	ETH IPV4 TCP => DROP
111	0	0	i--	ETH IPV4 TCP => DROP
112	0	0	i--	ETH IPV4 TCP => DROP
113	0	0	i--	ETH IPV4 TCP => DROP
114	0	0	i--	ETH IPV4 TCP => DROP
115	0	0	i--	ETH IPV4 TCP => DROP
116	0	0	i--	ETH IPV4 TCP => DROP
117	0	0	i--	ETH IPV4 TCP => DROP
118	0	0	i--	ETH IPV4 TCP => DROP
119	0	0	i--	ETH IPV4 TCP => DROP
120	0	0	i--	ETH IPV4 TCP => DROP
121	0	0	i--	ETH IPV4 TCP => DROP
122	0	0	i--	ETH IPV4 TCP => DROP
123	0	0	i--	ETH IPV4 TCP => DROP
124	0	0	i--	ETH IPV4 TCP => DROP
125	0	0	i--	ETH IPV4 TCP => DROP
126	0	0	i--	ETH IPV4 TCP => DROP
127	0	0	i--	ETH IPV4 TCP => DROP
128	0	0	i--	ETH IPV4 TCP => DROP
129	0	0	i--	ETH IPV4 TCP => DROP
130	0	0	i--	ETH IPV4 TCP => DROP
131	0	0	i--	ETH IPV4 TCP => DROP
132	0	0	i--	ETH IPV4 TCP => DROP
133	0	0	i--	ETH IPV4 TCP => DROP
134	0	0	i--	ETH IPV4 TCP => DROP
135	0	0	i--	ETH IPV4 TCP => DROP
136	0	0	i--	ETH IPV4 TCP => DROP
137	0	0	i--	ETH IPV4 TCP => DROP
138	0	0	i--	ETH IPV4 TCP => DROP
139	0	0	i--	ETH IPV4 TCP => DROP
140	0	0	i--	ETH IPV4 TCP => DROP
141	0	0	i--	ETH IPV4 TCP => DROP
142	0	0	i--	ETH IPV4 TCP => DROP
143	0	0	i--	ETH IPV4 TCP => DROP
144	0	0	i--	ETH IPV4 TCP => DROP
145	0	0	i--	ETH IPV4 TCP => DROP
146	0	0	i--	ETH IPV4 TCP => DROP
147	0	0	i--	ETH IPV4 TCP => DROP
148	0	0	i--	ETH IPV4 TCP => DROP
149	0	0	i--	ETH IPV4 TCP => DROP
150	0	0	i--	ETH IPV4 TCP => DROP
151	0	0	i--	ETH IPV4 TCP => DROP
152	0	0	i--	ETH IPV4 TCP => DROP
153	0	0	i--	ETH IPV4 TCP => DROP
154	0	0	i--	ETH IPV4 TCP => DROP
155	0	0	i--	ETH IPV4 TCP => DROP
156	0	0	i--	ETH IPV4 TCP => DROP
157	0	0	i--	ETH IPV4 TCP => DROP
158	0	0	i--	ETH IPV4 TCP => DROP
159	0	0	i--	ETH IPV4 TCP => DROP
160	0	0	i--	ETH IPV4 TCP => DROP
161	0	0	i--	ETH IPV4 TCP => DROP
162	0	0	i--	ETH IPV4 TCP => DROP
163	0	0	i--	ETH IPV4 TCP => DROP
164	0	0	i--	ETH IPV4 TCP => DROP
165	0	0	i--	ETH IPV4 TCP => DROP
166	0	0	i--	ETH IPV4 TCP => DROP
167	0	0	i--	ETH IPV4 TCP => DROP
168	0	0	i--	ETH IPV4 TCP => DROP
169	0	0	i--	ETH IPV4 TCP => DROP
170	0	0	i--	ETH IPV4 TCP => DROP
171	0	0	i--	ETH IPV4 TCP => DROP
172	0	0	i--	ETH IPV4 TCP => DROP
173	0	0	i--	ETH IPV4 TCP => DROP
174	0	0	i--	ETH IPV4 TCP => DROP
175	0	0	i--	ETH IPV4 TCP => DROP
176	0	0	i--	ETH IPV4 TCP => DROP
177	0	0	i--	ETH IPV4 TCP => DROP
178	0	0	i--	ETH IPV4 TCP => DROP
179	0	0	i--	ETH IPV4 TCP => DROP
180	0	0	i--	ETH IPV4 TCP => DROP
181	0	0	i--	ETH IPV4 TCP => DROP
182	0	0	i--	ETH IPV4 TCP => DROP
183	0	0	i--	ETH IPV4 TCP => DROP
184	0	0	i--	ETH IPV4 TCP => DROP
185	0	0	i--	ETH IPV4 TCP => DROP
186	0	0	i--	ETH IPV4 TCP => DROP
187	0	0	i--	ETH IPV4 TCP => DROP
188	0	0	i--	ETH IPV4 TCP => DROP
189	0	0	i--	ETH IPV4 TCP => DROP
190	0	0	i--	ETH IPV4 TCP => DROP
191	0	0	i--	ETH IPV4 TCP => DROP
192	0	0	i--	ETH IPV4 TCP => DROP
193	0	0	i--	ETH IPV4 TCP => DROP
194	0	0	i--	ETH IPV4 TCP => DROP
195	0	0	i--	ETH IPV4 TCP => DROP
196	0	0	i--	ETH IPV4 TCP => DROP
197	0	0	i--	ETH IPV4 TCP => DROP
198	0	0	i--	ETH IPV4 TCP => DROP
199	0	0	i--	ETH IPV4 TCP => DROP
200	0	0	i--	ETH IPV4 TCP => DROP
201	0	0	i--	ETH IPV4 TCP => DROP
202	0	0	i--	ETH IPV4 TCP => DROP
203	0	0	i--	ETH IPV4 TCP => DROP
204	0	0	i--	ETH IPV4 TCP => DROP
205	0	0	i--	ETH IPV4 TCP => DROP
206	0	0	i--	ETH IPV4 TCP => DROP
207	0	0	i--	ETH IPV4 TCP => DROP
208	0	0	i--	ETH IPV4 TCP => DROP
209	0	0	i--	ETH IPV4 TCP => DROP
210	0	0	i--	ETH IPV4 TCP => DROP
211	0	0	i--	ETH IPV4 TCP => DROP
212	0	0	i--	ETH IPV4 TCP => DROP
213	0	0	i--	ETH IPV4 TCP => DROP
214	0	0	i--	ETH IPV4 TCP => DROP
215	0	0	i--	ETH IPV4 TCP => DROP
216	0	0	i--	ETH IPV4 TCP => DROP
217	0	0	i--	ETH IPV4 TCP => DROP
218	0	0	i--	ETH IPV4 TCP => DROP
219	0	0	i--	ETH IPV4 TCP => DROP
220	0	0	i--	ETH IPV4 TCP => DROP
221	0	0	i--	ETH IPV4 TCP => DROP
222	0	0	i--	ETH IPV4 TCP => DROP
223	0	0	i--	ETH IPV4 TCP => DROP
224	0	0	i--	ETH IPV4 TCP => DROP
225	0	0	i--	ETH IPV4 TCP => DROP
226	0	0	i--	ETH IPV4 TCP => DROP
227	0	0	i--	ETH IPV4 TCP => DROP
228	0	0	i--	ETH IPV4 TCP => DROP
229	0	0	i--	ETH IPV4 TCP => DROP
230	0	0	i--	ETH IPV4 TCP => DROP
231	0	0	i--	ETH IPV4 TCP => DROP
232	0	0	i--	ETH IPV4 TCP => DROP
233	0	0	i--	ETH IPV4 TCP => DROP
234	0	0	i--	ETH IPV4 TCP => DROP
235	0	0	i--	ETH IPV4 TCP => DROP
236	0	0	i--	ETH IPV4 TCP => DROP
237	0	0	i--	ETH IPV4 TCP => DROP
238	0	0	i--	ETH IPV4 TCP => DROP
239	0	0	i--	ETH IPV4 TCP => DROP
240	0	0	i--	ETH IPV4 TCP => DROP
241	0	0	i--	ETH IPV4 TCP => DROP
242	0	0	i--	ETH IPV4 TCP => DROP
243	0	0	i--	ETH IPV4 TCP => DROP
244	0	0	i--	ETH IPV4 TCP => DROP
245	0	0	i--	ETH IPV4 TCP => DROP
246	0	0	i--	ETH IPV4 TCP => DROP
247	0	0	i--	ETH IPV4 TCP => DROP
248	0	0	i--	ETH IPV4 TCP => DROP
249	0	0	i--	ETH IPV4 TCP => DROP
250	0	0	i--	ETH IPV4 TCP => DROP
251	0	0	i--	ETH IPV4 TCP => DROP
252	0	0	i--	ETH IPV4 TCP => DROP
253	0	0	i--	ETH IPV4 TCP => DROP
254	0	0	i--	ETH IPV4 TCP => DROP
255	0	0	i--	ETH IPV4 TCP => DROP
256	0	0	i--	ETH IPV4 TCP => DROP
257	0	0	i--	ETH IPV4 TCP => DROP
258	0	0	i--	ETH IPV4 TCP => DROP
259	0	0	i--	ETH IPV4 TCP => DROP
260	0	0	i--	ETH IPV4 TCP => DROP
261	0	0	i--	ETH IPV4 TCP => DROP
262	0	0	i--	ETH IPV4 TCP => DROP
263	0	0	i--	ETH IPV4 TCP => DROP
264	0	0	i--	ETH IPV4 TCP => DROP
265	0	0	i--	ETH IPV4 TCP => DROP
266	0	0	i--	ETH IPV4 TCP => DROP
267	0	0	i--	ETH IPV4 TCP => DROP
268	0	0	i--	ETH IPV4 TCP => DROP
269	0	0	i--	ETH IPV4 TCP => DROP
270	0	0	i--	ETH IPV4 TCP => DROP
271	0	0	i--	ETH IPV4 TCP => DROP
272	0	0	i--	ETH IPV4 TCP => DROP
273	0	0	i--	ETH IPV4 TCP => DROP
274	0	0	i--	ETH IPV4 TCP => DROP
275	0	0	i--	ETH IPV4 TCP => DROP
276	0	0	i--	ETH IPV4 TCP => DROP
277	0	0	i--	ETH IPV4 TCP => DROP
278	0	0	i--	ETH IPV4 TCP => DROP
279	0	0	i--	ETH IPV4 TCP => DROP
280	0	0	i--	ETH IPV4 TCP => DROP
281	0	0	i--	ETH IPV4 TCP => DROP
282	0	0	i--	ETH IPV4 TCP => DROP
283	0	0	i--	ETH IPV4 TCP => DROP
284	0	0	i--	ETH IPV4 TCP => DROP
285	0	0	i--	ETH IPV4 TCP => DROP
286	0	0	i--	ETH IPV4 TCP => DROP
287	0	0	i--	ETH IPV4 TCP => DROP
288	0	0	i--	ETH IPV4 TCP => DROP
289	0	0	i--	ETH IPV4 TCP => DROP
290	0	0	i--	ETH IPV4 TCP => DROP
291	0	0	i--	ETH IPV4 TCP => DROP
292	0	0	i--	ETH IPV4 TCP => DROP
293	0	0	i--	ETH IPV4 TCP => DROP
294	0	0	i--	ETH IPV4 TCP => DROP
295	0	0	i--	ETH IPV4 TCP => DROP
296	0	0	i--	ETH IPV4 TCP => DROP
297	0	0	i--	ETH IPV4 TCP => DROP
298	0	0	i--	ETH IPV4 TCP => DROP
299	0	0	i--	ETH IPV4 TCP => DROP
300	0	0	i--	ETH IPV4 TCP => DROP
301	0	0	i--	ETH IPV4 TCP => DROP
302	0	0	i--	ETH IPV4 TCP => DROP
303	0	0	i--	ETH IPV4 TCP => DROP
304	0	0	i--	ETH IPV4 TCP => DROP
305	0	0	i--	ETH IPV4 TCP => DROP
306	0	0	i--	ETH IPV4 TCP => DROP
307	0	0	i--	ETH IPV4 TCP => DROP
308	0	0	i--	ETH IPV4 TCP => DROP
309	0	0	i--	ETH IPV4 TCP => DROP
310	0	0	i--	ETH IPV4 TCP => DROP
311	0	0	i--	ETH IPV4 TCP => DROP
312	0	0	i--	ETH IPV4 TCP => DROP
313	0	0	i--	ETH IPV4 TCP => DROP
314	0	0	i--	ETH IPV4 TCP => DROP
315	0	0	i--	ETH IPV4 TCP => DROP
316	0	0	i--	ETH IPV4 TCP => DROP
317	0	0	i--	ETH IPV4 TCP => DROP
318	0	0	i--	ETH IPV4 TCP => DROP
319	0	0	i--	ETH IPV4 TCP => DROP
320	0	0	i--	ETH IPV4 TCP => DROP
321	0	0	i--	ETH IPV4 TCP => DROP
322	0	0	i--	ETH IPV4 TCP => DROP
323	0	0	i--	ETH IPV4 TCP => DROP
324	0	0	i--	ETH IPV4 TCP => DROP
325	0	0	i--	ETH IPV4 TCP => DROP
326	0	0	i--	ETH IPV4 TCP => DROP
327	0	0	i--	ETH IPV4 TCP => DROP
328	0	0	i--	ETH IPV4 TCP => DROP
329	0	0	i--	ETH IPV4 TCP => DROP
330	0	0	i--	ETH IPV4 TCP => DROP
331	0	0	i--	ETH IPV4 TCP => DROP
332	0	0	i--	ETH IPV4 TCP => DROP
333	0	0	i--	ETH IPV4 TCP => DROP
334	0	0	i--	ETH IPV4 TCP => DROP
335	0	0	i--	ETH IPV4 TCP => DROP
336	0	0	i--	ETH IPV4 TCP => DROP
337	0	0	i--	ETH IPV4 TCP => DROP
338	0	0	i--	ETH IPV4 TCP => DROP
339	0	0	i--	ETH IPV4 TCP => DROP
340	0	0	i--	ETH IPV4 TCP => DROP
341	0	0	i--	ETH IPV4 TCP => DROP
342	0	0	i--	ETH IPV4 TCP => DROP
343	0	0	i--	ETH IPV4 TCP => DROP
344	0	0	i--	ETH IPV4 TCP => DROP
345	0	0	i--	ETH IPV4 TCP => DROP
346	0	0	i--	ETH IPV4 TCP => DROP
347	0	0	i--	ETH IPV4 TCP => DROP
348	0	0	i--	ETH IPV4 TCP => DROP
349	0	0	i--	ETH IPV4 TCP => DROP
350	0	0	i--	ETH IPV4 TCP => DROP
351	0	0	i--	ETH IPV4 TCP => DROP
352	0	0	i--	ETH IPV4 TCP => DROP
353	0	0	i--	ETH IPV4 TCP => DROP
354	0	0	i--	ETH IPV4 TCP => DROP
355	0	0	i--	ETH IPV4 TCP => DROP
356	0	0	i--	ETH IPV4 TCP => DROP
357	0	0	i--	ETH IPV4 TCP => DROP
358	0	0	i--	ETH IPV4 TCP => DROP
359	0	0	i--	ETH IPV4 TCP => DROP
360	0	0	i--	ETH IPV4 TCP => DROP
361	0	0	i--	ETH IPV4 TCP => DROP
362	0	0	i--	ETH IPV4 TCP => DROP
363	0	0	i--	ETH IPV4 TCP => DROP
364	0	0	i--	ETH IPV4 TCP => DROP
365	0	0	i--	ETH IPV4 TCP => DROP
366	0	0	i--	ETH IPV4 TCP => DROP
367	0	0	i--	ETH IPV4 TCP => DROP
368	0	0	i--	ETH IPV4 TCP => DROP
369	0	0	i--	ETH IPV4 TCP => DROP
370	0	0	i--	ETH IPV4 TCP => DROP
371	0	0	i--	ETH IPV4 TCP => DROP
372	0	0	i--	ETH IPV4 TCP => DROP
373	0	0	i--	ETH IPV4 TCP => DROP
374	0	0	i--	ETH IPV4 TCP => DROP
375	0	0	i--	ETH IPV4 TCP => DROP
376	0	0	i--	ETH IPV4 TCP => DROP
377	0	0	i--	ETH IPV4 TCP => DROP
378	0	0	i--	ETH IPV4 TCP => DROP
379	0	0	i--	ETH IPV4 TCP => DROP
380	0	0	i--	ETH IPV4 TCP => DROP
381	0	0	i--	ETH IPV4 TCP => DROP
382	0	0	i--	ETH IPV4 TCP => DROP
383	0	0	i--	ETH IPV4 TCP => DROP
384	0	0	i--	ETH IPV4 TCP => DROP
385	0	0	i--	ETH IPV4 TCP => DROP
386	0	0	i--	ETH IPV4 TCP => DROP
387	0	0	i--	ETH IPV4 TCP => DROP
388	0	0	i--	ETH IPV4 TCP => DROP
389	0	0	i--	ETH IPV4 TCP => DROP
390	0	0	i--	ETH IPV4 TCP => DROP
391	0	0	i--	ETH IPV4 TCP => DROP
392	0	0	i--	ETH IPV4 TCP => DROP
393	0	0	i--	ETH IPV4 TCP => DROP
394	0	0	i--	ETH IPV4 TCP => DROP
395	0	0	i--	ETH IPV4 TCP => DROP
396	0	0	i--	ETH IPV4 TCP => DROP
397	0	0	i--	ETH IPV4 TCP => DROP
398	0	0	i--	ETH IPV4 TCP => DROP
399	0	0	i--	ETH IPV4 TCP => DROP
400	0	0	i--	ETH IPV4 TCP => DROP
401	0	0	i--	ETH IPV4 TCP => DROP
402	0	0	i--	ETH IPV4 TCP => DROP
403	0	0	i--	ETH IPV4 TCP => DROP
404	0	0	i--	ETH IPV4 TCP => DROP
405	0	0	i--	ETH IPV4 TCP => DROP
406	0	0	i--	ETH IPV4 TCP => DROP
407	0	0	i--	ETH IPV4 TCP => DROP
408	0	0	i--	ETH IPV4 TCP => DROP
409	0	0	i--	ETH IPV4 TCP => DROP
410	0	0	i--	ETH IPV4 TCP => DROP
411	0	0	i--	ETH IPV4 TCP => DROP
412	0	0	i--	ETH IPV4 TCP => DROP
413	0	0	i--	ETH IPV4 TCP => DROP
414	0	0	i--	ETH IPV4 TCP => DROP
415	0	0	i--	ETH IPV4 TCP => DROP
416	0	0	i--	ETH IPV4 TCP => DROP
417	0	0	i--	ETH IPV4 TCP => DROP
418	0	0	i--	ETH IPV4 TCP => DROP
419	0	0	i--	ETH IPV4 TCP => DROP
420	0	0	i--	ETH IPV4 TCP => DROP
421	0	0	i--	ETH IPV4 TCP => DROP
422	0	0	i--	ETH IPV4 TCP => DROP
423	0	0	i--	ETH IPV4 TCP => DROP
424	0	0	i--	ETH IPV4 TCP => DROP
425	0	0	i--	ETH IPV4 TCP => DROP
426	0	0	i--	ETH IPV4 TCP => DROP
427	0	0	i--	ETH IPV4 TCP => DROP
428	0	0	i--	ETH IPV4 TCP => DROP
429	0	0	i--	ETH IPV4 TCP => DROP
430	0	0	i--	ETH IPV4 TCP => DROP
431	0	0	i--	ETH IPV4 TCP => DROP
432	0	0	i--	ETH IPV4 TCP => DROP
433	0	0	i--	ETH IPV4 TCP => DROP
434	0	0	i--	ETH IPV4 TCP => DROP
435	0	0	i--	ETH IPV4 TCP => DROP
436	0	0	i--	ETH IPV4 TCP => DROP
437	0	0	i--	ETH IPV4 TCP => DROP
438	0	0	i--	ETH IPV4 TCP => DROP
439	0	0	i--	ETH IPV4 TCP => DROP
440	0	0	i--	ETH IPV4 TCP => DROP
441	0	0	i--	ETH IPV4 TCP => DROP
442	0	0	i--	ETH IPV4 TCP => DROP
443	0	0	i--	ETH IPV4 TCP => DROP
444	0	0	i--	ETH IPV4 TCP => DROP
445	0	0	i--	ETH IPV4 TCP => DROP
446	0	0	i--	ETH IPV4 TCP => DROP
447	0	0	i--	ETH IPV4 TCP => DROP
448	0	0	i--	ETH IPV4 TCP => DROP
449	0	0	i--	ETH IPV4 TCP => DROP
450	0	0	i--	ETH IPV4 TCP => DROP
451	0	0	i--	ETH IPV4 TCP => DROP
452	0	0	i--	ETH IPV4 TCP => DROP
453	0	0	i--	ETH IPV4 TCP => DROP
454	0	0	i--	ETH IPV4 TCP => DROP
455	0	0	i--	ETH IPV4 TCP => DROP
456	0	0	i--	ETH IPV4 TCP => DROP
457	0	0	i--	ETH IPV4 TCP => DROP
458	0	0	i--	ETH IPV4 TCP => DROP
459	0	0	i--	ETH IPV4 TCP => DROP
460	0	0	i--	ETH IPV4 TCP => DROP
461	0	0	i--	ETH IPV4 TCP => DROP
462	0	0	i--	ETH IPV4 TCP => DROP
463	0	0	i--	ETH IPV4 TCP => DROP
464	0	0	i--	ETH IPV4 TCP => DROP
465	0	0	i--	ETH IPV4 TCP => DROP
466	0	0	i--	ETH IPV4 TCP => DROP
467	0	0	i--	ETH IPV4 TCP => DROP
468	0	0	i--	ETH IPV4 TCP => DROP
469	0	0	i--	ETH IPV4 TCP => DROP
470	0	0	i--	ETH IPV4 TCP => DROP
471	0	0	i--	ETH IPV4 TCP => DROP
472	0	0	i--	ETH IPV4 TCP => DROP
473	0	0	i--	ETH IPV4 TCP => DROP
474	0	0	i--	ETH IPV4 TCP => DROP
475	0	0	i--	ETH IPV4 TCP => DROP
476	0	0	i--	ETH IPV4 TCP => DROP
477	0	0	i--	ETH IPV4 TCP => DROP
478	0	0	i--	ETH IPV4 TCP => DROP
479	0	0	i--	ETH IPV4 TCP => DROP
480	0	0	i--	ETH IPV4 TCP => DROP
481	0	0	i--	ETH IPV4 TCP => DROP
482	0	0	i--	ETH IPV4 TCP => DROP
483	0	0	i--	ETH IPV4 TCP => DROP
484	0	0	i--	ETH IPV4 TCP => DROP
485	0	0	i--	ETH IPV4 TCP => DROP
486	0	0	i--	ETH IPV4 TCP => DROP
487	0	0	i--	ETH IPV4 TCP => DROP
488	0	0	i--	ETH IPV4 TCP => DROP
489	0	0	i--	ETH IPV4 TCP => DROP
490	0	0	i--	ETH IPV4 TCP => DROP
491	0	0	i--	ETH IPV4 TCP => DROP
492	0	0	i--	ETH IPV4 TCP => DROP
493	0	0	i--	ETH IPV4 TCP => DROP
494	0	0	i--	ETH IPV4 TCP => DROP
495	0	0	i--	ETH IPV4 TCP => DROP
496	0	0	i--	ETH IPV4 TCP => DROP
497	0	0	i--	ETH IPV4 TCP => DROP
498	0	0	i--	ETH IPV4 TCP => DROP
499	0	0	i--	ETH IPV4 TCP => DROP
500	0	0	i--	ETH IPV4 TCP => DROP
501	0	0	i--	ETH IPV4 TCP => DROP
502	0	0	i--	ETH IPV4 TCP => DROP
503	0	0	i--	ETH IPV4 TCP => DROP
504	0	0	i--	ETH IPV4 TCP => DROP
505	0	0	i--	ETH IPV4 TCP => DROP
506	0	0	i--	ETH IPV4 TCP => DROP
507	0	0	i--	ETH IPV4 TCP => DROP
508	0	0	i--	ETH IPV4 TCP => DROP
509	0	0	i--	ETH IPV4 TCP => DROP
510	0	0	i--	ETH IPV4 TCP => DROP
511	0	0	i--	ETH IPV4 TCP => DROP
26/03/2021 10:53:09            CVLDCFACLFilterTest: Test Case test_max_entry_num Result FAILED: 'the last ACL rule failed to be created'
26/03/2021 10:53:09             dut.10.240.183.133: flow flush 0
26/03/2021 10:53:14             dut.10.240.183.133: 
26/03/2021 10:53:14             dut.10.240.183.133: clear port stats all
26/03/2021 10:53:14             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:53:14             dut.10.240.183.133: quit
26/03/2021 10:53:15             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:53:15             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:53:16             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:53:16             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:53:16             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:53:16             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:53:16            CVLDCFACLFilterTest: Test Case test_max_entry_num_combined_pattern Begin
26/03/2021 10:53:16             dut.10.240.183.133: 
26/03/2021 10:53:16                         tester: 
26/03/2021 10:53:16             dut.10.240.183.133: scp -v dep/max_entry_num root@10.240.183.133:/tmp/
26/03/2021 10:53:23             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i --cmdline-file=/tmp/max_entry_num
26/03/2021 10:53:40             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
Interactive-mode selected
CLI commands to be read from /tmp/max_entry_num
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #1 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #2 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #3 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #4 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #5 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #6 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #7 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #8 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #9 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #10 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #11 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #12 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #13 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #14 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #15 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #16 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #17 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #18 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #19 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #20 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #21 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #22 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #23 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #24 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #25 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #26 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #27 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #28 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #29 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #30 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #31 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #32 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #33 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #34 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #35 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #36 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #37 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #38 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #39 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #40 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #41 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #42 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #43 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #44 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #45 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #46 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #47 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #48 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #49 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #50 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #51 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #52 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #53 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #54 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #55 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #56 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #57 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #58 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #59 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #60 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #61 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #62 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #63 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #64 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #65 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #66 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #67 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #68 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #69 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #70 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #71 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #72 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #73 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #74 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #75 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #76 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #77 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #78 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #79 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #80 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #81 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #82 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #83 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #84 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #85 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #86 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #87 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #88 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #89 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #90 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #91 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #92 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #93 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #94 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #95 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #96 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #97 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #98 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #99 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #100 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #101 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #102 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #103 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #104 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #105 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #106 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #107 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #108 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #109 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #110 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #111 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #112 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #113 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #114 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #115 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #116 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #117 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #118 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #119 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #120 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #121 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #122 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #123 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #124 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #125 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #126 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #127 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #128 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #129 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #130 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #131 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #132 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #133 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #134 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #135 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #136 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #137 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #138 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #139 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #140 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #141 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #142 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #143 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #144 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #145 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #146 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #147 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #148 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #149 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #150 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #151 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #152 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #153 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #154 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #155 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #156 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #157 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #158 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #159 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #160 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #161 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #162 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #163 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #164 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #165 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #166 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #167 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #168 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #169 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #170 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #171 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #172 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #173 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #174 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #175 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #176 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #177 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #178 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #179 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #180 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #181 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #182 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #183 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #184 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #185 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #186 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #187 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #188 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #189 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #190 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #191 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #192 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #193 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #194 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #195 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #196 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #197 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #198 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #199 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #200 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #201 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #202 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #203 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #204 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #205 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #206 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #207 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #208 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #209 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #210 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #211 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #212 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #213 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #214 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #215 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #216 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #217 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #218 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #219 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #220 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #221 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #222 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #223 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #224 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #225 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #226 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #227 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #228 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #229 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #230 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #231 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #232 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #233 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #234 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #235 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #236 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #237 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #238 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #239 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #240 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #241 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #242 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #243 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #244 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #245 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #246 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #247 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #248 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #249 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #250 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #251 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #252 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #253 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #254 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #255 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #256 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #257 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #258 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #259 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #260 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #261 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #262 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #263 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #264 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #265 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #266 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #267 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #268 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #269 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #270 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #271 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #272 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #273 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #274 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #275 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #276 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #277 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #278 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #279 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #280 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #281 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #282 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #283 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #284 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #285 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #286 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #287 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #288 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #289 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #290 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #291 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #292 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #293 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #294 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #295 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #296 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #297 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #298 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #299 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #300 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #301 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #302 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #303 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #304 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #305 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #306 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #307 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #308 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #309 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #310 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #311 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #312 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #313 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #314 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #315 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #316 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #317 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #318 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #319 created
Read CLI commands from /tmp/max_entry_num
26/03/2021 10:53:40             dut.10.240.183.133: set portlist 1
26/03/2021 10:53:40             dut.10.240.183.133: 
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.

26/03/2021 10:53:40             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:53:40             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:53:40             dut.10.240.183.133: set verbose 1
26/03/2021 10:53:40             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:53:40             dut.10.240.183.133: start
26/03/2021 10:53:40             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:53:40             dut.10.240.183.133: show port info 0
26/03/2021 10:53:40             dut.10.240.183.133: 

********************* Infos for port 0  *********************
MAC address: C6:41:04:07:4F:99
Device name: 0000:81:01.0
Driver name: net_ice_dcf
Firmware-version: not available
Devargs: cap=dcf
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: None
Link duplex: half-duplex
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: 16
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: 16
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
26/03/2021 10:53:40             dut.10.240.183.133: flow list 0
26/03/2021 10:53:40             dut.10.240.183.133: 
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 => DROP
3	0	0	i--	ETH IPV4 => DROP
4	0	0	i--	ETH IPV4 => DROP
5	0	0	i--	ETH IPV4 => DROP
6	0	0	i--	ETH IPV4 => DROP
7	0	0	i--	ETH IPV4 => DROP
8	0	0	i--	ETH IPV4 => DROP
9	0	0	i--	ETH IPV4 => DROP
10	0	0	i--	ETH IPV4 => DROP
11	0	0	i--	ETH IPV4 => DROP
12	0	0	i--	ETH IPV4 => DROP
13	0	0	i--	ETH IPV4 => DROP
14	0	0	i--	ETH IPV4 => DROP
15	0	0	i--	ETH IPV4 => DROP
16	0	0	i--	ETH IPV4 => DROP
17	0	0	i--	ETH IPV4 => DROP
18	0	0	i--	ETH IPV4 => DROP
19	0	0	i--	ETH IPV4 => DROP
20	0	0	i--	ETH IPV4 => DROP
21	0	0	i--	ETH IPV4 => DROP
22	0	0	i--	ETH IPV4 => DROP
23	0	0	i--	ETH IPV4 => DROP
24	0	0	i--	ETH IPV4 => DROP
25	0	0	i--	ETH IPV4 => DROP
26	0	0	i--	ETH IPV4 => DROP
27	0	0	i--	ETH IPV4 => DROP
28	0	0	i--	ETH IPV4 => DROP
29	0	0	i--	ETH IPV4 => DROP
30	0	0	i--	ETH IPV4 => DROP
31	0	0	i--	ETH IPV4 => DROP
32	0	0	i--	ETH IPV4 => DROP
33	0	0	i--	ETH IPV4 => DROP
34	0	0	i--	ETH IPV4 => DROP
35	0	0	i--	ETH IPV4 => DROP
36	0	0	i--	ETH IPV4 => DROP
37	0	0	i--	ETH IPV4 => DROP
38	0	0	i--	ETH IPV4 => DROP
39	0	0	i--	ETH IPV4 => DROP
40	0	0	i--	ETH IPV4 => DROP
41	0	0	i--	ETH IPV4 => DROP
42	0	0	i--	ETH IPV4 => DROP
43	0	0	i--	ETH IPV4 => DROP
44	0	0	i--	ETH IPV4 => DROP
45	0	0	i--	ETH IPV4 => DROP
46	0	0	i--	ETH IPV4 => DROP
47	0	0	i--	ETH IPV4 => DROP
48	0	0	i--	ETH IPV4 => DROP
49	0	0	i--	ETH IPV4 => DROP
50	0	0	i--	ETH IPV4 => DROP
51	0	0	i--	ETH IPV4 => DROP
52	0	0	i--	ETH IPV4 => DROP
53	0	0	i--	ETH IPV4 => DROP
54	0	0	i--	ETH IPV4 => DROP
55	0	0	i--	ETH IPV4 => DROP
56	0	0	i--	ETH IPV4 => DROP
57	0	0	i--	ETH IPV4 => DROP
58	0	0	i--	ETH IPV4 => DROP
59	0	0	i--	ETH IPV4 => DROP
60	0	0	i--	ETH IPV4 => DROP
61	0	0	i--	ETH IPV4 => DROP
62	0	0	i--	ETH IPV4 => DROP
63	0	0	i--	ETH IPV4 => DROP
64	0	0	i--	ETH IPV4 TCP => DROP
65	0	0	i--	ETH IPV4 TCP => DROP
66	0	0	i--	ETH IPV4 TCP => DROP
67	0	0	i--	ETH IPV4 TCP => DROP
68	0	0	i--	ETH IPV4 TCP => DROP
69	0	0	i--	ETH IPV4 TCP => DROP
70	0	0	i--	ETH IPV4 TCP => DROP
71	0	0	i--	ETH IPV4 TCP => DROP
72	0	0	i--	ETH IPV4 TCP => DROP
73	0	0	i--	ETH IPV4 TCP => DROP
74	0	0	i--	ETH IPV4 TCP => DROP
75	0	0	i--	ETH IPV4 TCP => DROP
76	0	0	i--	ETH IPV4 TCP => DROP
77	0	0	i--	ETH IPV4 TCP => DROP
78	0	0	i--	ETH IPV4 TCP => DROP
79	0	0	i--	ETH IPV4 TCP => DROP
80	0	0	i--	ETH IPV4 TCP => DROP
81	0	0	i--	ETH IPV4 TCP => DROP
82	0	0	i--	ETH IPV4 TCP => DROP
83	0	0	i--	ETH IPV4 TCP => DROP
84	0	0	i--	ETH IPV4 TCP => DROP
85	0	0	i--	ETH IPV4 TCP => DROP
86	0	0	i--	ETH IPV4 TCP => DROP
87	0	0	i--	ETH IPV4 TCP => DROP
88	0	0	i--	ETH IPV4 TCP => DROP
89	0	0	i--	ETH IPV4 TCP => DROP
90	0	0	i--	ETH IPV4 TCP => DROP
91	0	0	i--	ETH IPV4 TCP => DROP
92	0	0	i--	ETH IPV4 TCP => DROP
93	0	0	i--	ETH IPV4 TCP => DROP
94	0	0	i--	ETH IPV4 TCP => DROP
95	0	0	i--	ETH IPV4 TCP => DROP
96	0	0	i--	ETH IPV4 TCP => DROP
97	0	0	i--	ETH IPV4 TCP => DROP
98	0	0	i--	ETH IPV4 TCP => DROP
99	0	0	i--	ETH IPV4 TCP => DROP
100	0	0	i--	ETH IPV4 TCP => DROP
101	0	0	i--	ETH IPV4 TCP => DROP
102	0	0	i--	ETH IPV4 TCP => DROP
103	0	0	i--	ETH IPV4 TCP => DROP
104	0	0	i--	ETH IPV4 TCP => DROP
105	0	0	i--	ETH IPV4 TCP => DROP
106	0	0	i--	ETH IPV4 TCP => DROP
107	0	0	i--	ETH IPV4 TCP => DROP
108	0	0	i--	ETH IPV4 TCP => DROP
109	0	0	i--	ETH IPV4 TCP => DROP
110	0	0	i--	ETH IPV4 TCP => DROP
111	0	0	i--	ETH IPV4 TCP => DROP
112	0	0	i--	ETH IPV4 TCP => DROP
113	0	0	i--	ETH IPV4 TCP => DROP
114	0	0	i--	ETH IPV4 TCP => DROP
115	0	0	i--	ETH IPV4 TCP => DROP
116	0	0	i--	ETH IPV4 TCP => DROP
117	0	0	i--	ETH IPV4 TCP => DROP
118	0	0	i--	ETH IPV4 TCP => DROP
119	0	0	i--	ETH IPV4 TCP => DROP
120	0	0	i--	ETH IPV4 TCP => DROP
121	0	0	i--	ETH IPV4 TCP => DROP
122	0	0	i--	ETH IPV4 TCP => DROP
123	0	0	i--	ETH IPV4 TCP => DROP
124	0	0	i--	ETH IPV4 TCP => DROP
125	0	0	i--	ETH IPV4 TCP => DROP
126	0	0	i--	ETH IPV4 TCP => DROP
127	0	0	i--	ETH IPV4 TCP => DROP
128	0	0	i--	ETH IPV4 TCP => DROP
129	0	0	i--	ETH IPV4 TCP => DROP
130	0	0	i--	ETH IPV4 TCP => DROP
131	0	0	i--	ETH IPV4 TCP => DROP
132	0	0	i--	ETH IPV4 TCP => DROP
133	0	0	i--	ETH IPV4 TCP => DROP
134	0	0	i--	ETH IPV4 TCP => DROP
135	0	0	i--	ETH IPV4 TCP => DROP
136	0	0	i--	ETH IPV4 TCP => DROP
137	0	0	i--	ETH IPV4 TCP => DROP
138	0	0	i--	ETH IPV4 TCP => DROP
139	0	0	i--	ETH IPV4 TCP => DROP
140	0	0	i--	ETH IPV4 TCP => DROP
141	0	0	i--	ETH IPV4 TCP => DROP
142	0	0	i--	ETH IPV4 TCP => DROP
143	0	0	i--	ETH IPV4 TCP => DROP
144	0	0	i--	ETH IPV4 TCP => DROP
145	0	0	i--	ETH IPV4 TCP => DROP
146	0	0	i--	ETH IPV4 TCP => DROP
147	0	0	i--	ETH IPV4 TCP => DROP
148	0	0	i--	ETH IPV4 TCP => DROP
149	0	0	i--	ETH IPV4 TCP => DROP
150	0	0	i--	ETH IPV4 TCP => DROP
151	0	0	i--	ETH IPV4 TCP => DROP
152	0	0	i--	ETH IPV4 TCP => DROP
153	0	0	i--	ETH IPV4 TCP => DROP
154	0	0	i--	ETH IPV4 TCP => DROP
155	0	0	i--	ETH IPV4 TCP => DROP
156	0	0	i--	ETH IPV4 TCP => DROP
157	0	0	i--	ETH IPV4 TCP => DROP
158	0	0	i--	ETH IPV4 TCP => DROP
159	0	0	i--	ETH IPV4 TCP => DROP
160	0	0	i--	ETH IPV4 TCP => DROP
161	0	0	i--	ETH IPV4 TCP => DROP
162	0	0	i--	ETH IPV4 TCP => DROP
163	0	0	i--	ETH IPV4 TCP => DROP
164	0	0	i--	ETH IPV4 TCP => DROP
165	0	0	i--	ETH IPV4 TCP => DROP
166	0	0	i--	ETH IPV4 TCP => DROP
167	0	0	i--	ETH IPV4 TCP => DROP
168	0	0	i--	ETH IPV4 TCP => DROP
169	0	0	i--	ETH IPV4 TCP => DROP
170	0	0	i--	ETH IPV4 TCP => DROP
171	0	0	i--	ETH IPV4 TCP => DROP
172	0	0	i--	ETH IPV4 TCP => DROP
173	0	0	i--	ETH IPV4 TCP => DROP
174	0	0	i--	ETH IPV4 TCP => DROP
175	0	0	i--	ETH IPV4 TCP => DROP
176	0	0	i--	ETH IPV4 TCP => DROP
177	0	0	i--	ETH IPV4 TCP => DROP
178	0	0	i--	ETH IPV4 TCP => DROP
179	0	0	i--	ETH IPV4 TCP => DROP
180	0	0	i--	ETH IPV4 TCP => DROP
181	0	0	i--	ETH IPV4 TCP => DROP
182	0	0	i--	ETH IPV4 TCP => DROP
183	0	0	i--	ETH IPV4 TCP => DROP
184	0	0	i--	ETH IPV4 TCP => DROP
185	0	0	i--	ETH IPV4 TCP => DROP
186	0	0	i--	ETH IPV4 TCP => DROP
187	0	0	i--	ETH IPV4 TCP => DROP
188	0	0	i--	ETH IPV4 TCP => DROP
189	0	0	i--	ETH IPV4 TCP => DROP
190	0	0	i--	ETH IPV4 TCP => DROP
191	0	0	i--	ETH IPV4 TCP => DROP
192	0	0	i--	ETH IPV4 TCP => DROP
193	0	0	i--	ETH IPV4 TCP => DROP
194	0	0	i--	ETH IPV4 TCP => DROP
195	0	0	i--	ETH IPV4 TCP => DROP
196	0	0	i--	ETH IPV4 TCP => DROP
197	0	0	i--	ETH IPV4 TCP => DROP
198	0	0	i--	ETH IPV4 TCP => DROP
199	0	0	i--	ETH IPV4 TCP => DROP
200	0	0	i--	ETH IPV4 TCP => DROP
201	0	0	i--	ETH IPV4 TCP => DROP
202	0	0	i--	ETH IPV4 TCP => DROP
203	0	0	i--	ETH IPV4 TCP => DROP
204	0	0	i--	ETH IPV4 TCP => DROP
205	0	0	i--	ETH IPV4 TCP => DROP
206	0	0	i--	ETH IPV4 TCP => DROP
207	0	0	i--	ETH IPV4 TCP => DROP
208	0	0	i--	ETH IPV4 TCP => DROP
209	0	0	i--	ETH IPV4 TCP => DROP
210	0	0	i--	ETH IPV4 TCP => DROP
211	0	0	i--	ETH IPV4 TCP => DROP
212	0	0	i--	ETH IPV4 TCP => DROP
213	0	0	i--	ETH IPV4 TCP => DROP
214	0	0	i--	ETH IPV4 TCP => DROP
215	0	0	i--	ETH IPV4 TCP => DROP
216	0	0	i--	ETH IPV4 TCP => DROP
217	0	0	i--	ETH IPV4 TCP => DROP
218	0	0	i--	ETH IPV4 TCP => DROP
219	0	0	i--	ETH IPV4 TCP => DROP
220	0	0	i--	ETH IPV4 TCP => DROP
221	0	0	i--	ETH IPV4 TCP => DROP
222	0	0	i--	ETH IPV4 TCP => DROP
223	0	0	i--	ETH IPV4 TCP => DROP
224	0	0	i--	ETH IPV4 TCP => DROP
225	0	0	i--	ETH IPV4 TCP => DROP
226	0	0	i--	ETH IPV4 TCP => DROP
227	0	0	i--	ETH IPV4 TCP => DROP
228	0	0	i--	ETH IPV4 TCP => DROP
229	0	0	i--	ETH IPV4 TCP => DROP
230	0	0	i--	ETH IPV4 TCP => DROP
231	0	0	i--	ETH IPV4 TCP => DROP
232	0	0	i--	ETH IPV4 TCP => DROP
233	0	0	i--	ETH IPV4 TCP => DROP
234	0	0	i--	ETH IPV4 TCP => DROP
235	0	0	i--	ETH IPV4 TCP => DROP
236	0	0	i--	ETH IPV4 TCP => DROP
237	0	0	i--	ETH IPV4 TCP => DROP
238	0	0	i--	ETH IPV4 TCP => DROP
239	0	0	i--	ETH IPV4 TCP => DROP
240	0	0	i--	ETH IPV4 TCP => DROP
241	0	0	i--	ETH IPV4 TCP => DROP
242	0	0	i--	ETH IPV4 TCP => DROP
243	0	0	i--	ETH IPV4 TCP => DROP
244	0	0	i--	ETH IPV4 TCP => DROP
245	0	0	i--	ETH IPV4 TCP => DROP
246	0	0	i--	ETH IPV4 TCP => DROP
247	0	0	i--	ETH IPV4 TCP => DROP
248	0	0	i--	ETH IPV4 TCP => DROP
249	0	0	i--	ETH IPV4 TCP => DROP
250	0	0	i--	ETH IPV4 TCP => DROP
251	0	0	i--	ETH IPV4 TCP => DROP
252	0	0	i--	ETH IPV4 TCP => DROP
253	0	0	i--	ETH IPV4 TCP => DROP
254	0	0	i--	ETH IPV4 TCP => DROP
255	0	0	i--	ETH IPV4 TCP => DROP
256	0	0	i--	ETH IPV4 TCP => DROP
257	0	0	i--	ETH IPV4 TCP => DROP
258	0	0	i--	ETH IPV4 TCP => DROP
259	0	0	i--	ETH IPV4 TCP => DROP
260	0	0	i--	ETH IPV4 TCP => DROP
261	0	0	i--	ETH IPV4 TCP => DROP
262	0	0	i--	ETH IPV4 TCP => DROP
263	0	0	i--	ETH IPV4 TCP => DROP
264	0	0	i--	ETH IPV4 TCP => DROP
265	0	0	i--	ETH IPV4 TCP => DROP
266	0	0	i--	ETH IPV4 TCP => DROP
267	0	0	i--	ETH IPV4 TCP => DROP
268	0	0	i--	ETH IPV4 TCP => DROP
269	0	0	i--	ETH IPV4 TCP => DROP
270	0	0	i--	ETH IPV4 TCP => DROP
271	0	0	i--	ETH IPV4 TCP => DROP
272	0	0	i--	ETH IPV4 TCP => DROP
273	0	0	i--	ETH IPV4 TCP => DROP
274	0	0	i--	ETH IPV4 TCP => DROP
275	0	0	i--	ETH IPV4 TCP => DROP
276	0	0	i--	ETH IPV4 TCP => DROP
277	0	0	i--	ETH IPV4 TCP => DROP
278	0	0	i--	ETH IPV4 TCP => DROP
279	0	0	i--	ETH IPV4 TCP => DROP
280	0	0	i--	ETH IPV4 TCP => DROP
281	0	0	i--	ETH IPV4 TCP => DROP
282	0	0	i--	ETH IPV4 TCP => DROP
283	0	0	i--	ETH IPV4 TCP => DROP
284	0	0	i--	ETH IPV4 TCP => DROP
285	0	0	i--	ETH IPV4 TCP => DROP
286	0	0	i--	ETH IPV4 TCP => DROP
287	0	0	i--	ETH IPV4 TCP => DROP
288	0	0	i--	ETH IPV4 TCP => DROP
289	0	0	i--	ETH IPV4 TCP => DROP
290	0	0	i--	ETH IPV4 TCP => DROP
291	0	0	i--	ETH IPV4 TCP => DROP
292	0	0	i--	ETH IPV4 TCP => DROP
293	0	0	i--	ETH IPV4 TCP => DROP
294	0	0	i--	ETH IPV4 TCP => DROP
295	0	0	i--	ETH IPV4 TCP => DROP
296	0	0	i--	ETH IPV4 TCP => DROP
297	0	0	i--	ETH IPV4 TCP => DROP
298	0	0	i--	ETH IPV4 TCP => DROP
299	0	0	i--	ETH IPV4 TCP => DROP
300	0	0	i--	ETH IPV4 TCP => DROP
301	0	0	i--	ETH IPV4 TCP => DROP
302	0	0	i--	ETH IPV4 TCP => DROP
303	0	0	i--	ETH IPV4 TCP => DROP
304	0	0	i--	ETH IPV4 TCP => DROP
305	0	0	i--	ETH IPV4 TCP => DROP
306	0	0	i--	ETH IPV4 TCP => DROP
307	0	0	i--	ETH IPV4 TCP => DROP
308	0	0	i--	ETH IPV4 TCP => DROP
309	0	0	i--	ETH IPV4 TCP => DROP
310	0	0	i--	ETH IPV4 TCP => DROP
311	0	0	i--	ETH IPV4 TCP => DROP
312	0	0	i--	ETH IPV4 TCP => DROP
313	0	0	i--	ETH IPV4 TCP => DROP
314	0	0	i--	ETH IPV4 TCP => DROP
315	0	0	i--	ETH IPV4 TCP => DROP
316	0	0	i--	ETH IPV4 TCP => DROP
317	0	0	i--	ETH IPV4 TCP => DROP
318	0	0	i--	ETH IPV4 TCP => DROP
319	0	0	i--	ETH IPV4 TCP => DROP
26/03/2021 10:53:40             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.2.255 src mask 255.255.255.254 / tcp / end actions drop / end
26/03/2021 10:53:40             dut.10.240.183.133: 
ice_acl_hw_set_conf(): Exceed the maximum entry number(512) HW supported!
ice_flow_create(): Succeeded to create (2) flow
Flow rule #320 created
26/03/2021 10:53:40             dut.10.240.183.133: flow destroy 0 rule 319
26/03/2021 10:53:41             dut.10.240.183.133: 
Flow rule #319 destroyed
26/03/2021 10:53:41             dut.10.240.183.133: flow list 0
26/03/2021 10:53:41             dut.10.240.183.133: 
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 => DROP
3	0	0	i--	ETH IPV4 => DROP
4	0	0	i--	ETH IPV4 => DROP
5	0	0	i--	ETH IPV4 => DROP
6	0	0	i--	ETH IPV4 => DROP
7	0	0	i--	ETH IPV4 => DROP
8	0	0	i--	ETH IPV4 => DROP
9	0	0	i--	ETH IPV4 => DROP
10	0	0	i--	ETH IPV4 => DROP
11	0	0	i--	ETH IPV4 => DROP
12	0	0	i--	ETH IPV4 => DROP
13	0	0	i--	ETH IPV4 => DROP
14	0	0	i--	ETH IPV4 => DROP
15	0	0	i--	ETH IPV4 => DROP
16	0	0	i--	ETH IPV4 => DROP
17	0	0	i--	ETH IPV4 => DROP
18	0	0	i--	ETH IPV4 => DROP
19	0	0	i--	ETH IPV4 => DROP
20	0	0	i--	ETH IPV4 => DROP
21	0	0	i--	ETH IPV4 => DROP
22	0	0	i--	ETH IPV4 => DROP
23	0	0	i--	ETH IPV4 => DROP
24	0	0	i--	ETH IPV4 => DROP
25	0	0	i--	ETH IPV4 => DROP
26	0	0	i--	ETH IPV4 => DROP
27	0	0	i--	ETH IPV4 => DROP
28	0	0	i--	ETH IPV4 => DROP
29	0	0	i--	ETH IPV4 => DROP
30	0	0	i--	ETH IPV4 => DROP
31	0	0	i--	ETH IPV4 => DROP
32	0	0	i--	ETH IPV4 => DROP
33	0	0	i--	ETH IPV4 => DROP
34	0	0	i--	ETH IPV4 => DROP
35	0	0	i--	ETH IPV4 => DROP
36	0	0	i--	ETH IPV4 => DROP
37	0	0	i--	ETH IPV4 => DROP
38	0	0	i--	ETH IPV4 => DROP
39	0	0	i--	ETH IPV4 => DROP
40	0	0	i--	ETH IPV4 => DROP
41	0	0	i--	ETH IPV4 => DROP
42	0	0	i--	ETH IPV4 => DROP
43	0	0	i--	ETH IPV4 => DROP
44	0	0	i--	ETH IPV4 => DROP
45	0	0	i--	ETH IPV4 => DROP
46	0	0	i--	ETH IPV4 => DROP
47	0	0	i--	ETH IPV4 => DROP
48	0	0	i--	ETH IPV4 => DROP
49	0	0	i--	ETH IPV4 => DROP
50	0	0	i--	ETH IPV4 => DROP
51	0	0	i--	ETH IPV4 => DROP
52	0	0	i--	ETH IPV4 => DROP
53	0	0	i--	ETH IPV4 => DROP
54	0	0	i--	ETH IPV4 => DROP
55	0	0	i--	ETH IPV4 => DROP
56	0	0	i--	ETH IPV4 => DROP
57	0	0	i--	ETH IPV4 => DROP
58	0	0	i--	ETH IPV4 => DROP
59	0	0	i--	ETH IPV4 => DROP
60	0	0	i--	ETH IPV4 => DROP
61	0	0	i--	ETH IPV4 => DROP
62	0	0	i--	ETH IPV4 => DROP
63	0	0	i--	ETH IPV4 => DROP
64	0	0	i--	ETH IPV4 TCP => DROP
65	0	0	i--	ETH IPV4 TCP => DROP
66	0	0	i--	ETH IPV4 TCP => DROP
67	0	0	i--	ETH IPV4 TCP => DROP
68	0	0	i--	ETH IPV4 TCP => DROP
69	0	0	i--	ETH IPV4 TCP => DROP
70	0	0	i--	ETH IPV4 TCP => DROP
71	0	0	i--	ETH IPV4 TCP => DROP
72	0	0	i--	ETH IPV4 TCP => DROP
73	0	0	i--	ETH IPV4 TCP => DROP
74	0	0	i--	ETH IPV4 TCP => DROP
75	0	0	i--	ETH IPV4 TCP => DROP
76	0	0	i--	ETH IPV4 TCP => DROP
77	0	0	i--	ETH IPV4 TCP => DROP
78	0	0	i--	ETH IPV4 TCP => DROP
79	0	0	i--	ETH IPV4 TCP => DROP
80	0	0	i--	ETH IPV4 TCP => DROP
81	0	0	i--	ETH IPV4 TCP => DROP
82	0	0	i--	ETH IPV4 TCP => DROP
83	0	0	i--	ETH IPV4 TCP => DROP
84	0	0	i--	ETH IPV4 TCP => DROP
85	0	0	i--	ETH IPV4 TCP => DROP
86	0	0	i--	ETH IPV4 TCP => DROP
87	0	0	i--	ETH IPV4 TCP => DROP
88	0	0	i--	ETH IPV4 TCP => DROP
89	0	0	i--	ETH IPV4 TCP => DROP
90	0	0	i--	ETH IPV4 TCP => DROP
91	0	0	i--	ETH IPV4 TCP => DROP
92	0	0	i--	ETH IPV4 TCP => DROP
93	0	0	i--	ETH IPV4 TCP => DROP
94	0	0	i--	ETH IPV4 TCP => DROP
95	0	0	i--	ETH IPV4 TCP => DROP
96	0	0	i--	ETH IPV4 TCP => DROP
97	0	0	i--	ETH IPV4 TCP => DROP
98	0	0	i--	ETH IPV4 TCP => DROP
99	0	0	i--	ETH IPV4 TCP => DROP
100	0	0	i--	ETH IPV4 TCP => DROP
101	0	0	i--	ETH IPV4 TCP => DROP
102	0	0	i--	ETH IPV4 TCP => DROP
103	0	0	i--	ETH IPV4 TCP => DROP
104	0	0	i--	ETH IPV4 TCP => DROP
105	0	0	i--	ETH IPV4 TCP => DROP
106	0	0	i--	ETH IPV4 TCP => DROP
107	0	0	i--	ETH IPV4 TCP => DROP
108	0	0	i--	ETH IPV4 TCP => DROP
109	0	0	i--	ETH IPV4 TCP => DROP
110	0	0	i--	ETH IPV4 TCP => DROP
111	0	0	i--	ETH IPV4 TCP => DROP
112	0	0	i--	ETH IPV4 TCP => DROP
113	0	0	i--	ETH IPV4 TCP => DROP
114	0	0	i--	ETH IPV4 TCP => DROP
115	0	0	i--	ETH IPV4 TCP => DROP
116	0	0	i--	ETH IPV4 TCP => DROP
117	0	0	i--	ETH IPV4 TCP => DROP
118	0	0	i--	ETH IPV4 TCP => DROP
119	0	0	i--	ETH IPV4 TCP => DROP
120	0	0	i--	ETH IPV4 TCP => DROP
121	0	0	i--	ETH IPV4 TCP => DROP
122	0	0	i--	ETH IPV4 TCP => DROP
123	0	0	i--	ETH IPV4 TCP => DROP
124	0	0	i--	ETH IPV4 TCP => DROP
125	0	0	i--	ETH IPV4 TCP => DROP
126	0	0	i--	ETH IPV4 TCP => DROP
127	0	0	i--	ETH IPV4 TCP => DROP
128	0	0	i--	ETH IPV4 TCP => DROP
129	0	0	i--	ETH IPV4 TCP => DROP
130	0	0	i--	ETH IPV4 TCP => DROP
131	0	0	i--	ETH IPV4 TCP => DROP
132	0	0	i--	ETH IPV4 TCP => DROP
133	0	0	i--	ETH IPV4 TCP => DROP
134	0	0	i--	ETH IPV4 TCP => DROP
135	0	0	i--	ETH IPV4 TCP => DROP
136	0	0	i--	ETH IPV4 TCP => DROP
137	0	0	i--	ETH IPV4 TCP => DROP
138	0	0	i--	ETH IPV4 TCP => DROP
139	0	0	i--	ETH IPV4 TCP => DROP
140	0	0	i--	ETH IPV4 TCP => DROP
141	0	0	i--	ETH IPV4 TCP => DROP
142	0	0	i--	ETH IPV4 TCP => DROP
143	0	0	i--	ETH IPV4 TCP => DROP
144	0	0	i--	ETH IPV4 TCP => DROP
145	0	0	i--	ETH IPV4 TCP => DROP
146	0	0	i--	ETH IPV4 TCP => DROP
147	0	0	i--	ETH IPV4 TCP => DROP
148	0	0	i--	ETH IPV4 TCP => DROP
149	0	0	i--	ETH IPV4 TCP => DROP
150	0	0	i--	ETH IPV4 TCP => DROP
151	0	0	i--	ETH IPV4 TCP => DROP
152	0	0	i--	ETH IPV4 TCP => DROP
153	0	0	i--	ETH IPV4 TCP => DROP
154	0	0	i--	ETH IPV4 TCP => DROP
155	0	0	i--	ETH IPV4 TCP => DROP
156	0	0	i--	ETH IPV4 TCP => DROP
157	0	0	i--	ETH IPV4 TCP => DROP
158	0	0	i--	ETH IPV4 TCP => DROP
159	0	0	i--	ETH IPV4 TCP => DROP
160	0	0	i--	ETH IPV4 TCP => DROP
161	0	0	i--	ETH IPV4 TCP => DROP
162	0	0	i--	ETH IPV4 TCP => DROP
163	0	0	i--	ETH IPV4 TCP => DROP
164	0	0	i--	ETH IPV4 TCP => DROP
165	0	0	i--	ETH IPV4 TCP => DROP
166	0	0	i--	ETH IPV4 TCP => DROP
167	0	0	i--	ETH IPV4 TCP => DROP
168	0	0	i--	ETH IPV4 TCP => DROP
169	0	0	i--	ETH IPV4 TCP => DROP
170	0	0	i--	ETH IPV4 TCP => DROP
171	0	0	i--	ETH IPV4 TCP => DROP
172	0	0	i--	ETH IPV4 TCP => DROP
173	0	0	i--	ETH IPV4 TCP => DROP
174	0	0	i--	ETH IPV4 TCP => DROP
175	0	0	i--	ETH IPV4 TCP => DROP
176	0	0	i--	ETH IPV4 TCP => DROP
177	0	0	i--	ETH IPV4 TCP => DROP
178	0	0	i--	ETH IPV4 TCP => DROP
179	0	0	i--	ETH IPV4 TCP => DROP
180	0	0	i--	ETH IPV4 TCP => DROP
181	0	0	i--	ETH IPV4 TCP => DROP
182	0	0	i--	ETH IPV4 TCP => DROP
183	0	0	i--	ETH IPV4 TCP => DROP
184	0	0	i--	ETH IPV4 TCP => DROP
185	0	0	i--	ETH IPV4 TCP => DROP
186	0	0	i--	ETH IPV4 TCP => DROP
187	0	0	i--	ETH IPV4 TCP => DROP
188	0	0	i--	ETH IPV4 TCP => DROP
189	0	0	i--	ETH IPV4 TCP => DROP
190	0	0	i--	ETH IPV4 TCP => DROP
191	0	0	i--	ETH IPV4 TCP => DROP
192	0	0	i--	ETH IPV4 TCP => DROP
193	0	0	i--	ETH IPV4 TCP => DROP
194	0	0	i--	ETH IPV4 TCP => DROP
195	0	0	i--	ETH IPV4 TCP => DROP
196	0	0	i--	ETH IPV4 TCP => DROP
197	0	0	i--	ETH IPV4 TCP => DROP
198	0	0	i--	ETH IPV4 TCP => DROP
199	0	0	i--	ETH IPV4 TCP => DROP
200	0	0	i--	ETH IPV4 TCP => DROP
201	0	0	i--	ETH IPV4 TCP => DROP
202	0	0	i--	ETH IPV4 TCP => DROP
203	0	0	i--	ETH IPV4 TCP => DROP
204	0	0	i--	ETH IPV4 TCP => DROP
205	0	0	i--	ETH IPV4 TCP => DROP
206	0	0	i--	ETH IPV4 TCP => DROP
207	0	0	i--	ETH IPV4 TCP => DROP
208	0	0	i--	ETH IPV4 TCP => DROP
209	0	0	i--	ETH IPV4 TCP => DROP
210	0	0	i--	ETH IPV4 TCP => DROP
211	0	0	i--	ETH IPV4 TCP => DROP
212	0	0	i--	ETH IPV4 TCP => DROP
213	0	0	i--	ETH IPV4 TCP => DROP
214	0	0	i--	ETH IPV4 TCP => DROP
215	0	0	i--	ETH IPV4 TCP => DROP
216	0	0	i--	ETH IPV4 TCP => DROP
217	0	0	i--	ETH IPV4 TCP => DROP
218	0	0	i--	ETH IPV4 TCP => DROP
219	0	0	i--	ETH IPV4 TCP => DROP
220	0	0	i--	ETH IPV4 TCP => DROP
221	0	0	i--	ETH IPV4 TCP => DROP
222	0	0	i--	ETH IPV4 TCP => DROP
223	0	0	i--	ETH IPV4 TCP => DROP
224	0	0	i--	ETH IPV4 TCP => DROP
225	0	0	i--	ETH IPV4 TCP => DROP
226	0	0	i--	ETH IPV4 TCP => DROP
227	0	0	i--	ETH IPV4 TCP => DROP
228	0	0	i--	ETH IPV4 TCP => DROP
229	0	0	i--	ETH IPV4 TCP => DROP
230	0	0	i--	ETH IPV4 TCP => DROP
231	0	0	i--	ETH IPV4 TCP => DROP
232	0	0	i--	ETH IPV4 TCP => DROP
233	0	0	i--	ETH IPV4 TCP => DROP
234	0	0	i--	ETH IPV4 TCP => DROP
235	0	0	i--	ETH IPV4 TCP => DROP
236	0	0	i--	ETH IPV4 TCP => DROP
237	0	0	i--	ETH IPV4 TCP => DROP
238	0	0	i--	ETH IPV4 TCP => DROP
239	0	0	i--	ETH IPV4 TCP => DROP
240	0	0	i--	ETH IPV4 TCP => DROP
241	0	0	i--	ETH IPV4 TCP => DROP
242	0	0	i--	ETH IPV4 TCP => DROP
243	0	0	i--	ETH IPV4 TCP => DROP
244	0	0	i--	ETH IPV4 TCP => DROP
245	0	0	i--	ETH IPV4 TCP => DROP
246	0	0	i--	ETH IPV4 TCP => DROP
247	0	0	i--	ETH IPV4 TCP => DROP
248	0	0	i--	ETH IPV4 TCP => DROP
249	0	0	i--	ETH IPV4 TCP => DROP
250	0	0	i--	ETH IPV4 TCP => DROP
251	0	0	i--	ETH IPV4 TCP => DROP
252	0	0	i--	ETH IPV4 TCP => DROP
253	0	0	i--	ETH IPV4 TCP => DROP
254	0	0	i--	ETH IPV4 TCP => DROP
255	0	0	i--	ETH IPV4 TCP => DROP
256	0	0	i--	ETH IPV4 TCP => DROP
257	0	0	i--	ETH IPV4 TCP => DROP
258	0	0	i--	ETH IPV4 TCP => DROP
259	0	0	i--	ETH IPV4 TCP => DROP
260	0	0	i--	ETH IPV4 TCP => DROP
261	0	0	i--	ETH IPV4 TCP => DROP
262	0	0	i--	ETH IPV4 TCP => DROP
263	0	0	i--	ETH IPV4 TCP => DROP
264	0	0	i--	ETH IPV4 TCP => DROP
265	0	0	i--	ETH IPV4 TCP => DROP
266	0	0	i--	ETH IPV4 TCP => DROP
267	0	0	i--	ETH IPV4 TCP => DROP
268	0	0	i--	ETH IPV4 TCP => DROP
269	0	0	i--	ETH IPV4 TCP => DROP
270	0	0	i--	ETH IPV4 TCP => DROP
271	0	0	i--	ETH IPV4 TCP => DROP
272	0	0	i--	ETH IPV4 TCP => DROP
273	0	0	i--	ETH IPV4 TCP => DROP
274	0	0	i--	ETH IPV4 TCP => DROP
275	0	0	i--	ETH IPV4 TCP => DROP
276	0	0	i--	ETH IPV4 TCP => DROP
277	0	0	i--	ETH IPV4 TCP => DROP
278	0	0	i--	ETH IPV4 TCP => DROP
279	0	0	i--	ETH IPV4 TCP => DROP
280	0	0	i--	ETH IPV4 TCP => DROP
281	0	0	i--	ETH IPV4 TCP => DROP
282	0	0	i--	ETH IPV4 TCP => DROP
283	0	0	i--	ETH IPV4 TCP => DROP
284	0	0	i--	ETH IPV4 TCP => DROP
285	0	0	i--	ETH IPV4 TCP => DROP
286	0	0	i--	ETH IPV4 TCP => DROP
287	0	0	i--	ETH IPV4 TCP => DROP
288	0	0	i--	ETH IPV4 TCP => DROP
289	0	0	i--	ETH IPV4 TCP => DROP
290	0	0	i--	ETH IPV4 TCP => DROP
291	0	0	i--	ETH IPV4 TCP => DROP
292	0	0	i--	ETH IPV4 TCP => DROP
293	0	0	i--	ETH IPV4 TCP => DROP
294	0	0	i--	ETH IPV4 TCP => DROP
295	0	0	i--	ETH IPV4 TCP => DROP
296	0	0	i--	ETH IPV4 TCP => DROP
297	0	0	i--	ETH IPV4 TCP => DROP
298	0	0	i--	ETH IPV4 TCP => DROP
299	0	0	i--	ETH IPV4 TCP => DROP
300	0	0	i--	ETH IPV4 TCP => DROP
301	0	0	i--	ETH IPV4 TCP => DROP
302	0	0	i--	ETH IPV4 TCP => DROP
303	0	0	i--	ETH IPV4 TCP => DROP
304	0	0	i--	ETH IPV4 TCP => DROP
305	0	0	i--	ETH IPV4 TCP => DROP
306	0	0	i--	ETH IPV4 TCP => DROP
307	0	0	i--	ETH IPV4 TCP => DROP
308	0	0	i--	ETH IPV4 TCP => DROP
309	0	0	i--	ETH IPV4 TCP => DROP
310	0	0	i--	ETH IPV4 TCP => DROP
311	0	0	i--	ETH IPV4 TCP => DROP
312	0	0	i--	ETH IPV4 TCP => DROP
313	0	0	i--	ETH IPV4 TCP => DROP
314	0	0	i--	ETH IPV4 TCP => DROP
315	0	0	i--	ETH IPV4 TCP => DROP
316	0	0	i--	ETH IPV4 TCP => DROP
317	0	0	i--	ETH IPV4 TCP => DROP
318	0	0	i--	ETH IPV4 TCP => DROP
320	0	0	i--	ETH IPV4 TCP => DROP
26/03/2021 10:53:41             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.2.255 src mask 255.255.255.254 / tcp / end actions drop / end
26/03/2021 10:53:41             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #321 created
26/03/2021 10:53:41             dut.10.240.183.133: flow destroy 0 rule 320
26/03/2021 10:53:41             dut.10.240.183.133: 
Flow rule #320 destroyed
26/03/2021 10:53:43             dut.10.240.183.133: 
26/03/2021 10:53:43             dut.10.240.183.133: stop
26/03/2021 10:53:43             dut.10.240.183.133: 
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.
26/03/2021 10:53:43             dut.10.240.183.133: start
26/03/2021 10:53:43             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:53:43             dut.10.240.183.133: flow flush 0
26/03/2021 10:53:46             dut.10.240.183.133: 
26/03/2021 10:53:48             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:53:48             dut.10.240.183.133: stop
26/03/2021 10:53:48             dut.10.240.183.133: 
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.
26/03/2021 10:53:48             dut.10.240.183.133: start
26/03/2021 10:53:48             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:53:48            CVLDCFACLFilterTest: Test Case test_max_entry_num_combined_pattern Result PASSED:
26/03/2021 10:53:48             dut.10.240.183.133: flow flush 0
26/03/2021 10:53:48             dut.10.240.183.133: 
26/03/2021 10:53:48             dut.10.240.183.133: clear port stats all
26/03/2021 10:53:48             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:53:48             dut.10.240.183.133: quit
26/03/2021 10:53:50             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:53:50             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:53:50             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:53:50             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:53:50             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:53:50             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:53:50            CVLDCFACLFilterTest: Test Case test_max_entry_num_ipv4_other Begin
26/03/2021 10:53:50             dut.10.240.183.133: 
26/03/2021 10:53:51                         tester: 
26/03/2021 10:53:51             dut.10.240.183.133: scp -v dep/max_entry_num_ipv4_other root@10.240.183.133:/tmp/
26/03/2021 10:53:57             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i --cmdline-file=/tmp/max_entry_num_ipv4_other
26/03/2021 10:54:15             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
Interactive-mode selected
CLI commands to be read from /tmp/max_entry_num_ipv4_other
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #1 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #2 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #3 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #4 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #5 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #6 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #7 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #8 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #9 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #10 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #11 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #12 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #13 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #14 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #15 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #16 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #17 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #18 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #19 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #20 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #21 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #22 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #23 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #24 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #25 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #26 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #27 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #28 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #29 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #30 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #31 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #32 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #33 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #34 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #35 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #36 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #37 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #38 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #39 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #40 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #41 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #42 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #43 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #44 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #45 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #46 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #47 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #48 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #49 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #50 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #51 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #52 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #53 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #54 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #55 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #56 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #57 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #58 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #59 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #60 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #61 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #62 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #63 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #64 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #65 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #66 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #67 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #68 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #69 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #70 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #71 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #72 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #73 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #74 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #75 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #76 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #77 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #78 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #79 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #80 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #81 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #82 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #83 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #84 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #85 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #86 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #87 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #88 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #89 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #90 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #91 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #92 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #93 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #94 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #95 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #96 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #97 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #98 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #99 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #100 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #101 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #102 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #103 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #104 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #105 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #106 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #107 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #108 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #109 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #110 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #111 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #112 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #113 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #114 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #115 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #116 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #117 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #118 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #119 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #120 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #121 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #122 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #123 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #124 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #125 created
ice_flow_create(): Succeeded to create (4) flow
Flow rule #126 created
Read CLI commands from /tmp/max_entry_num_ipv4_other
26/03/2021 10:54:15             dut.10.240.183.133: set portlist 1
26/03/2021 10:54:15             dut.10.240.183.133: 
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.

26/03/2021 10:54:15             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:54:15             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:54:15             dut.10.240.183.133: set verbose 1
26/03/2021 10:54:15             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:54:15             dut.10.240.183.133: start
26/03/2021 10:54:15             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:54:15             dut.10.240.183.133: show port info 0
26/03/2021 10:54:15             dut.10.240.183.133: 

********************* Infos for port 0  *********************
MAC address: C6:41:04:07:4F:99
Device name: 0000:81:01.0
Driver name: net_ice_dcf
Firmware-version: not available
Devargs: cap=dcf
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: None
Link duplex: half-duplex
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: 16
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: 16
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
26/03/2021 10:54:15             dut.10.240.183.133: flow list 0
26/03/2021 10:54:15             dut.10.240.183.133: 
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 => DROP
3	0	0	i--	ETH IPV4 => DROP
4	0	0	i--	ETH IPV4 => DROP
5	0	0	i--	ETH IPV4 => DROP
6	0	0	i--	ETH IPV4 => DROP
7	0	0	i--	ETH IPV4 => DROP
8	0	0	i--	ETH IPV4 => DROP
9	0	0	i--	ETH IPV4 => DROP
10	0	0	i--	ETH IPV4 => DROP
11	0	0	i--	ETH IPV4 => DROP
12	0	0	i--	ETH IPV4 => DROP
13	0	0	i--	ETH IPV4 => DROP
14	0	0	i--	ETH IPV4 => DROP
15	0	0	i--	ETH IPV4 => DROP
16	0	0	i--	ETH IPV4 => DROP
17	0	0	i--	ETH IPV4 => DROP
18	0	0	i--	ETH IPV4 => DROP
19	0	0	i--	ETH IPV4 => DROP
20	0	0	i--	ETH IPV4 => DROP
21	0	0	i--	ETH IPV4 => DROP
22	0	0	i--	ETH IPV4 => DROP
23	0	0	i--	ETH IPV4 => DROP
24	0	0	i--	ETH IPV4 => DROP
25	0	0	i--	ETH IPV4 => DROP
26	0	0	i--	ETH IPV4 => DROP
27	0	0	i--	ETH IPV4 => DROP
28	0	0	i--	ETH IPV4 => DROP
29	0	0	i--	ETH IPV4 => DROP
30	0	0	i--	ETH IPV4 => DROP
31	0	0	i--	ETH IPV4 => DROP
32	0	0	i--	ETH IPV4 => DROP
33	0	0	i--	ETH IPV4 => DROP
34	0	0	i--	ETH IPV4 => DROP
35	0	0	i--	ETH IPV4 => DROP
36	0	0	i--	ETH IPV4 => DROP
37	0	0	i--	ETH IPV4 => DROP
38	0	0	i--	ETH IPV4 => DROP
39	0	0	i--	ETH IPV4 => DROP
40	0	0	i--	ETH IPV4 => DROP
41	0	0	i--	ETH IPV4 => DROP
42	0	0	i--	ETH IPV4 => DROP
43	0	0	i--	ETH IPV4 => DROP
44	0	0	i--	ETH IPV4 => DROP
45	0	0	i--	ETH IPV4 => DROP
46	0	0	i--	ETH IPV4 => DROP
47	0	0	i--	ETH IPV4 => DROP
48	0	0	i--	ETH IPV4 => DROP
49	0	0	i--	ETH IPV4 => DROP
50	0	0	i--	ETH IPV4 => DROP
51	0	0	i--	ETH IPV4 => DROP
52	0	0	i--	ETH IPV4 => DROP
53	0	0	i--	ETH IPV4 => DROP
54	0	0	i--	ETH IPV4 => DROP
55	0	0	i--	ETH IPV4 => DROP
56	0	0	i--	ETH IPV4 => DROP
57	0	0	i--	ETH IPV4 => DROP
58	0	0	i--	ETH IPV4 => DROP
59	0	0	i--	ETH IPV4 => DROP
60	0	0	i--	ETH IPV4 => DROP
61	0	0	i--	ETH IPV4 => DROP
62	0	0	i--	ETH IPV4 => DROP
63	0	0	i--	ETH IPV4 => DROP
64	0	0	i--	ETH IPV4 => DROP
65	0	0	i--	ETH IPV4 => DROP
66	0	0	i--	ETH IPV4 => DROP
67	0	0	i--	ETH IPV4 => DROP
68	0	0	i--	ETH IPV4 => DROP
69	0	0	i--	ETH IPV4 => DROP
70	0	0	i--	ETH IPV4 => DROP
71	0	0	i--	ETH IPV4 => DROP
72	0	0	i--	ETH IPV4 => DROP
73	0	0	i--	ETH IPV4 => DROP
74	0	0	i--	ETH IPV4 => DROP
75	0	0	i--	ETH IPV4 => DROP
76	0	0	i--	ETH IPV4 => DROP
77	0	0	i--	ETH IPV4 => DROP
78	0	0	i--	ETH IPV4 => DROP
79	0	0	i--	ETH IPV4 => DROP
80	0	0	i--	ETH IPV4 => DROP
81	0	0	i--	ETH IPV4 => DROP
82	0	0	i--	ETH IPV4 => DROP
83	0	0	i--	ETH IPV4 => DROP
84	0	0	i--	ETH IPV4 => DROP
85	0	0	i--	ETH IPV4 => DROP
86	0	0	i--	ETH IPV4 => DROP
87	0	0	i--	ETH IPV4 => DROP
88	0	0	i--	ETH IPV4 => DROP
89	0	0	i--	ETH IPV4 => DROP
90	0	0	i--	ETH IPV4 => DROP
91	0	0	i--	ETH IPV4 => DROP
92	0	0	i--	ETH IPV4 => DROP
93	0	0	i--	ETH IPV4 => DROP
94	0	0	i--	ETH IPV4 => DROP
95	0	0	i--	ETH IPV4 => DROP
96	0	0	i--	ETH IPV4 => DROP
97	0	0	i--	ETH IPV4 => DROP
98	0	0	i--	ETH IPV4 => DROP
99	0	0	i--	ETH IPV4 => DROP
100	0	0	i--	ETH IPV4 => DROP
101	0	0	i--	ETH IPV4 => DROP
102	0	0	i--	ETH IPV4 => DROP
103	0	0	i--	ETH IPV4 => DROP
104	0	0	i--	ETH IPV4 => DROP
105	0	0	i--	ETH IPV4 => DROP
106	0	0	i--	ETH IPV4 => DROP
107	0	0	i--	ETH IPV4 => DROP
108	0	0	i--	ETH IPV4 => DROP
109	0	0	i--	ETH IPV4 => DROP
110	0	0	i--	ETH IPV4 => DROP
111	0	0	i--	ETH IPV4 => DROP
112	0	0	i--	ETH IPV4 => DROP
113	0	0	i--	ETH IPV4 => DROP
114	0	0	i--	ETH IPV4 => DROP
115	0	0	i--	ETH IPV4 => DROP
116	0	0	i--	ETH IPV4 => DROP
117	0	0	i--	ETH IPV4 => DROP
118	0	0	i--	ETH IPV4 => DROP
119	0	0	i--	ETH IPV4 => DROP
120	0	0	i--	ETH IPV4 => DROP
121	0	0	i--	ETH IPV4 => DROP
122	0	0	i--	ETH IPV4 => DROP
123	0	0	i--	ETH IPV4 => DROP
124	0	0	i--	ETH IPV4 => DROP
125	0	0	i--	ETH IPV4 => DROP
126	0	0	i--	ETH IPV4 => DROP
26/03/2021 10:54:15             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.1.1 src mask 255.255.255.254 dst spec 192.168.2.100 dst mask 255.255.255.255 / end actions drop / end
26/03/2021 10:54:16             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #127 created
26/03/2021 10:54:16             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.1.1 src mask 255.255.255.254 dst spec 192.168.0.127 dst mask 255.255.255.254 / end actions drop / end
26/03/2021 10:54:16             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #128 created
26/03/2021 10:54:16             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.1.1 src mask 255.255.255.254 dst spec 192.168.1.128 dst mask 255.255.255.254 / end actions drop / end
26/03/2021 10:54:16             dut.10.240.183.133: 
ice_acl_hw_set_conf(): Exceed the maximum entry number(512) HW supported!
ice_flow_create(): Succeeded to create (2) flow
Flow rule #129 created
26/03/2021 10:54:16             dut.10.240.183.133: flow destroy 0 rule 128
26/03/2021 10:54:16             dut.10.240.183.133: 
Flow rule #128 destroyed
26/03/2021 10:54:16             dut.10.240.183.133: flow list 0
26/03/2021 10:54:16             dut.10.240.183.133: 
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 => DROP
3	0	0	i--	ETH IPV4 => DROP
4	0	0	i--	ETH IPV4 => DROP
5	0	0	i--	ETH IPV4 => DROP
6	0	0	i--	ETH IPV4 => DROP
7	0	0	i--	ETH IPV4 => DROP
8	0	0	i--	ETH IPV4 => DROP
9	0	0	i--	ETH IPV4 => DROP
10	0	0	i--	ETH IPV4 => DROP
11	0	0	i--	ETH IPV4 => DROP
12	0	0	i--	ETH IPV4 => DROP
13	0	0	i--	ETH IPV4 => DROP
14	0	0	i--	ETH IPV4 => DROP
15	0	0	i--	ETH IPV4 => DROP
16	0	0	i--	ETH IPV4 => DROP
17	0	0	i--	ETH IPV4 => DROP
18	0	0	i--	ETH IPV4 => DROP
19	0	0	i--	ETH IPV4 => DROP
20	0	0	i--	ETH IPV4 => DROP
21	0	0	i--	ETH IPV4 => DROP
22	0	0	i--	ETH IPV4 => DROP
23	0	0	i--	ETH IPV4 => DROP
24	0	0	i--	ETH IPV4 => DROP
25	0	0	i--	ETH IPV4 => DROP
26	0	0	i--	ETH IPV4 => DROP
27	0	0	i--	ETH IPV4 => DROP
28	0	0	i--	ETH IPV4 => DROP
29	0	0	i--	ETH IPV4 => DROP
30	0	0	i--	ETH IPV4 => DROP
31	0	0	i--	ETH IPV4 => DROP
32	0	0	i--	ETH IPV4 => DROP
33	0	0	i--	ETH IPV4 => DROP
34	0	0	i--	ETH IPV4 => DROP
35	0	0	i--	ETH IPV4 => DROP
36	0	0	i--	ETH IPV4 => DROP
37	0	0	i--	ETH IPV4 => DROP
38	0	0	i--	ETH IPV4 => DROP
39	0	0	i--	ETH IPV4 => DROP
40	0	0	i--	ETH IPV4 => DROP
41	0	0	i--	ETH IPV4 => DROP
42	0	0	i--	ETH IPV4 => DROP
43	0	0	i--	ETH IPV4 => DROP
44	0	0	i--	ETH IPV4 => DROP
45	0	0	i--	ETH IPV4 => DROP
46	0	0	i--	ETH IPV4 => DROP
47	0	0	i--	ETH IPV4 => DROP
48	0	0	i--	ETH IPV4 => DROP
49	0	0	i--	ETH IPV4 => DROP
50	0	0	i--	ETH IPV4 => DROP
51	0	0	i--	ETH IPV4 => DROP
52	0	0	i--	ETH IPV4 => DROP
53	0	0	i--	ETH IPV4 => DROP
54	0	0	i--	ETH IPV4 => DROP
55	0	0	i--	ETH IPV4 => DROP
56	0	0	i--	ETH IPV4 => DROP
57	0	0	i--	ETH IPV4 => DROP
58	0	0	i--	ETH IPV4 => DROP
59	0	0	i--	ETH IPV4 => DROP
60	0	0	i--	ETH IPV4 => DROP
61	0	0	i--	ETH IPV4 => DROP
62	0	0	i--	ETH IPV4 => DROP
63	0	0	i--	ETH IPV4 => DROP
64	0	0	i--	ETH IPV4 => DROP
65	0	0	i--	ETH IPV4 => DROP
66	0	0	i--	ETH IPV4 => DROP
67	0	0	i--	ETH IPV4 => DROP
68	0	0	i--	ETH IPV4 => DROP
69	0	0	i--	ETH IPV4 => DROP
70	0	0	i--	ETH IPV4 => DROP
71	0	0	i--	ETH IPV4 => DROP
72	0	0	i--	ETH IPV4 => DROP
73	0	0	i--	ETH IPV4 => DROP
74	0	0	i--	ETH IPV4 => DROP
75	0	0	i--	ETH IPV4 => DROP
76	0	0	i--	ETH IPV4 => DROP
77	0	0	i--	ETH IPV4 => DROP
78	0	0	i--	ETH IPV4 => DROP
79	0	0	i--	ETH IPV4 => DROP
80	0	0	i--	ETH IPV4 => DROP
81	0	0	i--	ETH IPV4 => DROP
82	0	0	i--	ETH IPV4 => DROP
83	0	0	i--	ETH IPV4 => DROP
84	0	0	i--	ETH IPV4 => DROP
85	0	0	i--	ETH IPV4 => DROP
86	0	0	i--	ETH IPV4 => DROP
87	0	0	i--	ETH IPV4 => DROP
88	0	0	i--	ETH IPV4 => DROP
89	0	0	i--	ETH IPV4 => DROP
90	0	0	i--	ETH IPV4 => DROP
91	0	0	i--	ETH IPV4 => DROP
92	0	0	i--	ETH IPV4 => DROP
93	0	0	i--	ETH IPV4 => DROP
94	0	0	i--	ETH IPV4 => DROP
95	0	0	i--	ETH IPV4 => DROP
96	0	0	i--	ETH IPV4 => DROP
97	0	0	i--	ETH IPV4 => DROP
98	0	0	i--	ETH IPV4 => DROP
99	0	0	i--	ETH IPV4 => DROP
100	0	0	i--	ETH IPV4 => DROP
101	0	0	i--	ETH IPV4 => DROP
102	0	0	i--	ETH IPV4 => DROP
103	0	0	i--	ETH IPV4 => DROP
104	0	0	i--	ETH IPV4 => DROP
105	0	0	i--	ETH IPV4 => DROP
106	0	0	i--	ETH IPV4 => DROP
107	0	0	i--	ETH IPV4 => DROP
108	0	0	i--	ETH IPV4 => DROP
109	0	0	i--	ETH IPV4 => DROP
110	0	0	i--	ETH IPV4 => DROP
111	0	0	i--	ETH IPV4 => DROP
112	0	0	i--	ETH IPV4 => DROP
113	0	0	i--	ETH IPV4 => DROP
114	0	0	i--	ETH IPV4 => DROP
115	0	0	i--	ETH IPV4 => DROP
116	0	0	i--	ETH IPV4 => DROP
117	0	0	i--	ETH IPV4 => DROP
118	0	0	i--	ETH IPV4 => DROP
119	0	0	i--	ETH IPV4 => DROP
120	0	0	i--	ETH IPV4 => DROP
121	0	0	i--	ETH IPV4 => DROP
122	0	0	i--	ETH IPV4 => DROP
123	0	0	i--	ETH IPV4 => DROP
124	0	0	i--	ETH IPV4 => DROP
125	0	0	i--	ETH IPV4 => DROP
126	0	0	i--	ETH IPV4 => DROP
127	0	0	i--	ETH IPV4 => DROP
129	0	0	i--	ETH IPV4 => DROP
26/03/2021 10:54:16             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.1.1 src mask 255.255.255.254 dst spec 192.168.1.128 dst mask 255.255.255.254 / end actions drop / end
26/03/2021 10:54:16             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #130 created
26/03/2021 10:54:16             dut.10.240.183.133: flow destroy 0 rule 129
26/03/2021 10:54:16             dut.10.240.183.133: 
Flow rule #129 destroyed
26/03/2021 10:54:16             dut.10.240.183.133: flow list 0
26/03/2021 10:54:17             dut.10.240.183.133: 
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 => DROP
3	0	0	i--	ETH IPV4 => DROP
4	0	0	i--	ETH IPV4 => DROP
5	0	0	i--	ETH IPV4 => DROP
6	0	0	i--	ETH IPV4 => DROP
7	0	0	i--	ETH IPV4 => DROP
8	0	0	i--	ETH IPV4 => DROP
9	0	0	i--	ETH IPV4 => DROP
10	0	0	i--	ETH IPV4 => DROP
11	0	0	i--	ETH IPV4 => DROP
12	0	0	i--	ETH IPV4 => DROP
13	0	0	i--	ETH IPV4 => DROP
14	0	0	i--	ETH IPV4 => DROP
15	0	0	i--	ETH IPV4 => DROP
16	0	0	i--	ETH IPV4 => DROP
17	0	0	i--	ETH IPV4 => DROP
18	0	0	i--	ETH IPV4 => DROP
19	0	0	i--	ETH IPV4 => DROP
20	0	0	i--	ETH IPV4 => DROP
21	0	0	i--	ETH IPV4 => DROP
22	0	0	i--	ETH IPV4 => DROP
23	0	0	i--	ETH IPV4 => DROP
24	0	0	i--	ETH IPV4 => DROP
25	0	0	i--	ETH IPV4 => DROP
26	0	0	i--	ETH IPV4 => DROP
27	0	0	i--	ETH IPV4 => DROP
28	0	0	i--	ETH IPV4 => DROP
29	0	0	i--	ETH IPV4 => DROP
30	0	0	i--	ETH IPV4 => DROP
31	0	0	i--	ETH IPV4 => DROP
32	0	0	i--	ETH IPV4 => DROP
33	0	0	i--	ETH IPV4 => DROP
34	0	0	i--	ETH IPV4 => DROP
35	0	0	i--	ETH IPV4 => DROP
36	0	0	i--	ETH IPV4 => DROP
37	0	0	i--	ETH IPV4 => DROP
38	0	0	i--	ETH IPV4 => DROP
39	0	0	i--	ETH IPV4 => DROP
40	0	0	i--	ETH IPV4 => DROP
41	0	0	i--	ETH IPV4 => DROP
42	0	0	i--	ETH IPV4 => DROP
43	0	0	i--	ETH IPV4 => DROP
44	0	0	i--	ETH IPV4 => DROP
45	0	0	i--	ETH IPV4 => DROP
46	0	0	i--	ETH IPV4 => DROP
47	0	0	i--	ETH IPV4 => DROP
48	0	0	i--	ETH IPV4 => DROP
49	0	0	i--	ETH IPV4 => DROP
50	0	0	i--	ETH IPV4 => DROP
51	0	0	i--	ETH IPV4 => DROP
52	0	0	i--	ETH IPV4 => DROP
53	0	0	i--	ETH IPV4 => DROP
54	0	0	i--	ETH IPV4 => DROP
55	0	0	i--	ETH IPV4 => DROP
56	0	0	i--	ETH IPV4 => DROP
57	0	0	i--	ETH IPV4 => DROP
58	0	0	i--	ETH IPV4 => DROP
59	0	0	i--	ETH IPV4 => DROP
60	0	0	i--	ETH IPV4 => DROP
61	0	0	i--	ETH IPV4 => DROP
62	0	0	i--	ETH IPV4 => DROP
63	0	0	i--	ETH IPV4 => DROP
64	0	0	i--	ETH IPV4 => DROP
65	0	0	i--	ETH IPV4 => DROP
66	0	0	i--	ETH IPV4 => DROP
67	0	0	i--	ETH IPV4 => DROP
68	0	0	i--	ETH IPV4 => DROP
69	0	0	i--	ETH IPV4 => DROP
70	0	0	i--	ETH IPV4 => DROP
71	0	0	i--	ETH IPV4 => DROP
72	0	0	i--	ETH IPV4 => DROP
73	0	0	i--	ETH IPV4 => DROP
74	0	0	i--	ETH IPV4 => DROP
75	0	0	i--	ETH IPV4 => DROP
76	0	0	i--	ETH IPV4 => DROP
77	0	0	i--	ETH IPV4 => DROP
78	0	0	i--	ETH IPV4 => DROP
79	0	0	i--	ETH IPV4 => DROP
80	0	0	i--	ETH IPV4 => DROP
81	0	0	i--	ETH IPV4 => DROP
82	0	0	i--	ETH IPV4 => DROP
83	0	0	i--	ETH IPV4 => DROP
84	0	0	i--	ETH IPV4 => DROP
85	0	0	i--	ETH IPV4 => DROP
86	0	0	i--	ETH IPV4 => DROP
87	0	0	i--	ETH IPV4 => DROP
88	0	0	i--	ETH IPV4 => DROP
89	0	0	i--	ETH IPV4 => DROP
90	0	0	i--	ETH IPV4 => DROP
91	0	0	i--	ETH IPV4 => DROP
92	0	0	i--	ETH IPV4 => DROP
93	0	0	i--	ETH IPV4 => DROP
94	0	0	i--	ETH IPV4 => DROP
95	0	0	i--	ETH IPV4 => DROP
96	0	0	i--	ETH IPV4 => DROP
97	0	0	i--	ETH IPV4 => DROP
98	0	0	i--	ETH IPV4 => DROP
99	0	0	i--	ETH IPV4 => DROP
100	0	0	i--	ETH IPV4 => DROP
101	0	0	i--	ETH IPV4 => DROP
102	0	0	i--	ETH IPV4 => DROP
103	0	0	i--	ETH IPV4 => DROP
104	0	0	i--	ETH IPV4 => DROP
105	0	0	i--	ETH IPV4 => DROP
106	0	0	i--	ETH IPV4 => DROP
107	0	0	i--	ETH IPV4 => DROP
108	0	0	i--	ETH IPV4 => DROP
109	0	0	i--	ETH IPV4 => DROP
110	0	0	i--	ETH IPV4 => DROP
111	0	0	i--	ETH IPV4 => DROP
112	0	0	i--	ETH IPV4 => DROP
113	0	0	i--	ETH IPV4 => DROP
114	0	0	i--	ETH IPV4 => DROP
115	0	0	i--	ETH IPV4 => DROP
116	0	0	i--	ETH IPV4 => DROP
117	0	0	i--	ETH IPV4 => DROP
118	0	0	i--	ETH IPV4 => DROP
119	0	0	i--	ETH IPV4 => DROP
120	0	0	i--	ETH IPV4 => DROP
121	0	0	i--	ETH IPV4 => DROP
122	0	0	i--	ETH IPV4 => DROP
123	0	0	i--	ETH IPV4 => DROP
124	0	0	i--	ETH IPV4 => DROP
125	0	0	i--	ETH IPV4 => DROP
126	0	0	i--	ETH IPV4 => DROP
127	0	0	i--	ETH IPV4 => DROP
130	0	0	i--	ETH IPV4 => DROP
26/03/2021 10:54:19             dut.10.240.183.133: 
26/03/2021 10:54:19             dut.10.240.183.133: stop
26/03/2021 10:54:19             dut.10.240.183.133: 
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.
26/03/2021 10:54:19             dut.10.240.183.133: start
26/03/2021 10:54:19             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:54:19             dut.10.240.183.133: flow flush 0
26/03/2021 10:55:19            CVLDCFACLFilterTest: Test Case test_max_entry_num_ipv4_other Result FAILED: TIMEOUT on flow flush 0
26/03/2021 10:55:19            CVLDCFACLFilterTest: flow flush 0
Segmentation fault (core dumped)
[PEXPECT]# 
26/03/2021 10:55:19             dut.10.240.183.133: flow flush 0
26/03/2021 10:55:34            CVLDCFACLFilterTest: tear_down failed:
Traceback (most recent call last):
  File "/home/autoregression/dts/dts_bak/framework/test_case.py", line 465, in execute_tear_down
    self.tear_down()
  File "tests/TestSuite_cvl_dcf_acl_filter.py", line 1493, in tear_down
    self.quit_testpmd()
  File "tests/TestSuite_cvl_dcf_acl_filter.py", line 1414, in quit_testpmd
    self.dut.send_expect("flow flush 0", "testpmd> ", 15)
  File "/home/autoregression/dts/dts_bak/framework/crb.py", line 93, in send_expect
    return self.session.send_expect(cmds, expected, timeout, verify)
  File "/home/autoregression/dts/dts_bak/framework/ssh_connection.py", line 64, in send_expect
    out = self.session.send_expect(cmds, expected, timeout, verify)
  File "/home/autoregression/dts/dts_bak/framework/ssh_pexpect.py", line 103, in send_expect
    raise(e)
  File "/home/autoregression/dts/dts_bak/framework/ssh_pexpect.py", line 90, in send_expect
    ret = self.send_expect_base(command, expected, timeout)
  File "/home/autoregression/dts/dts_bak/framework/ssh_pexpect.py", line 81, in send_expect_base
    self.__prompt(command, timeout)
  File "/home/autoregression/dts/dts_bak/framework/ssh_pexpect.py", line 149, in __prompt
    raise TimeoutException(command, self.get_output_all()) from None
exception.TimeoutException: TIMEOUT on flow flush 0

26/03/2021 10:55:34            CVLDCFACLFilterTest: tear down test_max_entry_num_ipv4_other failed, might iterfere next case's result!
26/03/2021 10:55:34            CVLDCFACLFilterTest: Test Case test_multi_rteflow_rules Begin
26/03/2021 10:55:34             dut.10.240.183.133: 
Command 'flow' not found, did you mean:

  command 'flog' from deb flog (1.8+orig-2)
  command 'uflow' from deb bpfcc-tools (0.12.0-2)
  command 'qflow' from deb qflow (1.3.17+dfsg.1-2)
  command 'mflow' from deb mblaze (0.6-1)
  command 'cflow' from deb cflow (1:1.6-4)
  command 'flow6' from deb ipv6toolkit (2.0-1)

Try: apt install <deb name>

[PEXPECT]# 
26/03/2021 10:55:34                         tester: 
26/03/2021 10:55:39             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i --rxq=16 --txq=16
26/03/2021 10:55:53             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[1]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[2]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[3]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[4]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[5]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[6]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[7]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[8]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[9]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[10]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[11]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[12]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[13]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[14]
ice_dcf_configure_queues(): request RXDID == 16 in Queue[15]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
iavf_configure_queues(): request RXDID[22] in Queue[0]
iavf_configure_queues(): request RXDID[22] in Queue[1]
iavf_configure_queues(): request RXDID[22] in Queue[2]
iavf_configure_queues(): request RXDID[22] in Queue[3]
iavf_configure_queues(): request RXDID[22] in Queue[4]
iavf_configure_queues(): request RXDID[22] in Queue[5]
iavf_configure_queues(): request RXDID[22] in Queue[6]
iavf_configure_queues(): request RXDID[22] in Queue[7]
iavf_configure_queues(): request RXDID[22] in Queue[8]
iavf_configure_queues(): request RXDID[22] in Queue[9]
iavf_configure_queues(): request RXDID[22] in Queue[10]
iavf_configure_queues(): request RXDID[22] in Queue[11]
iavf_configure_queues(): request RXDID[22] in Queue[12]
iavf_configure_queues(): request RXDID[22] in Queue[13]
iavf_configure_queues(): request RXDID[22] in Queue[14]
iavf_configure_queues(): request RXDID[22] in Queue[15]

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event

Port 1: link state change event
Port 1: 00:01:23:45:67:89
Checking link statuses...
Done
26/03/2021 10:55:53             dut.10.240.183.133: set portlist 1
26/03/2021 10:55:53             dut.10.240.183.133: 
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.

26/03/2021 10:55:53             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:55:53             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:55:53             dut.10.240.183.133: set verbose 1
26/03/2021 10:55:53             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:55:53             dut.10.240.183.133: start
26/03/2021 10:55:53             dut.10.240.183.133: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=1/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=4 (socket 1) -> TX P=1/Q=4 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=5 (socket 1) -> TX P=1/Q=5 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=6 (socket 1) -> TX P=1/Q=6 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=7 (socket 1) -> TX P=1/Q=7 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=8 (socket 1) -> TX P=1/Q=8 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=9 (socket 1) -> TX P=1/Q=9 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=10 (socket 1) -> TX P=1/Q=10 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=11 (socket 1) -> TX P=1/Q=11 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=12 (socket 1) -> TX P=1/Q=12 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=13 (socket 1) -> TX P=1/Q=13 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=14 (socket 1) -> TX P=1/Q=14 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=15 (socket 1) -> TX P=1/Q=15 (socket 1) 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: 16 Tx queue number: 16
    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: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
26/03/2021 10:55:53             dut.10.240.183.133: show port info 0
26/03/2021 10:55:53             dut.10.240.183.133: 

********************* Infos for port 0  *********************
MAC address: C6:41:04:07:4F:99
Device name: 0000:81:01.0
Driver name: net_ice_dcf
Firmware-version: not available
Devargs: cap=dcf
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: None
Link duplex: half-duplex
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: 16
Max possible RX queues: 16
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: 16
Max possible TX queues: 16
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
26/03/2021 10:55:53             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.1 dst is 192.168.0.20 / tcp / end actions vf id 1 / end
26/03/2021 10:55:53             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #0 created
26/03/2021 10:55:53             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.20 / tcp / end actions vf id 1 / end
26/03/2021 10:55:53             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #1 created
26/03/2021 10:55:53             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.3 dst is 192.168.0.20 / tcp / end actions vf id 1 / end
26/03/2021 10:55:54             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #2 created
26/03/2021 10:55:54             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src is 192.168.0.4 dst is 192.168.0.20 / tcp / end actions vf id 1 / end
26/03/2021 10:55:54             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #3 created
26/03/2021 10:55:54             dut.10.240.183.133: flow list 0
26/03/2021 10:55:54             dut.10.240.183.133: 
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
26/03/2021 10:55:54             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.2 src mask 255.255.255.254 / tcp / end actions drop / end
26/03/2021 10:55:54             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #4 created
26/03/2021 10:55:54             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 dst spec 192.168.0.21 dst mask 255.255.0.255 / tcp / end actions drop / end
26/03/2021 10:55:54             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #5 created
26/03/2021 10:55:54             dut.10.240.183.133: flow list 0
26/03/2021 10:55:54             dut.10.240.183.133: 
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 => DROP
5	0	0	i--	ETH IPV4 TCP => DROP
26/03/2021 10:55:54             dut.10.240.183.133: flow create 1 ingress pattern eth / ipv4 src is 192.168.0.1 dst is 192.168.0.20 / tcp src is 22 dst is 23 / end actions queue index 3 / mark / end
26/03/2021 10:55:54             dut.10.240.183.133: 
Flow rule #0 created
26/03/2021 10:55:54             dut.10.240.183.133: flow create 1 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.20 / tcp src is 22 dst is 23 / end actions queue index 3 / mark / end
26/03/2021 10:55:54             dut.10.240.183.133: 
Flow rule #1 created
26/03/2021 10:55:54             dut.10.240.183.133: flow create 1 ingress pattern eth / ipv4 src is 192.168.1.1 dst is 192.168.0.20 / tcp src is 22 dst is 23 / end actions queue index 3 / mark / end
26/03/2021 10:55:54             dut.10.240.183.133: 
Flow rule #2 created
26/03/2021 10:55:54             dut.10.240.183.133: flow list 1
26/03/2021 10:55:54             dut.10.240.183.133: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 TCP => QUEUE MARK
1	0	0	i--	ETH IPV4 TCP => QUEUE MARK
2	0	0	i--	ETH IPV4 TCP => QUEUE MARK
26/03/2021 10:55:56             dut.10.240.183.133: 
26/03/2021 10:55:56             dut.10.240.183.133: stop
26/03/2021 10:55:56             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 3             RX-total: 3
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 3             RX-total: 3
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:55:56             dut.10.240.183.133: start
26/03/2021 10:55:56             dut.10.240.183.133: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=1/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=4 (socket 1) -> TX P=1/Q=4 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=5 (socket 1) -> TX P=1/Q=5 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=6 (socket 1) -> TX P=1/Q=6 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=7 (socket 1) -> TX P=1/Q=7 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=8 (socket 1) -> TX P=1/Q=8 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=9 (socket 1) -> TX P=1/Q=9 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=10 (socket 1) -> TX P=1/Q=10 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=11 (socket 1) -> TX P=1/Q=11 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=12 (socket 1) -> TX P=1/Q=12 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=13 (socket 1) -> TX P=1/Q=13 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=14 (socket 1) -> TX P=1/Q=14 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=15 (socket 1) -> TX P=1/Q=15 (socket 1) 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: 16 Tx queue number: 16
    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: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
26/03/2021 10:55:59             dut.10.240.183.133: port 1/queue 3: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:88 - type=0x0800 - length=84 - nb_segs=1 - RSS hash=0x5b52f5d7 - RSS queue=0x3 - FDIR matched ID=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_FDIR_ID PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 3: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - RSS hash=0xc3aa7c86 - RSS queue=0x3 - FDIR matched ID=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_FDIR_ID PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:55:59             dut.10.240.183.133: stop
26/03/2021 10:55:59             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 1/Queue= 3 -> TX Port= 1/Queue= 3 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ---------------------- 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.
26/03/2021 10:55:59             dut.10.240.183.133: start
26/03/2021 10:55:59             dut.10.240.183.133: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=1/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=4 (socket 1) -> TX P=1/Q=4 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=5 (socket 1) -> TX P=1/Q=5 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=6 (socket 1) -> TX P=1/Q=6 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=7 (socket 1) -> TX P=1/Q=7 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=8 (socket 1) -> TX P=1/Q=8 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=9 (socket 1) -> TX P=1/Q=9 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=10 (socket 1) -> TX P=1/Q=10 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=11 (socket 1) -> TX P=1/Q=11 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=12 (socket 1) -> TX P=1/Q=12 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=13 (socket 1) -> TX P=1/Q=13 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=14 (socket 1) -> TX P=1/Q=14 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=15 (socket 1) -> TX P=1/Q=15 (socket 1) 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: 16 Tx queue number: 16
    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: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
26/03/2021 10:56:01             dut.10.240.183.133: port 1/queue 7: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:88 - type=0x0800 - length=84 - nb_segs=1 - RSS hash=0x5b52f5d7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 7: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:88 - type=0x0800 - length=84 - nb_segs=1 - RSS hash=0x9df9f0c7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:56:01             dut.10.240.183.133: stop
26/03/2021 10:56:01             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 1/Queue= 7 -> TX Port= 1/Queue= 7 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ---------------------- 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.
26/03/2021 10:56:01             dut.10.240.183.133: start
26/03/2021 10:56:01             dut.10.240.183.133: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=1/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=4 (socket 1) -> TX P=1/Q=4 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=5 (socket 1) -> TX P=1/Q=5 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=6 (socket 1) -> TX P=1/Q=6 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=7 (socket 1) -> TX P=1/Q=7 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=8 (socket 1) -> TX P=1/Q=8 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=9 (socket 1) -> TX P=1/Q=9 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=10 (socket 1) -> TX P=1/Q=10 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=11 (socket 1) -> TX P=1/Q=11 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=12 (socket 1) -> TX P=1/Q=12 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=13 (socket 1) -> TX P=1/Q=13 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=14 (socket 1) -> TX P=1/Q=14 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=15 (socket 1) -> TX P=1/Q=15 (socket 1) 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: 16 Tx queue number: 16
    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: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
26/03/2021 10:56:03             dut.10.240.183.133: 
26/03/2021 10:56:03             dut.10.240.183.133: stop
26/03/2021 10:56:03             dut.10.240.183.133: 
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.
26/03/2021 10:56:03             dut.10.240.183.133: start
26/03/2021 10:56:03             dut.10.240.183.133: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=1/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=4 (socket 1) -> TX P=1/Q=4 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=5 (socket 1) -> TX P=1/Q=5 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=6 (socket 1) -> TX P=1/Q=6 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=7 (socket 1) -> TX P=1/Q=7 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=8 (socket 1) -> TX P=1/Q=8 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=9 (socket 1) -> TX P=1/Q=9 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=10 (socket 1) -> TX P=1/Q=10 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=11 (socket 1) -> TX P=1/Q=11 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=12 (socket 1) -> TX P=1/Q=12 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=13 (socket 1) -> TX P=1/Q=13 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=14 (socket 1) -> TX P=1/Q=14 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=15 (socket 1) -> TX P=1/Q=15 (socket 1) 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: 16 Tx queue number: 16
    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: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
26/03/2021 10:56:03             dut.10.240.183.133: flow destroy 0 rule 4
26/03/2021 10:56:03             dut.10.240.183.133: 
Flow rule #4 destroyed
26/03/2021 10:56:05             dut.10.240.183.133: port 1/queue 3: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:88 - type=0x0800 - length=84 - nb_segs=1 - RSS hash=0xdf9f0c37 - RSS queue=0x3 - FDIR matched ID=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_FDIR_ID PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:56:05             dut.10.240.183.133: stop
26/03/2021 10:56:05             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 1/Queue= 3 -> TX Port= 1/Queue= 3 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ---------------------- 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.
26/03/2021 10:56:05             dut.10.240.183.133: start
26/03/2021 10:56:06             dut.10.240.183.133: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=1/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=4 (socket 1) -> TX P=1/Q=4 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=5 (socket 1) -> TX P=1/Q=5 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=6 (socket 1) -> TX P=1/Q=6 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=7 (socket 1) -> TX P=1/Q=7 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=8 (socket 1) -> TX P=1/Q=8 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=9 (socket 1) -> TX P=1/Q=9 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=10 (socket 1) -> TX P=1/Q=10 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=11 (socket 1) -> TX P=1/Q=11 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=12 (socket 1) -> TX P=1/Q=12 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=13 (socket 1) -> TX P=1/Q=13 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=14 (socket 1) -> TX P=1/Q=14 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=15 (socket 1) -> TX P=1/Q=15 (socket 1) 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: 16 Tx queue number: 16
    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: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
26/03/2021 10:56:08             dut.10.240.183.133: port 1/queue 7: received 1 packets
  src=00:11:22:33:44:55 - dst=00:01:23:45:67:88 - type=0x0800 - length=84 - nb_segs=1 - RSS hash=0x27165d77 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:56:08             dut.10.240.183.133: stop
26/03/2021 10:56:08             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 1/Queue= 7 -> TX Port= 1/Queue= 7 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ---------------------- 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.
26/03/2021 10:56:08             dut.10.240.183.133: start
26/03/2021 10:56:08             dut.10.240.183.133: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=1/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=4 (socket 1) -> TX P=1/Q=4 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=5 (socket 1) -> TX P=1/Q=5 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=6 (socket 1) -> TX P=1/Q=6 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=7 (socket 1) -> TX P=1/Q=7 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=8 (socket 1) -> TX P=1/Q=8 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=9 (socket 1) -> TX P=1/Q=9 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=10 (socket 1) -> TX P=1/Q=10 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=11 (socket 1) -> TX P=1/Q=11 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=12 (socket 1) -> TX P=1/Q=12 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=13 (socket 1) -> TX P=1/Q=13 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=14 (socket 1) -> TX P=1/Q=14 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=15 (socket 1) -> TX P=1/Q=15 (socket 1) 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: 16 Tx queue number: 16
    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: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
26/03/2021 10:56:08            CVLDCFACLFilterTest: Test Case test_multi_rteflow_rules Result PASSED:
26/03/2021 10:56:08             dut.10.240.183.133: flow flush 0
26/03/2021 10:56:08             dut.10.240.183.133: 
26/03/2021 10:56:08             dut.10.240.183.133: clear port stats all
26/03/2021 10:56:08             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:56:08             dut.10.240.183.133: quit
26/03/2021 10:56:09             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:56:09             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:56:10             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:56:10             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:56:10             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:56:10             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:56:10            CVLDCFACLFilterTest: Test Case test_multirules_all_pattern Begin
26/03/2021 10:56:10             dut.10.240.183.133: 
26/03/2021 10:56:10                         tester: 
26/03/2021 10:56:15             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i
26/03/2021 10:56:28             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
26/03/2021 10:56:28             dut.10.240.183.133: set portlist 1
26/03/2021 10:56:28             dut.10.240.183.133: 
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.

26/03/2021 10:56:28             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:56:29             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:56:29             dut.10.240.183.133: set verbose 1
26/03/2021 10:56:29             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:56:29             dut.10.240.183.133: start
26/03/2021 10:56:29             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:56:29             dut.10.240.183.133: show port info 0
26/03/2021 10:56:29             dut.10.240.183.133: 

********************* Infos for port 0  *********************
MAC address: C6:41:04:07:4F:99
Device name: 0000:81:01.0
Driver name: net_ice_dcf
Firmware-version: not available
Devargs: cap=dcf
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: None
Link duplex: half-duplex
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: 16
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: 16
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
26/03/2021 10:56:29             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.0 / end actions drop / end
26/03/2021 10:56:29             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:56:29             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 dst spec 192.168.0.2 dst mask 255.255.255.0 / end actions drop / end
26/03/2021 10:56:29             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #1 created
26/03/2021 10:56:29             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.0 dst spec 192.168.0.2 dst mask 255.255.0.255 / end actions drop / end
26/03/2021 10:56:29             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #2 created
26/03/2021 10:56:29             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 / tcp src spec 8010 src mask 65520 / end actions drop / end
26/03/2021 10:56:29             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #3 created
26/03/2021 10:56:29             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 / tcp dst spec 8017 dst mask 65520 / end actions drop / end
26/03/2021 10:56:29             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #4 created
26/03/2021 10:56:29             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.254 / tcp / end actions drop / end
26/03/2021 10:56:29             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #5 created
26/03/2021 10:56:29             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 dst spec 192.168.0.2 dst mask 255.255.255.254 / tcp / end actions drop / end
26/03/2021 10:56:29             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #6 created
26/03/2021 10:56:29             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.0 dst spec 192.168.0.2 dst mask 255.255.0.255 / tcp src spec 8010 src mask 65520 dst spec 8017 dst mask 65520 / end actions drop / end
26/03/2021 10:56:30             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #7 created
26/03/2021 10:56:30             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 / udp src spec 8017 src mask 65520 / end actions drop / end
26/03/2021 10:56:30             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #8 created
26/03/2021 10:56:30             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 / udp dst spec 8010 dst mask 65520 / end actions drop / end
26/03/2021 10:56:30             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #9 created
26/03/2021 10:56:30             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.254.255 / udp / end actions drop / end
26/03/2021 10:56:30             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #10 created
26/03/2021 10:56:30             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 dst spec 192.168.0.2 dst mask 255.255.254.255 / udp / end actions drop / end
26/03/2021 10:56:30             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #11 created
26/03/2021 10:56:30             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.0 dst spec 192.168.0.2 dst mask 255.255.0.255 / udp src spec 8017 src mask 65520 dst spec 8010 dst mask 65520 / end actions drop / end
26/03/2021 10:56:30             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #12 created
26/03/2021 10:56:30             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.254 / sctp / end actions drop / end
26/03/2021 10:56:30             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #13 created
26/03/2021 10:56:30             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 dst spec 192.168.0.2 dst mask 255.255.255.254 / sctp / end actions drop / end
26/03/2021 10:56:30             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #14 created
26/03/2021 10:56:30             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 / sctp src spec 8010 src mask 65520 / end actions drop / end
26/03/2021 10:56:30             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #15 created
26/03/2021 10:56:30             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 / sctp dst spec 8010 dst mask 65520 / end actions drop / end
26/03/2021 10:56:30             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #16 created
26/03/2021 10:56:30             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.0 dst spec 192.168.0.2 dst mask 255.255.0.255 / sctp src spec 8010 src mask 65520 dst spec 8017 dst mask 65520 / end actions drop / end
26/03/2021 10:56:30             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #17 created
26/03/2021 10:56:30             dut.10.240.183.133: flow list 0
26/03/2021 10:56:30             dut.10.240.183.133: 
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 => DROP
3	0	0	i--	ETH IPV4 TCP => DROP
4	0	0	i--	ETH IPV4 TCP => DROP
5	0	0	i--	ETH IPV4 TCP => DROP
6	0	0	i--	ETH IPV4 TCP => DROP
7	0	0	i--	ETH IPV4 TCP => DROP
8	0	0	i--	ETH IPV4 UDP => DROP
9	0	0	i--	ETH IPV4 UDP => DROP
10	0	0	i--	ETH IPV4 UDP => DROP
11	0	0	i--	ETH IPV4 UDP => DROP
12	0	0	i--	ETH IPV4 UDP => DROP
13	0	0	i--	ETH IPV4 SCTP => DROP
14	0	0	i--	ETH IPV4 SCTP => DROP
15	0	0	i--	ETH IPV4 SCTP => DROP
16	0	0	i--	ETH IPV4 SCTP => DROP
17	0	0	i--	ETH IPV4 SCTP => DROP
26/03/2021 10:56:33             dut.10.240.183.133: 
26/03/2021 10:56:33             dut.10.240.183.133: stop
26/03/2021 10:56:33             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 19            RX-total: 19
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 19            RX-total: 19
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:56:33             dut.10.240.183.133: start
26/03/2021 10:56:33             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:56:35             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:01:23:45:67:89 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:01:23:45:67:89 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER L3_IPV4 L4_SCTP  - l2_len=14 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:56:35             dut.10.240.183.133: stop
26/03/2021 10:56:35             dut.10.240.183.133: 
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.
26/03/2021 10:56:35             dut.10.240.183.133: start
26/03/2021 10:56:35             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:56:35            CVLDCFACLFilterTest: Test Case test_multirules_all_pattern Result PASSED:
26/03/2021 10:56:35             dut.10.240.183.133: flow flush 0
26/03/2021 10:56:36             dut.10.240.183.133: 
26/03/2021 10:56:36             dut.10.240.183.133: clear port stats all
26/03/2021 10:56:36             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:56:36             dut.10.240.183.133: quit
26/03/2021 10:56:37             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:56:37             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:56:38             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:56:38             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:56:38             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:56:38             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:56:38            CVLDCFACLFilterTest: Test Case test_multirules_diff_pattern_inputset Begin
26/03/2021 10:56:38             dut.10.240.183.133: 
26/03/2021 10:56:38                         tester: 
26/03/2021 10:56:43             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i
26/03/2021 10:56:56             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
26/03/2021 10:56:56             dut.10.240.183.133: set portlist 1
26/03/2021 10:56:56             dut.10.240.183.133: 
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.

26/03/2021 10:56:56             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:56:56             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:56:56             dut.10.240.183.133: set verbose 1
26/03/2021 10:56:56             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:56:56             dut.10.240.183.133: start
26/03/2021 10:56:56             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:56:56             dut.10.240.183.133: show port info 0
26/03/2021 10:56:56             dut.10.240.183.133: 

********************* Infos for port 0  *********************
MAC address: C6:41:04:07:4F:99
Device name: 0000:81:01.0
Driver name: net_ice_dcf
Firmware-version: not available
Devargs: cap=dcf
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: None
Link duplex: half-duplex
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: 16
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: 16
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
26/03/2021 10:56:56             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.0 / end actions drop / end
26/03/2021 10:56:56             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:56:59             dut.10.240.183.133: 
26/03/2021 10:56:59             dut.10.240.183.133: stop
26/03/2021 10:56:59             dut.10.240.183.133: 
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.
26/03/2021 10:56:59             dut.10.240.183.133: start
26/03/2021 10:56:59             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:57:01             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:57:01             dut.10.240.183.133: stop
26/03/2021 10:57:01             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 4              RX-dropped: 0             RX-total: 4
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 4              RX-dropped: 0             RX-total: 4
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:57:01             dut.10.240.183.133: start
26/03/2021 10:57:01             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:57:01             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.0.255 / end actions drop / end
26/03/2021 10:57:01             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #1 created
26/03/2021 10:57:03             dut.10.240.183.133: 
26/03/2021 10:57:03             dut.10.240.183.133: stop
26/03/2021 10:57:03             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 2             RX-total: 2
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 2             RX-total: 2
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:57:03             dut.10.240.183.133: start
26/03/2021 10:57:03             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:57:05             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:57:05             dut.10.240.183.133: stop
26/03/2021 10:57:06             dut.10.240.183.133: 
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.
26/03/2021 10:57:06             dut.10.240.183.133: start
26/03/2021 10:57:06             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:57:06             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.1.1 src mask 255.255.255.0 / end actions drop / end
26/03/2021 10:57:06             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #2 created
26/03/2021 10:57:08             dut.10.240.183.133: 
26/03/2021 10:57:08             dut.10.240.183.133: stop
26/03/2021 10:57:08             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 3             RX-total: 3
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 3             RX-total: 3
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:57:08             dut.10.240.183.133: start
26/03/2021 10:57:08             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:57:10             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:01:23:45:67:89 - type=0x0800 - length=64 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 1/queue 0: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:57:10             dut.10.240.183.133: stop
26/03/2021 10:57:10             dut.10.240.183.133: 
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.
26/03/2021 10:57:10             dut.10.240.183.133: start
26/03/2021 10:57:10             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:57:10             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 dst spec 192.168.0.1 dst mask 255.255.255.0 / end actions drop / end
26/03/2021 10:57:10             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #3 created
26/03/2021 10:57:12             dut.10.240.183.133: 
26/03/2021 10:57:12             dut.10.240.183.133: stop
26/03/2021 10:57:13             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 4             RX-total: 4
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 4             RX-total: 4
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:57:13             dut.10.240.183.133: start
26/03/2021 10:57:13             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:57:15             dut.10.240.183.133: port 1/queue 0: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:01:23:45:67:89 - type=0x0800 - length=72 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 10:57:15             dut.10.240.183.133: stop
26/03/2021 10:57:15             dut.10.240.183.133: 
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.
26/03/2021 10:57:15             dut.10.240.183.133: start
26/03/2021 10:57:15             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:57:15             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.2.3 src mask 255.255.0.255 / udp / end actions drop / end
26/03/2021 10:57:15             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #4 created
26/03/2021 10:57:17             dut.10.240.183.133: 
26/03/2021 10:57:17             dut.10.240.183.133: stop
26/03/2021 10:57:17             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 5             RX-total: 5
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 5             RX-total: 5
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:57:17             dut.10.240.183.133: start
26/03/2021 10:57:17             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:57:17            CVLDCFACLFilterTest: Test Case test_multirules_diff_pattern_inputset Result PASSED:
26/03/2021 10:57:17             dut.10.240.183.133: flow flush 0
26/03/2021 10:57:18             dut.10.240.183.133: 
26/03/2021 10:57:18             dut.10.240.183.133: clear port stats all
26/03/2021 10:57:18             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:57:18             dut.10.240.183.133: quit
26/03/2021 10:57:19             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:57:19             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:57:20             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:57:20             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:57:20             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:57:20             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:57:20            CVLDCFACLFilterTest: Test Case test_mutually_exclusive Begin
26/03/2021 10:57:20             dut.10.240.183.133: 
26/03/2021 10:57:20                         tester: 
26/03/2021 10:57:20             dut.10.240.183.133: kill_all: called by dut and has no prefix list.
26/03/2021 10:57:28             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i
26/03/2021 10:57:31             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
ice_dcf_send_aq_cmd(): No response (201 times) or return failure (desc: -63 / buff: -63)
ice_flow_init(): Failed to initialize engine 4
ice_dcf_init_parent_adapter(): Failed to initialize flow
ice_dcf_dev_init(): Failed to init DCF parent adapter
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200024000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200044000
EAL: Requested device 0000:81:01.0 cannot be used
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
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 1)
iavf_init_rss(): RSS is enabled by PF by default
iavf_configure_queues(): request RXDID[22] in Queue[0]

Port 0: link state change event

Port 0: link state change event
Port 0: 00:01:23:45:67:89
Checking link statuses...
Done
26/03/2021 10:57:31             dut.10.240.183.133: set portlist 1
26/03/2021 10:57:31             dut.10.240.183.133: 
Invalid port 1
26/03/2021 10:57:31             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:57:31             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:57:31             dut.10.240.183.133: set verbose 1
26/03/2021 10:57:31             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:57:31             dut.10.240.183.133: start
26/03/2021 10:57:31             dut.10.240.183.133: 
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=0/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00

  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=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
26/03/2021 10:57:31             dut.10.240.183.133: show port info 0
26/03/2021 10:57:31             dut.10.240.183.133: 

********************* Infos for port 0  *********************
MAC address: 00:01:23:45:67:89
Device name: 0000:81:01.1
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: 100 Gbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
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
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: 256
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: 256
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
26/03/2021 10:57:31             dut.10.240.183.133: flow flush 0
26/03/2021 10:57:31             dut.10.240.183.133: 
26/03/2021 10:57:31             dut.10.240.183.133: clear port stats all
26/03/2021 10:57:31             dut.10.240.183.133: 

  NIC statistics for port 0 cleared
26/03/2021 10:57:31             dut.10.240.183.133: quit
26/03/2021 10:57:32             dut.10.240.183.133: 
Telling cores to stop...
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.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Port 0 is closed
Done

Bye...
26/03/2021 10:57:32             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:57:33             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:57:33             dut.10.240.183.133: 72 RX rings available
Total 1 rules

Filter: 15871
	Rule Type: TCP over IPv4
	Src IP addr: 192.168.10.0 mask: 0.255.255.255
	Dest IP addr: 0.0.0.0 mask: 255.255.255.255
	TOS: 0x0 mask: 0xff
	Src port: 0 mask: 0xffff
	Dest port: 8000 mask: 0xff
	Action: Drop

26/03/2021 10:57:33             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:57:33             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:57:33             dut.10.240.183.133: ethtool -N ens801f0 delete 15871
26/03/2021 10:57:33             dut.10.240.183.133: 
26/03/2021 10:57:33             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:57:33             dut.10.240.183.133: 72 RX rings available
26/03/2021 10:57:38             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i
26/03/2021 10:57:51             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
26/03/2021 10:57:51             dut.10.240.183.133: set portlist 1
26/03/2021 10:57:51             dut.10.240.183.133: 
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.

26/03/2021 10:57:51             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:57:51             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:57:51             dut.10.240.183.133: set verbose 1
26/03/2021 10:57:51             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:57:51             dut.10.240.183.133: start
26/03/2021 10:57:51             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:57:51             dut.10.240.183.133: show port info 0
26/03/2021 10:57:51             dut.10.240.183.133: 

********************* Infos for port 0  *********************
MAC address: C6:41:04:07:4F:99
Device name: 0000:81:01.0
Driver name: net_ice_dcf
Firmware-version: not available
Devargs: cap=dcf
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: None
Link duplex: half-duplex
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: 16
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: 16
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
26/03/2021 10:57:51             dut.10.240.183.133: flow flush 0
26/03/2021 10:57:51             dut.10.240.183.133: 
26/03/2021 10:57:51             dut.10.240.183.133: clear port stats all
26/03/2021 10:57:51             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:57:51             dut.10.240.183.133: quit
26/03/2021 10:57:53             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:57:53             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:57:58             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i
26/03/2021 10:58:12             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
26/03/2021 10:58:12             dut.10.240.183.133: set portlist 1
26/03/2021 10:58:12             dut.10.240.183.133: 
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.

26/03/2021 10:58:12             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:58:12             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:58:12             dut.10.240.183.133: set verbose 1
26/03/2021 10:58:12             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:58:12             dut.10.240.183.133: start
26/03/2021 10:58:12             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:58:12             dut.10.240.183.133: show port info 0
26/03/2021 10:58:12             dut.10.240.183.133: 

********************* Infos for port 0  *********************
MAC address: C6:41:04:07:4F:99
Device name: 0000:81:01.0
Driver name: net_ice_dcf
Firmware-version: not available
Devargs: cap=dcf
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: None
Link duplex: half-duplex
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: 16
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: 16
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
26/03/2021 10:58:12             dut.10.240.183.133: flow flush 0
26/03/2021 10:58:12             dut.10.240.183.133: 
26/03/2021 10:58:12             dut.10.240.183.133: clear port stats all
26/03/2021 10:58:12             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:58:12             dut.10.240.183.133: quit
26/03/2021 10:58:13             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:58:13             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:58:14             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:58:14             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:58:14             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:58:14             dut.10.240.183.133: 72 RX rings available
Total 1 rules

Filter: 15871
	Rule Type: TCP over IPv4
	Src IP addr: 192.168.10.0 mask: 0.255.255.255
	Dest IP addr: 0.0.0.0 mask: 255.255.255.255
	TOS: 0x0 mask: 0xff
	Src port: 0 mask: 0xffff
	Dest port: 8000 mask: 0xff
	Action: Drop

26/03/2021 10:58:14             dut.10.240.183.133: ethtool -N ens801f1 delete 15871
26/03/2021 10:58:14             dut.10.240.183.133: 
26/03/2021 10:58:14             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:58:14             dut.10.240.183.133: 72 RX rings available
26/03/2021 10:58:19             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i
26/03/2021 10:58:32             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
26/03/2021 10:58:32             dut.10.240.183.133: set portlist 1
26/03/2021 10:58:32             dut.10.240.183.133: 
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.

26/03/2021 10:58:32             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:58:32             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:58:32             dut.10.240.183.133: set verbose 1
26/03/2021 10:58:32             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:58:32             dut.10.240.183.133: start
26/03/2021 10:58:33             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:58:33             dut.10.240.183.133: show port info 0
26/03/2021 10:58:33             dut.10.240.183.133: 

********************* Infos for port 0  *********************
MAC address: C6:41:04:07:4F:99
Device name: 0000:81:01.0
Driver name: net_ice_dcf
Firmware-version: not available
Devargs: cap=dcf
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: None
Link duplex: half-duplex
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: 16
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: 16
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
26/03/2021 10:58:33             dut.10.240.183.133: flow flush 0
26/03/2021 10:58:33             dut.10.240.183.133: 
26/03/2021 10:58:33             dut.10.240.183.133: clear port stats all
26/03/2021 10:58:33             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:58:33             dut.10.240.183.133: quit
26/03/2021 10:58:34             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:58:34             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:58:35             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:58:35             dut.10.240.183.133: 72 RX rings available
Total 1 rules

Filter: 15871
	Rule Type: TCP over IPv4
	Src IP addr: 192.168.10.0 mask: 0.255.255.255
	Dest IP addr: 0.0.0.0 mask: 255.255.255.255
	TOS: 0x0 mask: 0xff
	Src port: 0 mask: 0xffff
	Dest port: 8000 mask: 0xff
	Action: Drop

26/03/2021 10:58:35             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:58:35             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:58:35             dut.10.240.183.133: ethtool -N ens801f0 delete 15871
26/03/2021 10:58:35             dut.10.240.183.133: 
26/03/2021 10:58:35             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:58:35             dut.10.240.183.133: 72 RX rings available
26/03/2021 10:58:40             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i
26/03/2021 10:58:53             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
26/03/2021 10:58:53             dut.10.240.183.133: set portlist 1
26/03/2021 10:58:53             dut.10.240.183.133: 
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.

26/03/2021 10:58:53             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:58:53             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:58:53             dut.10.240.183.133: set verbose 1
26/03/2021 10:58:53             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:58:53             dut.10.240.183.133: start
26/03/2021 10:58:53             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:58:53             dut.10.240.183.133: show port info 0
26/03/2021 10:58:53             dut.10.240.183.133: 

********************* Infos for port 0  *********************
MAC address: C6:41:04:07:4F:99
Device name: 0000:81:01.0
Driver name: net_ice_dcf
Firmware-version: not available
Devargs: cap=dcf
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: None
Link duplex: half-duplex
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: 16
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: 16
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
26/03/2021 10:58:54             dut.10.240.183.133: flow flush 0
26/03/2021 10:58:54             dut.10.240.183.133: 
26/03/2021 10:58:54             dut.10.240.183.133: clear port stats all
26/03/2021 10:58:54             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:58:54             dut.10.240.183.133: quit
26/03/2021 10:58:55             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:58:55             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:58:56             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:58:56             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:58:56             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:58:56             dut.10.240.183.133: 72 RX rings available
Total 1 rules

Filter: 15871
	Rule Type: TCP over IPv4
	Src IP addr: 192.168.10.0 mask: 0.255.255.255
	Dest IP addr: 0.0.0.0 mask: 255.255.255.255
	TOS: 0x0 mask: 0xff
	Src port: 0 mask: 0xffff
	Dest port: 8000 mask: 0xff
	Action: Drop

26/03/2021 10:58:56             dut.10.240.183.133: ethtool -N ens801f1 delete 15871
26/03/2021 10:58:56             dut.10.240.183.133: 
26/03/2021 10:58:56             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:58:56             dut.10.240.183.133: 72 RX rings available
26/03/2021 10:58:56            CVLDCFACLFilterTest: Test Case test_mutually_exclusive Result PASSED:
26/03/2021 10:58:56             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:58:56             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:58:56             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:58:56             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:58:56            CVLDCFACLFilterTest: Test Case test_negative Begin
26/03/2021 10:58:56             dut.10.240.183.133: 
26/03/2021 10:58:57                         tester: 
26/03/2021 10:59:02             dut.10.240.183.133: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:81:01.0,cap=dcf -a 0000:81:01.1  --file-prefix=dpdk_14620_20210326104600  --log-level='ice,7' -- -i
26/03/2021 10:59:15             dut.10.240.183.133: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_14620_20210326104600/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available 2048 kB hugepages reported
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.0 (socket 1)
EAL: Releasing pci mapped resource for 0000:81:01.0
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:81:01.0 at 0x2200020000
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:81:01.0 (socket 1)
ice_dcf_init_parent_hw(): firmware 5.5.2 api 1.7.8 build 0x274db31e
ice_load_pkg_type(): Active package is: 1.3.28.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:81:01.1 (socket 1)
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
testpmd: create a new mbuf pool <mb_pool_1>: n=171456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]
Port 0: C6:41:04:07:4F:99
Configuring Port 1 (socket 1)
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:01:23:45:67:89
Checking link statuses...
Done
26/03/2021 10:59:15             dut.10.240.183.133: set portlist 1
26/03/2021 10:59:15             dut.10.240.183.133: 
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.

26/03/2021 10:59:15             dut.10.240.183.133: set fwd rxonly
26/03/2021 10:59:15             dut.10.240.183.133: 
Set rxonly packet forwarding mode
26/03/2021 10:59:15             dut.10.240.183.133: set verbose 1
26/03/2021 10:59:15             dut.10.240.183.133: 
Change verbose level from 0 to 1
26/03/2021 10:59:15             dut.10.240.183.133: start
26/03/2021 10:59:15             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:59:15             dut.10.240.183.133: show port info 0
26/03/2021 10:59:15             dut.10.240.183.133: 

********************* Infos for port 0  *********************
MAC address: C6:41:04:07:4F:99
Device name: 0000:81:01.0
Driver name: net_ice_dcf
Firmware-version: not available
Devargs: cap=dcf
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: None
Link duplex: half-duplex
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: 16
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: 16
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
26/03/2021 10:59:15             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 / end actions drop / end
26/03/2021 10:59:15             dut.10.240.183.133: 
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 10 (item specification): cause: 0x7ffc79471958, Invalid input set: Invalid argument
26/03/2021 10:59:15             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src mask 255.255.255.0 / end actions drop / end
26/03/2021 10:59:15             dut.10.240.183.133: 
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 10 (item specification): cause: 0x7ffc79471958, Invalid input set: Invalid argument
26/03/2021 10:59:15             dut.10.240.183.133: flow create 0 ingress pattern eth src spec 00:11:22:33:44:55 / ipv4 / tcp / end actions drop / end
26/03/2021 10:59:15             dut.10.240.183.133: 
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 10 (item specification): cause: 0x7ffc79471958, Invalid input set: Invalid argument
26/03/2021 10:59:15             dut.10.240.183.133: flow create 0 ingress pattern eth src mask ff:ff:ff:ff:ff:00 / ipv4 / tcp / end actions drop / end
26/03/2021 10:59:15             dut.10.240.183.133: 
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 10 (item specification): cause: 0x7ffc79471958, Invalid input set: Invalid argument
26/03/2021 10:59:15             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 / tcp src spec 8010 / end actions drop / end
26/03/2021 10:59:15             dut.10.240.183.133: 
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 10 (item specification): cause: 0x7ffc79471958, Invalid input set: Invalid argument
26/03/2021 10:59:15             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 / tcp src mask 65520 / end actions drop / end
26/03/2021 10:59:15             dut.10.240.183.133: 
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 10 (item specification): cause: 0x7ffc79471958, Invalid input set: Invalid argument
26/03/2021 10:59:15             dut.10.240.183.133: flow list 0
26/03/2021 10:59:15             dut.10.240.183.133: 
26/03/2021 10:59:15             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 0.0.0.0 / end actions drop / end
26/03/2021 10:59:16             dut.10.240.183.133: 
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 10 (item specification): cause: 0x7ffc79471958, Invalid input set: Invalid argument
26/03/2021 10:59:16             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 / tcp dst spec 8010 dst mask 0 / end actions drop / end
26/03/2021 10:59:16             dut.10.240.183.133: 
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 10 (item specification): cause: 0x7ffc79471958, Invalid input set: Invalid argument
26/03/2021 10:59:16             dut.10.240.183.133: flow create 0 ingress pattern eth src spec 00:11:22:33:44:55 src mask 00:00:00:00:00:00 / ipv4 / tcp / end actions drop / end
26/03/2021 10:59:16             dut.10.240.183.133: 
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 10 (item specification): cause: 0x7ffc79471958, Invalid input set: Invalid argument
26/03/2021 10:59:16             dut.10.240.183.133: flow list 0
26/03/2021 10:59:16             dut.10.240.183.133: 
26/03/2021 10:59:16             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.255 dst spec 192.168.0.2 dst mask 255.255.255.255 / end actions drop / end
26/03/2021 10:59:16             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #0 created
26/03/2021 10:59:16             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.1.1 src mask 255.255.255.255 dst spec 192.168.1.2 dst mask 255.255.255.255 / tcp src spec 8010 src mask 65535 dst spec 8017 dst mask 65535 / end actions drop / end
26/03/2021 10:59:16             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #1 created
26/03/2021 10:59:16             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.2.1 src mask 255.255.255.255 dst spec 192.168.2.2 dst mask 255.255.255.0 / udp src spec 8010 src mask 65520 dst spec 8017 dst mask 65535 / end actions drop / end
26/03/2021 10:59:17             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (2) flow
Flow rule #2 created
26/03/2021 10:59:17             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.2.1 src mask 255.255.255.255 dst spec 192.168.2.2 dst mask 255.255.255.255 / sctp src spec 8012 src mask 65535 dst spec 8018 dst mask 65535 / end actions drop / end
26/03/2021 10:59:17             dut.10.240.183.133: 
ice_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Invalid input pattern: Invalid argument
26/03/2021 10:59:17             dut.10.240.183.133: flow flush 0
26/03/2021 10:59:17             dut.10.240.183.133: 
26/03/2021 10:59:17             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 dst mask 255.255.255.0 / end actions drop / end
26/03/2021 10:59:17             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:59:17             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 / tcp src spec 8010 dst mask 65520 / end actions drop / end
26/03/2021 10:59:17             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #1 created
26/03/2021 10:59:17             dut.10.240.183.133: flow list 0
26/03/2021 10:59:17             dut.10.240.183.133: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => DROP
1	0	0	i--	ETH IPV4 TCP => DROP
26/03/2021 10:59:19             dut.10.240.183.133: 
26/03/2021 10:59:19             dut.10.240.183.133: stop
26/03/2021 10:59:19             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 2             RX-total: 2
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 2             RX-total: 2
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:59:19             dut.10.240.183.133: start
26/03/2021 10:59:19             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:59:19             dut.10.240.183.133: flow flush 0
26/03/2021 10:59:19             dut.10.240.183.133: 
26/03/2021 10:59:19             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src spec 192.168.0.1 src mask 255.255.255.0 dst spec 192.168.0.2 dst mask 0.0.0.0 / end actions drop / end
26/03/2021 10:59:20             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #0 created
26/03/2021 10:59:20             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 / tcp src spec 8010 src mask 65520 dst spec 8017 dst mask 0 / end actions drop / end
26/03/2021 10:59:20             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #1 created
26/03/2021 10:59:20             dut.10.240.183.133: flow create 0 ingress pattern eth src spec 00:11:22:33:44:55 src mask ff:ff:ff:ff:ff:00 dst spec 00:11:22:33:44:55 dst mask 00:00:00:00:00:00 / ipv4 / tcp / end actions drop / end
26/03/2021 10:59:20             dut.10.240.183.133: 
ice_flow_create(): Succeeded to create (4) flow
Flow rule #2 created
26/03/2021 10:59:20             dut.10.240.183.133: flow list 0
26/03/2021 10:59:20             dut.10.240.183.133: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => DROP
1	0	0	i--	ETH IPV4 TCP => DROP
2	0	0	i--	ETH IPV4 TCP => DROP
26/03/2021 10:59:22             dut.10.240.183.133: 
26/03/2021 10:59:22             dut.10.240.183.133: stop
26/03/2021 10:59:22             dut.10.240.183.133: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 3             RX-total: 3
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 3             RX-total: 3
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 10:59:22             dut.10.240.183.133: start
26/03/2021 10:59:22             dut.10.240.183.133: 
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 1) -> TX P=1/Q=0 (socket 1) 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
26/03/2021 10:59:22            CVLDCFACLFilterTest: Test Case test_negative Result PASSED:
26/03/2021 10:59:22             dut.10.240.183.133: flow flush 0
26/03/2021 10:59:22             dut.10.240.183.133: 
26/03/2021 10:59:22             dut.10.240.183.133: clear port stats all
26/03/2021 10:59:22             dut.10.240.183.133: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
26/03/2021 10:59:22             dut.10.240.183.133: quit
26/03/2021 10:59:24             dut.10.240.183.133: 
Telling cores to stop...
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.

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...
26/03/2021 10:59:24             dut.10.240.183.133: kill_all: called by dut and prefix list has value.
26/03/2021 10:59:24             dut.10.240.183.133: ethtool -n ens801f0
26/03/2021 10:59:24             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:59:24             dut.10.240.183.133: ethtool -n ens801f1
26/03/2021 10:59:24             dut.10.240.183.133: 72 RX rings available
Total 0 rules

26/03/2021 10:59:24                            dts: 
TEST SUITE ENDED: CVLDCFACLFilterTest

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dts] [PATCH V1 2/2] tests/cvl_limit_value_test: remove replace pkg code
  2021-03-30  8:44 ` [dts] [PATCH V1 2/2] tests/cvl_limit_value_test: " Zhimin Huang
@ 2021-03-30 10:07   ` Huang, ZhiminX
  0 siblings, 0 replies; 6+ messages in thread
From: Huang, ZhiminX @ 2021-03-30 10:07 UTC (permalink / raw)
  To: dts

[-- Attachment #1: Type: text/plain, Size: 332 bytes --]

> -----Original Message-----
> From: Huang, ZhiminX <zhiminx.huang@intel.com>
> Sent: Tuesday, March 30, 2021 4:45 PM
> To: dts@dpdk.org
> Cc: Huang, ZhiminX <zhiminx.huang@intel.com>
> Subject: [dts] [PATCH V1 2/2] tests/cvl_limit_value_test: remove replace
> pkg code
> 
Tested-by: Huang Zhimin <zhiminx.huang@intel.com>

[-- Attachment #2: TestCvlLimitValue.log --]
[-- Type: application/octet-stream, Size: 30156 bytes --]


Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Flow rule #0 created
Read CLI commands from /tmp/add_delete_rules_2vfs
26/03/2021 12:05:12             dut.10.240.183.133: set fwd rxonly
26/03/2021 12:05:12             dut.10.240.183.133: 

Set rxonly packet forwarding mode
26/03/2021 12:05:12             dut.10.240.183.133: set verbose 1
26/03/2021 12:05:12             dut.10.240.183.133: 

Change verbose level from 0 to 1
26/03/2021 12:05:12             dut.10.240.183.133: show port info all
26/03/2021 12:05:12             dut.10.240.183.133: 


********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:81:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: 100 Gbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
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
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: 16
Max possible RX queues: 256
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: 16
Max possible TX queues: 256
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

********************* Infos for port 1  *********************
MAC address: 00:11:22:33:44:66
Device name: 0000:81:01.1
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 1
memory allocation on the socket: 1
Link status: up
Link speed: 100 Gbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
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
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: 16
Max possible RX queues: 256
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: 16
Max possible TX queues: 256
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
26/03/2021 12:05:12             dut.10.240.183.133: start
26/03/2021 12:05:12             dut.10.240.183.133: 

rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 1 (socket 0) forwards packets on 32 streams:
  RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=1/Q=4 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=1/Q=5 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=1/Q=6 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=1/Q=7 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=1/Q=8 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=1/Q=9 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=1/Q=10 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=1/Q=11 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=1/Q=12 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=1/Q=13 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=1/Q=14 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=1/Q=15 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=2
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      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 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
26/03/2021 12:05:12             dut.10.240.183.133: flow list 0
26/03/2021 12:05:12             dut.10.240.183.133: 
26/03/2021 12:05:12             dut.10.240.183.133: flow list 1
26/03/2021 12:05:12             dut.10.240.183.133: 
26/03/2021 12:05:12             dut.10.240.183.133: flow create 0 ingress pattern eth / ipv4 src is 192.168.56.0 dst is 192.1.0.0 tos is 4 / tcp src is 22 dst is 23 / end actions queue index 5 / end
26/03/2021 12:05:12             dut.10.240.183.133: 

Flow rule #0 created
26/03/2021 12:05:12             dut.10.240.183.133: flow create 1 ingress pattern eth / ipv4 src is 192.168.56.0 dst is 192.1.0.0 tos is 4 / tcp src is 22 dst is 23 / end actions queue index 5 / end
26/03/2021 12:05:12             dut.10.240.183.133: 

Flow rule #0 created
26/03/2021 12:05:14             dut.10.240.183.133: port 0/queue 5: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:11:22:33:44:55 - type=0x0800 - length=134 - nb_segs=1 - RSS hash=0x4c003712 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x5
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 12:05:14             dut.10.240.183.133: stop
26/03/2021 12:05:14             dut.10.240.183.133: 

Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 1/Queue= 5 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
26/03/2021 12:05:14             dut.10.240.183.133: start
26/03/2021 12:05:14             dut.10.240.183.133: 

rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 1 (socket 0) forwards packets on 32 streams:
  RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=1/Q=4 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=1/Q=5 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=1/Q=6 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=1/Q=7 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=1/Q=8 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=1/Q=9 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=1/Q=10 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=1/Q=11 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=1/Q=12 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=1/Q=13 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=1/Q=14 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=1/Q=15 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=2
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      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 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
26/03/2021 12:05:17             dut.10.240.183.133: port 1/queue 5: received 1 packets
  src=8C:EC:4B:C7:C7:7B - dst=00:11:22:33:44:66 - type=0x0800 - length=134 - nb_segs=1 - RSS hash=0x56ab90e1 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_TCP  - l2_len=14 - l3_len=20 - l4_len=20 - Receive queue=0x5
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

26/03/2021 12:05:17             dut.10.240.183.133: stop
26/03/2021 12:05:17             dut.10.240.183.133: 

Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 1/Queue= 5 -> TX Port= 0/Queue= 5 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  ---------------------- 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.
26/03/2021 12:05:17             dut.10.240.183.133: start
26/03/2021 12:05:17             dut.10.240.183.133: 

rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 1 (socket 0) forwards packets on 32 streams:
  RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=1/Q=4 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=1/Q=5 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=1/Q=6 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=1/Q=7 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=1/Q=8 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=1/Q=9 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=1/Q=10 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=1/Q=11 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=1/Q=12 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=1/Q=13 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=1/Q=14 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=1/Q=15 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=2
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      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 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
26/03/2021 12:05:17              TestCvlLimitValue: Test Case test_stress_add_delete_rules_2vf Result PASSED:
26/03/2021 12:05:17             dut.10.240.183.133: kill_all: called by dut and has no prefix list.
26/03/2021 12:05:20             dut.10.240.183.133: Killed
[PEXPECT]# 
26/03/2021 12:05:20             dut.10.240.183.133: quit
26/03/2021 12:05:20             dut.10.240.183.133: 
Command '' not found, did you mean:

  command 'qgit' from deb qgit (2.9-1build1)
  command 'quiz' from deb bsdgames (2.17-28build1)
  command 'quilt' from deb quilt (0.65-3)
  command 'luit' from deb x11-utils (7.7+5)

Try: apt install <deb name>

26/03/2021 12:05:28                            dts: 
TEST SUITE ENDED: TestCvlLimitValue

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dts] [PATCH V1 0/2] remove replace pkg code
  2021-03-30  8:44 [dts] [PATCH V1 0/2] remove replace pkg code Zhimin Huang
  2021-03-30  8:44 ` [dts] [PATCH V1 1/2] tests/cvl_dcf_acl_filter: " Zhimin Huang
  2021-03-30  8:44 ` [dts] [PATCH V1 2/2] tests/cvl_limit_value_test: " Zhimin Huang
@ 2021-04-07  1:05 ` Tu, Lijuan
  2 siblings, 0 replies; 6+ messages in thread
From: Tu, Lijuan @ 2021-04-07  1:05 UTC (permalink / raw)
  To: Huang, ZhiminX, dts; +Cc: Huang, ZhiminX

> *.These suites support os default, comms, wireless pkg after tested, so remove
> replace pkg code in script.
> 
> Zhimin Huang (2):
>   tests/cvl_dcf_acl_filter:remove replace pkg code
>   tests/cvl_limit_value_test:remove replace pkg code

Applied

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-04-07  1:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-30  8:44 [dts] [PATCH V1 0/2] remove replace pkg code Zhimin Huang
2021-03-30  8:44 ` [dts] [PATCH V1 1/2] tests/cvl_dcf_acl_filter: " Zhimin Huang
2021-03-30 10:04   ` Huang, ZhiminX
2021-03-30  8:44 ` [dts] [PATCH V1 2/2] tests/cvl_limit_value_test: " Zhimin Huang
2021-03-30 10:07   ` Huang, ZhiminX
2021-04-07  1:05 ` [dts] [PATCH V1 0/2] " 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).