test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1] tests/cvl_dcf_switch_filter: modify the mask value in testsuite
@ 2021-08-06  2:00 Peng Yuan
  2021-08-23  5:28 ` Sun, QinX
  2021-08-27  8:36 ` Tu, Lijuan
  0 siblings, 2 replies; 3+ messages in thread
From: Peng Yuan @ 2021-08-06  2:00 UTC (permalink / raw)
  To: dts; +Cc: Peng Yuan

the ipv4 pattern, when the action is drop, and the mask is not 255.255.255.255,
the rule created is as a acl rule. only the acl rule table is full, the rule is created as switch rule.
when the mask is 255.255.255.255, the rule is created as switch rule.
so modify all the mask to 255.255.255.255 when the action is drop.

Signed-off-by: Peng Yuan <yuan.peng@intel.com>

diff --git a/tests/TestSuite_cvl_dcf_switch_filter.py b/tests/TestSuite_cvl_dcf_switch_filter.py
index dd7e0109..437a2622 100644
--- a/tests/TestSuite_cvl_dcf_switch_filter.py
+++ b/tests/TestSuite_cvl_dcf_switch_filter.py
@@ -853,8 +853,8 @@ tv_mac_ipv4_drop = {
 
 tv_mac_ipv4_mask_drop = {
     "name": "tv_mac_ipv4_drop",
-    "rte_flow_pattern": "flow create 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 240.0.0.0 / end actions drop / end",
-    "matched": {"scapy_str": ['Ether(dst="00:11:22:33:44:55")/IP(dst="239.0.0.0")/TCP()/Raw("x"*80)'],
+    "rte_flow_pattern": "flow create 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 255.255.255.255 / end actions drop / end",
+    "matched": {"scapy_str": ['Ether(dst="00:11:22:33:44:55")/IP(dst="224.0.0.0")/TCP()/Raw("x"*80)'],
                "check_func": {"func": rfc.check_vf_rx_packets_number,
                              "param": {"expect_port": 1, "expect_queues": "null"}},
                "expect_results": {"expect_pkts": 0}},
@@ -945,7 +945,7 @@ tv_mac_esp_drop = {
 tv_mac_blend_pkg_drop = {
     "name": "tv_mac_blend_pkg_drop",
     "rte_flow_pattern": ["flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.1 / end actions drop / end",
-                         "flow create 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 240.0.0.0 / end actions drop / end",
+                         "flow create 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 255.255.255.255 / end actions drop / end",
                          "flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.3 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions drop / end",
                          "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions drop / end",
                          "flow create 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions drop / end",
@@ -953,7 +953,7 @@ tv_mac_blend_pkg_drop = {
                          "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.4 / l2tpv3oip session_id is 1 / end actions drop / end",
                          "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.5 / esp spi is 1 / end actions drop / end"],
     "matched": {"scapy_str": ['Ether(dst="00:11:22:33:44:55")/IP(src="192.168.0.1")/Raw("x"*80)',
-                              'Ether(dst="00:11:22:33:44:55")/IP(dst="239.0.0.0")/TCP()/Raw("x"*80)',
+                              'Ether(dst="00:11:22:33:44:55")/IP(dst="224.0.0.0")/TCP()/Raw("x"*80)',
                               'Ether(dst="00:11:22:33:44:55")/IP(dst="192.168.0.3")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
                               'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(b"\\x00\\x21")/IP()/Raw("X" * 80)',
                               'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=8805)/PFCP(S=0)',
-- 
2.17.1


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

* Re: [dts] [PATCH V1] tests/cvl_dcf_switch_filter: modify the mask value in testsuite
  2021-08-06  2:00 [dts] [PATCH V1] tests/cvl_dcf_switch_filter: modify the mask value in testsuite Peng Yuan
@ 2021-08-23  5:28 ` Sun, QinX
  2021-08-27  8:36 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Sun, QinX @ 2021-08-23  5:28 UTC (permalink / raw)
  To: Peng, Yuan, dts; +Cc: Peng, Yuan

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

> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Peng Yuan
> Sent: Friday, August 6, 2021 10:00 AM
> To: dts@dpdk.org
> Cc: Peng, Yuan <yuan.peng@intel.com>
> Subject: [dts] [PATCH V1] tests/cvl_dcf_switch_filter: modify the mask value in testsuite

Tested-by: Qin Sun <qinx.sun@intel.com>

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

20/08/2021 17:15:57                            dts: 
TEST SUITE : CVLDCFSwitchFilterTest
20/08/2021 17:15:57                            dts: NIC :        columbiaville_100g
20/08/2021 17:15:57             dut.10.240.183.186: 
20/08/2021 17:15:57                         tester: 
20/08/2021 17:16:03             dut.10.240.183.186: modprobe vfio-pci
20/08/2021 17:16:03             dut.10.240.183.186: 
20/08/2021 17:16:50         CVLDCFSwitchFilterTest: Test Case test_mac_drop_action Begin
20/08/2021 17:16:50             dut.10.240.183.186:  
20/08/2021 17:16:50                         tester: 
20/08/2021 17:16:50             dut.10.240.183.186: rmmod ice
20/08/2021 17:16:54             dut.10.240.183.186: 
20/08/2021 17:16:54             dut.10.240.183.186: modprobe ice
20/08/2021 17:16:56             dut.10.240.183.186: 
20/08/2021 17:16:56             dut.10.240.183.186: ethtool -i ens785
20/08/2021 17:16:56             dut.10.240.183.186: driver: ice
version: 1.7.0_rc45_3_g789126ca
firmware-version: 3.10 0x80008a41 1.3025.0
expansion-rom-version: 
bus-info: 0000:05:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: yes
20/08/2021 17:16:56             dut.10.240.183.186: ethtool --set-priv-flags ens785 vf-vlan-prune-disable on
20/08/2021 17:16:56             dut.10.240.183.186: 
20/08/2021 17:16:58             dut.10.240.183.186: cat /sys/bus/pci/devices/0000\:05\:01.0/vendor
20/08/2021 17:16:58             dut.10.240.183.186: 0x8086
20/08/2021 17:16:58             dut.10.240.183.186: cat /sys/bus/pci/devices/0000\:05\:01.0/device
20/08/2021 17:16:58             dut.10.240.183.186: 0x1889
20/08/2021 17:16:58             dut.10.240.183.186: cat /sys/bus/pci/devices/0000\:05\:01.1/vendor
20/08/2021 17:16:58             dut.10.240.183.186: 0x8086
20/08/2021 17:16:58             dut.10.240.183.186: cat /sys/bus/pci/devices/0000\:05\:01.1/device
20/08/2021 17:16:59             dut.10.240.183.186: 0x1889
20/08/2021 17:16:59             dut.10.240.183.186: cat /sys/bus/pci/devices/0000\:05\:01.2/vendor
20/08/2021 17:16:59             dut.10.240.183.186: 0x8086
20/08/2021 17:16:59             dut.10.240.183.186: cat /sys/bus/pci/devices/0000\:05\:01.2/device
20/08/2021 17:16:59             dut.10.240.183.186: 0x1889
20/08/2021 17:16:59             dut.10.240.183.186: cat /sys/bus/pci/devices/0000\:05\:01.3/vendor
20/08/2021 17:16:59             dut.10.240.183.186: 0x8086
20/08/2021 17:16:59             dut.10.240.183.186: cat /sys/bus/pci/devices/0000\:05\:01.3/device
20/08/2021 17:16:59             dut.10.240.183.186: 0x1889
20/08/2021 17:16:59             dut.10.240.183.186: ip link set ens785 vf 0 trust on
20/08/2021 17:17:00             dut.10.240.183.186: 
20/08/2021 17:17:10             dut.10.240.183.186: ip link set ens785 vf 1 mac "00:11:22:33:44:55"
20/08/2021 17:17:10             dut.10.240.183.186: 
20/08/2021 17:17:10             dut.10.240.183.186: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4 -n 4 -a 0000:05:01.0,cap=dcf -a 0000:05:01.1  --file-prefix=dpdk_119855_20210820171537   -- -i
20/08/2021 17:17:22             dut.10.240.183.186: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_119855_20210820171537/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:05:01.0 (socket 0)
EAL: Releasing PCI mapped resource for 0000:05:01.0
EAL: Calling pci_unmap_resource for 0000:05:01.0 at 0x2200000000
EAL: Calling pci_unmap_resource for 0000:05:01.0 at 0x2200020000
EAL: Using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice_dcf (8086:1889) device: 0000:05:01.0 (socket 0)
ice_load_pkg_type(): Active package is: 1.3.31.0, ICE COMMS Package (double VLAN mode)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:05:01.1 (socket 0)
Interactive-mode selected
Failed to set MTU to 1500 for port 0
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
ice_set_rx_function(): Using AVX2 Vector Rx (port 0).
ice_dcf_init_rss(): RSS is enabled by PF by default
ice_dcf_configure_queues(): request RXDID == 16 in Queue[0]

Port 0: link state change event

Port 0: link state change event
Port 0: 96:48:BD:15:C8:60
Configuring Port 1 (socket 0)
iavf_configure_queues(): request RXDID[22] in Queue[0]

Port 1: link state change event

Port 1: link state change event
Port 1: 00:11:22:33:44:55
Checking link statuses...
Done
20/08/2021 17:17:22             dut.10.240.183.186: set portlist 1
20/08/2021 17:17:23             dut.10.240.183.186: 
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.

20/08/2021 17:17:23             dut.10.240.183.186: set fwd rxonly
20/08/2021 17:17:23             dut.10.240.183.186: 
Set rxonly packet forwarding mode
20/08/2021 17:17:23             dut.10.240.183.186: set verbose 1
20/08/2021 17:17:23             dut.10.240.183.186: 
Change verbose level from 0 to 1
20/08/2021 17:17:23             dut.10.240.183.186: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.1 / end actions drop / end
20/08/2021 17:17:23             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:17:23             dut.10.240.183.186: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.1 / end actions drop / end
20/08/2021 17:17:23             dut.10.240.183.186: 
Flow rule #0 created
20/08/2021 17:17:23             dut.10.240.183.186: flow list 0
20/08/2021 17:17:23             dut.10.240.183.186: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => DROP
20/08/2021 17:17:23             dut.10.240.183.186: start
20/08/2021 17:17:23             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:17:28             dut.10.240.183.186: stop
20/08/2021 17:17:29             dut.10.240.183.186: 
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.
20/08/2021 17:17:29             dut.10.240.183.186: start
20/08/2021 17:17:29             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:17:34             dut.10.240.183.186: stop
20/08/2021 17:17:34             dut.10.240.183.186: 
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.
20/08/2021 17:17:34             dut.10.240.183.186: flow destroy 0 rule 0
20/08/2021 17:17:34             dut.10.240.183.186: 
Flow rule #0 destroyed
20/08/2021 17:17:34             dut.10.240.183.186: flow list 0
20/08/2021 17:17:34             dut.10.240.183.186: 
20/08/2021 17:17:34             dut.10.240.183.186: start
20/08/2021 17:17:34             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:17:39             dut.10.240.183.186: stop
20/08/2021 17:17:39             dut.10.240.183.186: 
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.
20/08/2021 17:17:39             dut.10.240.183.186: flow flush 0
20/08/2021 17:17:39             dut.10.240.183.186: 
20/08/2021 17:17:39             dut.10.240.183.186: clear port stats all
20/08/2021 17:17:39             dut.10.240.183.186: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
20/08/2021 17:17:39             dut.10.240.183.186: flow validate 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 255.255.255.255 / end actions drop / end
20/08/2021 17:17:39             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:17:39             dut.10.240.183.186: flow create 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 255.255.255.255 / end actions drop / end
20/08/2021 17:17:40             dut.10.240.183.186: 
Flow rule #0 created
20/08/2021 17:17:40             dut.10.240.183.186: flow list 0
20/08/2021 17:17:40             dut.10.240.183.186: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => DROP
20/08/2021 17:17:40             dut.10.240.183.186: start
20/08/2021 17:17:40             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:17:45             dut.10.240.183.186: stop
20/08/2021 17:17:45             dut.10.240.183.186: 
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.
20/08/2021 17:17:45             dut.10.240.183.186: start
20/08/2021 17:17:45             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:17:50             dut.10.240.183.186: stop
20/08/2021 17:17:50             dut.10.240.183.186: 
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.
20/08/2021 17:17:50             dut.10.240.183.186: flow destroy 0 rule 0
20/08/2021 17:17:50             dut.10.240.183.186: 
Flow rule #0 destroyed
20/08/2021 17:17:50             dut.10.240.183.186: flow list 0
20/08/2021 17:17:50             dut.10.240.183.186: 
20/08/2021 17:17:50             dut.10.240.183.186: start
20/08/2021 17:17:51             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:17:56             dut.10.240.183.186: stop
20/08/2021 17:17:56             dut.10.240.183.186: 
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.
20/08/2021 17:17:56             dut.10.240.183.186: flow flush 0
20/08/2021 17:17:56             dut.10.240.183.186: 
20/08/2021 17:17:56             dut.10.240.183.186: clear port stats all
20/08/2021 17:17:56             dut.10.240.183.186: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
20/08/2021 17:17:56             dut.10.240.183.186: flow validate 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions drop / end
20/08/2021 17:17:56             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:17:56             dut.10.240.183.186: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions drop / end
20/08/2021 17:17:56             dut.10.240.183.186: 
Flow rule #0 created
20/08/2021 17:17:56             dut.10.240.183.186: flow list 0
20/08/2021 17:17:56             dut.10.240.183.186: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 NVGRE ETH IPV4 => DROP
20/08/2021 17:17:56             dut.10.240.183.186: start
20/08/2021 17:17:56             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:18:01             dut.10.240.183.186: stop
20/08/2021 17:18:02             dut.10.240.183.186: 
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.
20/08/2021 17:18:02             dut.10.240.183.186: start
20/08/2021 17:18:02             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:18:07             dut.10.240.183.186: stop
20/08/2021 17:18:07             dut.10.240.183.186: 
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.
20/08/2021 17:18:07             dut.10.240.183.186: flow destroy 0 rule 0
20/08/2021 17:18:07             dut.10.240.183.186: 
Flow rule #0 destroyed
20/08/2021 17:18:07             dut.10.240.183.186: flow list 0
20/08/2021 17:18:07             dut.10.240.183.186: 
20/08/2021 17:18:07             dut.10.240.183.186: start
20/08/2021 17:18:07             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:18:12             dut.10.240.183.186: stop
20/08/2021 17:18:12             dut.10.240.183.186: 
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.
20/08/2021 17:18:12             dut.10.240.183.186: flow flush 0
20/08/2021 17:18:12             dut.10.240.183.186: 
20/08/2021 17:18:12             dut.10.240.183.186: clear port stats all
20/08/2021 17:18:12             dut.10.240.183.186: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
20/08/2021 17:18:12             dut.10.240.183.186: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions drop / end
20/08/2021 17:18:12             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:18:12             dut.10.240.183.186: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions drop / end
20/08/2021 17:18:13             dut.10.240.183.186: 
Flow rule #0 created
20/08/2021 17:18:13             dut.10.240.183.186: flow list 0
20/08/2021 17:18:13             dut.10.240.183.186: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH VLAN PPPOES PPPOE_PROTO_ID => DROP
20/08/2021 17:18:13             dut.10.240.183.186: start
20/08/2021 17:18:13             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:18:18             dut.10.240.183.186: stop
20/08/2021 17:18:18             dut.10.240.183.186: 
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.
20/08/2021 17:18:18             dut.10.240.183.186: start
20/08/2021 17:18:18             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:18:23             dut.10.240.183.186: stop
20/08/2021 17:18:23             dut.10.240.183.186: 
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.
20/08/2021 17:18:23             dut.10.240.183.186: flow destroy 0 rule 0
20/08/2021 17:18:23             dut.10.240.183.186: 
Flow rule #0 destroyed
20/08/2021 17:18:23             dut.10.240.183.186: flow list 0
20/08/2021 17:18:23             dut.10.240.183.186: 
20/08/2021 17:18:23             dut.10.240.183.186: start
20/08/2021 17:18:23             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:18:29             dut.10.240.183.186: stop
20/08/2021 17:18:29             dut.10.240.183.186: 
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.
20/08/2021 17:18:29             dut.10.240.183.186: flow flush 0
20/08/2021 17:18:29             dut.10.240.183.186: 
20/08/2021 17:18:29             dut.10.240.183.186: clear port stats all
20/08/2021 17:18:29             dut.10.240.183.186: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
20/08/2021 17:18:29             dut.10.240.183.186: flow validate 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions drop / end
20/08/2021 17:18:29             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:18:29             dut.10.240.183.186: flow create 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions drop / end
20/08/2021 17:18:29             dut.10.240.183.186: 
Flow rule #0 created
20/08/2021 17:18:29             dut.10.240.183.186: flow list 0
20/08/2021 17:18:29             dut.10.240.183.186: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP PFCP => DROP
20/08/2021 17:18:29             dut.10.240.183.186: start
20/08/2021 17:18:29             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:18:34             dut.10.240.183.186: stop
20/08/2021 17:18:34             dut.10.240.183.186: 
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.
20/08/2021 17:18:34             dut.10.240.183.186: start
20/08/2021 17:18:34             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:18:40             dut.10.240.183.186: stop
20/08/2021 17:18:40             dut.10.240.183.186: 
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.
20/08/2021 17:18:40             dut.10.240.183.186: flow destroy 0 rule 0
20/08/2021 17:18:40             dut.10.240.183.186: 
Flow rule #0 destroyed
20/08/2021 17:18:40             dut.10.240.183.186: flow list 0
20/08/2021 17:18:40             dut.10.240.183.186: 
20/08/2021 17:18:40             dut.10.240.183.186: start
20/08/2021 17:18:40             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:18:45             dut.10.240.183.186: stop
20/08/2021 17:18:45             dut.10.240.183.186: 
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.
20/08/2021 17:18:45             dut.10.240.183.186: flow flush 0
20/08/2021 17:18:45             dut.10.240.183.186: 
20/08/2021 17:18:45             dut.10.240.183.186: clear port stats all
20/08/2021 17:18:45             dut.10.240.183.186: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
20/08/2021 17:18:45             dut.10.240.183.186: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / end actions drop / end
20/08/2021 17:18:45             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:18:45             dut.10.240.183.186: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / end actions drop / end
20/08/2021 17:18:46             dut.10.240.183.186: 
Flow rule #0 created
20/08/2021 17:18:46             dut.10.240.183.186: flow list 0
20/08/2021 17:18:46             dut.10.240.183.186: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH VLAN => DROP
20/08/2021 17:18:46             dut.10.240.183.186: start
20/08/2021 17:18:46             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:18:51             dut.10.240.183.186: stop
20/08/2021 17:18:51             dut.10.240.183.186: 
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.
20/08/2021 17:18:51             dut.10.240.183.186: start
20/08/2021 17:18:51             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:18:56             dut.10.240.183.186: stop
20/08/2021 17:18:56             dut.10.240.183.186: 
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.
20/08/2021 17:18:56             dut.10.240.183.186: flow destroy 0 rule 0
20/08/2021 17:18:56             dut.10.240.183.186: 
Flow rule #0 destroyed
20/08/2021 17:18:56             dut.10.240.183.186: flow list 0
20/08/2021 17:18:56             dut.10.240.183.186: 
20/08/2021 17:18:56             dut.10.240.183.186: start
20/08/2021 17:18:56             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:19:02             dut.10.240.183.186: stop
20/08/2021 17:19:02             dut.10.240.183.186: 
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.
20/08/2021 17:19:02             dut.10.240.183.186: flow flush 0
20/08/2021 17:19:02             dut.10.240.183.186: 
20/08/2021 17:19:02             dut.10.240.183.186: clear port stats all
20/08/2021 17:19:02             dut.10.240.183.186: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
20/08/2021 17:19:02             dut.10.240.183.186: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / l2tpv3oip session_id is 1 / end actions drop / end
20/08/2021 17:19:02             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:19:02             dut.10.240.183.186: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / l2tpv3oip session_id is 1 / end actions drop / end
20/08/2021 17:19:02             dut.10.240.183.186: 
Flow rule #0 created
20/08/2021 17:19:02             dut.10.240.183.186: flow list 0
20/08/2021 17:19:02             dut.10.240.183.186: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 L2TPV3OIP => DROP
20/08/2021 17:19:02             dut.10.240.183.186: start
20/08/2021 17:19:02             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:19:07             dut.10.240.183.186: stop
20/08/2021 17:19:07             dut.10.240.183.186: 
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.
20/08/2021 17:19:07             dut.10.240.183.186: start
20/08/2021 17:19:07             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:19:13             dut.10.240.183.186: stop
20/08/2021 17:19:13             dut.10.240.183.186: 
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.
20/08/2021 17:19:13             dut.10.240.183.186: flow destroy 0 rule 0
20/08/2021 17:19:13             dut.10.240.183.186: 
Flow rule #0 destroyed
20/08/2021 17:19:13             dut.10.240.183.186: flow list 0
20/08/2021 17:19:13             dut.10.240.183.186: 
20/08/2021 17:19:13             dut.10.240.183.186: start
20/08/2021 17:19:13             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:19:18             dut.10.240.183.186: stop
20/08/2021 17:19:18             dut.10.240.183.186: 
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.
20/08/2021 17:19:18             dut.10.240.183.186: flow flush 0
20/08/2021 17:19:18             dut.10.240.183.186: 
20/08/2021 17:19:18             dut.10.240.183.186: clear port stats all
20/08/2021 17:19:18             dut.10.240.183.186: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
20/08/2021 17:19:18             dut.10.240.183.186: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / esp spi is 1 / end actions drop / end
20/08/2021 17:19:18             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:19:18             dut.10.240.183.186: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / esp spi is 1 / end actions drop / end
20/08/2021 17:19:18             dut.10.240.183.186: 
Flow rule #0 created
20/08/2021 17:19:18             dut.10.240.183.186: flow list 0
20/08/2021 17:19:19             dut.10.240.183.186: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 ESP => DROP
20/08/2021 17:19:19             dut.10.240.183.186: start
20/08/2021 17:19:19             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:19:24             dut.10.240.183.186: stop
20/08/2021 17:19:24             dut.10.240.183.186: 
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.
20/08/2021 17:19:24             dut.10.240.183.186: start
20/08/2021 17:19:24             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:19:29             dut.10.240.183.186: stop
20/08/2021 17:19:29             dut.10.240.183.186: 
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.
20/08/2021 17:19:29             dut.10.240.183.186: flow destroy 0 rule 0
20/08/2021 17:19:29             dut.10.240.183.186: 
Flow rule #0 destroyed
20/08/2021 17:19:29             dut.10.240.183.186: flow list 0
20/08/2021 17:19:29             dut.10.240.183.186: 
20/08/2021 17:19:29             dut.10.240.183.186: start
20/08/2021 17:19:29             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:19:34             dut.10.240.183.186: stop
20/08/2021 17:19:34             dut.10.240.183.186: 
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.
20/08/2021 17:19:34             dut.10.240.183.186: flow flush 0
20/08/2021 17:19:35             dut.10.240.183.186: 
20/08/2021 17:19:35             dut.10.240.183.186: clear port stats all
20/08/2021 17:19:35             dut.10.240.183.186: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
20/08/2021 17:19:35             dut.10.240.183.186: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.1 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:19:35             dut.10.240.183.186: flow validate 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 255.255.255.255 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:19:35             dut.10.240.183.186: flow validate 0 ingress pattern eth / ipv4 dst is 192.168.0.3 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:19:35             dut.10.240.183.186: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:19:35             dut.10.240.183.186: flow validate 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:19:35             dut.10.240.183.186: flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:19:35             dut.10.240.183.186: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.4 / l2tpv3oip session_id is 1 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:19:35             dut.10.240.183.186: flow validate 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.5 / esp spi is 1 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule validated
20/08/2021 17:19:35             dut.10.240.183.186: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.1 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule #0 created
20/08/2021 17:19:35             dut.10.240.183.186: flow create 0 ingress pattern eth / ipv4 dst spec 224.0.0.0 dst mask 255.255.255.255 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule #1 created
20/08/2021 17:19:35             dut.10.240.183.186: flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.3 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule #2 created
20/08/2021 17:19:35             dut.10.240.183.186: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule #3 created
20/08/2021 17:19:35             dut.10.240.183.186: flow create 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule #4 created
20/08/2021 17:19:35             dut.10.240.183.186: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / end actions drop / end
20/08/2021 17:19:35             dut.10.240.183.186: 
Flow rule #5 created
20/08/2021 17:19:35             dut.10.240.183.186: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.4 / l2tpv3oip session_id is 1 / end actions drop / end
20/08/2021 17:19:36             dut.10.240.183.186: 
Flow rule #6 created
20/08/2021 17:19:36             dut.10.240.183.186: flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.5 / esp spi is 1 / end actions drop / end
20/08/2021 17:19:36             dut.10.240.183.186: 
Flow rule #7 created
20/08/2021 17:19:36             dut.10.240.183.186: flow list 0
20/08/2021 17:19:36             dut.10.240.183.186: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => DROP
1	0	0	i--	ETH IPV4 => DROP
2	0	0	i--	ETH IPV4 NVGRE ETH IPV4 => DROP
3	0	0	i--	ETH VLAN PPPOES PPPOE_PROTO_ID => DROP
4	0	0	i--	ETH IPV4 UDP PFCP => DROP
5	0	0	i--	ETH VLAN => DROP
6	0	0	i--	ETH IPV4 L2TPV3OIP => DROP
7	0	0	i--	ETH IPV4 ESP => DROP
20/08/2021 17:19:36             dut.10.240.183.186: start
20/08/2021 17:19:36             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:19:41             dut.10.240.183.186: stop
20/08/2021 17:19:41             dut.10.240.183.186: 
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.
20/08/2021 17:19:41             dut.10.240.183.186: start
20/08/2021 17:19:41             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:19:46             dut.10.240.183.186: stop
20/08/2021 17:19:46             dut.10.240.183.186: 
Telling cores to ...
Waiting for lcores to finish...

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

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

Done.
20/08/2021 17:19:46             dut.10.240.183.186: flow destroy 0 rule 0
20/08/2021 17:19:46             dut.10.240.183.186: 
Flow rule #0 destroyed
20/08/2021 17:19:46             dut.10.240.183.186: flow destroy 0 rule 1
20/08/2021 17:19:46             dut.10.240.183.186: 
Flow rule #1 destroyed
20/08/2021 17:19:46             dut.10.240.183.186: flow destroy 0 rule 2
20/08/2021 17:19:46             dut.10.240.183.186: 
Flow rule #2 destroyed
20/08/2021 17:19:46             dut.10.240.183.186: flow destroy 0 rule 3
20/08/2021 17:19:47             dut.10.240.183.186: 
Flow rule #3 destroyed
20/08/2021 17:19:47             dut.10.240.183.186: flow destroy 0 rule 4
20/08/2021 17:19:47             dut.10.240.183.186: 
Flow rule #4 destroyed
20/08/2021 17:19:47             dut.10.240.183.186: flow destroy 0 rule 5
20/08/2021 17:19:47             dut.10.240.183.186: 
Flow rule #5 destroyed
20/08/2021 17:19:47             dut.10.240.183.186: flow destroy 0 rule 6
20/08/2021 17:19:47             dut.10.240.183.186: 
Flow rule #6 destroyed
20/08/2021 17:19:47             dut.10.240.183.186: flow destroy 0 rule 7
20/08/2021 17:19:47             dut.10.240.183.186: 
Flow rule #7 destroyed
20/08/2021 17:19:47             dut.10.240.183.186: flow list 0
20/08/2021 17:19:47             dut.10.240.183.186: 
20/08/2021 17:19:47             dut.10.240.183.186: start
20/08/2021 17:19:47             dut.10.240.183.186: 
rxonly packet forwarding - ports=1 - cores=1 - streams=1 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 1 streams:
  RX P=1/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
20/08/2021 17:19:52             dut.10.240.183.186: stop
20/08/2021 17:19:52             dut.10.240.183.186: 
Telling cores to ...
Waiting for lcores to finish...

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

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

Done.
20/08/2021 17:19:52             dut.10.240.183.186: flow flush 0
20/08/2021 17:19:52             dut.10.240.183.186: 
20/08/2021 17:19:52             dut.10.240.183.186: clear port stats all
20/08/2021 17:19:52             dut.10.240.183.186: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
20/08/2021 17:19:52         CVLDCFSwitchFilterTest: Test Case test_mac_drop_action Result PASSED:
20/08/2021 17:19:52             dut.10.240.183.186: flow flush 0
20/08/2021 17:19:52             dut.10.240.183.186: 
20/08/2021 17:19:52             dut.10.240.183.186: clear port stats all
20/08/2021 17:19:52             dut.10.240.183.186: 

  NIC statistics for port 0 cleared

  NIC statistics for port 1 cleared
20/08/2021 17:19:52             dut.10.240.183.186: quit
20/08/2021 17:19:54             dut.10.240.183.186: 

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...
20/08/2021 17:19:54             dut.10.240.183.186: kill_all: called by dut and prefix list has value.
20/08/2021 17:19:58                            dts: 
TEST SUITE ENDED: CVLDCFSwitchFilterTest

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

* Re: [dts] [PATCH V1] tests/cvl_dcf_switch_filter: modify the mask value in testsuite
  2021-08-06  2:00 [dts] [PATCH V1] tests/cvl_dcf_switch_filter: modify the mask value in testsuite Peng Yuan
  2021-08-23  5:28 ` Sun, QinX
@ 2021-08-27  8:36 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2021-08-27  8:36 UTC (permalink / raw)
  To: Peng, Yuan, dts; +Cc: Peng, Yuan

> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Peng Yuan
> Sent: 2021年8月6日 10:00
> To: dts@dpdk.org
> Cc: Peng, Yuan <yuan.peng@intel.com>
> Subject: [dts] [PATCH V1] tests/cvl_dcf_switch_filter: modify the mask value in
> testsuite
> 
> the ipv4 pattern, when the action is drop, and the mask is not 255.255.255.255,
> the rule created is as a acl rule. only the acl rule table is full, the rule is created
> as switch rule.
> when the mask is 255.255.255.255, the rule is created as switch rule.
> so modify all the mask to 255.255.255.255 when the action is drop.
> 
> Signed-off-by: Peng Yuan <yuan.peng@intel.com>

Applied, thanks

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

end of thread, other threads:[~2021-08-27  8:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-06  2:00 [dts] [PATCH V1] tests/cvl_dcf_switch_filter: modify the mask value in testsuite Peng Yuan
2021-08-23  5:28 ` Sun, QinX
2021-08-27  8:36 ` 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).