test suite reviews and discussions
 help / color / mirror / Atom feed
From: "Zhou, JunX W" <junx.w.zhou@intel.com>
To: "dts@dpdk.org" <dts@dpdk.org>
Subject: Re: [dts] [PATCH V1] add new fvl support cases of dual_vlan/generic_flow_api
Date: Fri, 4 Sep 2020 09:19:19 +0000	[thread overview]
Message-ID: <f851eb439ec34d228eaeec4aee50d435@intel.com> (raw)
In-Reply-To: <20200904085648.4211-1-junx.w.zhou@intel.com>

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

Tested-by: junx.w.zhou@intel.com

-----Original Message-----
From: Zhou, JunX W 
Sent: Friday, September 4, 2020 4:57 PM
To: dts@dpdk.org
Cc: Zhou, JunX W <junx.w.zhou@intel.com>
Subject: [dts][PATCH V1] add new fvl support cases of dual_vlan/generic_flow_api

From: Zhou jun <junx.w.zhou@intel.com>

add 5 new fvl support cases of dual_vlan/generic_flow_api

Signed-off-by: Zhou jun <junx.w.zhou@intel.com>
---
 conf/test_case_checklist.json       |  9 ---------
 conf/test_case_supportlist.json     |  6 ++++++
 tests/TestSuite_dual_vlan.py        |  2 +-
 tests/TestSuite_generic_flow_api.py | 32 ++++++++++++++++++++++----------
 4 files changed, 29 insertions(+), 20 deletions(-)

diff --git a/conf/test_case_checklist.json b/conf/test_case_checklist.json index c3663f0..74dade7 100644
--- a/conf/test_case_checklist.json
+++ b/conf/test_case_checklist.json
@@ -293,10 +293,7 @@
                 "ALL"
             ],
             "NIC": [
-                "fortville_eagle",
-                "fortville_spirit",
                 "fortville_spirit_single",
-                "fortville_25g",
                 "fortpark_TLV",
                 "fortpark_BASE-T",
                 "cavium_a063",
@@ -553,10 +550,7 @@
                 "ALL"
             ],
             "NIC": [
-                "fortville_eagle",
-                "fortville_spirit",
                 "fortville_spirit_single",
-                "fortville_25g",
                 "fortpark_TLV",
                 "fortpark_BASE-T",
                 "sagepond",
@@ -578,10 +572,7 @@
                 "ALL"
             ],
             "NIC": [
-                "fortville_eagle",
-                "fortville_spirit",
                 "fortville_spirit_single",
-                "fortville_25g",
                 "fortpark_TLV",
                 "fortpark_BASE-T",
                 "sagepond",
diff --git a/conf/test_case_supportlist.json b/conf/test_case_supportlist.json index 85da736..7232135 100644
--- a/conf/test_case_supportlist.json
+++ b/conf/test_case_supportlist.json
@@ -757,6 +757,9 @@
             "NIC": [
                 "bartonhills",
                 "powerville",
+                "fortville_eagle",
+                "fortville_25g",
+                "fortville_spirit",
                 "foxville"
             ],
             "Target": [
@@ -791,6 +794,9 @@
             ],
             "NIC": [
                 "twinville",
+                "fortville_eagle",
+                "fortville_25g",
+                "fortville_spirit",
                 "sagepond",
                 "sageville",
                 "foxville"
diff --git a/tests/TestSuite_dual_vlan.py b/tests/TestSuite_dual_vlan.py index 855769c..933ffb9 100644
--- a/tests/TestSuite_dual_vlan.py
+++ b/tests/TestSuite_dual_vlan.py
@@ -398,7 +398,7 @@ class TestDualVlan(TestCase):
         """
         Configure receive port out vlan TPID
         """
-        self.verify(self.nic not in ["columbiaville_25g", "columbiaville_100g", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g", "fortpark_TLV","fortpark_BASE-T" ,"hartwell", "carlsville"], "%s NIC not support tcpid " % self.nic)
+        self.verify(self.nic not in ["columbiaville_25g", 
+ "columbiaville_100g", "fortville_spirit_single", 
+ "fortpark_TLV","fortpark_BASE-T" ,"hartwell", "carlsville"], "%s NIC 
+ not support tcpid " % self.nic)
 
         self.mode_config(filter="on", strip="on", extend="on")
         # nic only support inner model, except fortville nic diff --git a/tests/TestSuite_generic_flow_api.py b/tests/TestSuite_generic_flow_api.py
index 7e95d4b..5f0f167 100644
--- a/tests/TestSuite_generic_flow_api.py
+++ b/tests/TestSuite_generic_flow_api.py
@@ -743,7 +743,7 @@ class TestGeneric_flow_api(TestCase):
         """
         only supported by igb
         """
-        self.verify(self.nic in ["bartonhills", "powerville", "foxville"], "%s nic not support 2-tuple filter" % self.nic)
+        self.verify(self.nic in ["bartonhills", "powerville", 
+ "foxville", "fortville_eagle", "fortville_25g", "fortville_spirit"], 
+ "%s nic not support 2-tuple filter" % self.nic)
 
         self.pmdout.start_testpmd("%s" % self.cores, "--disable-rss --rxq=%d --txq=%d" % (MAX_QUEUE+1, MAX_QUEUE+1))
         self.dut.send_expect("set fwd rxonly", "testpmd> ", 120) @@ -753,10 +753,16 @@ class TestGeneric_flow_api(TestCase):
 
         # i350 and 82580 only support 2-tuple, and don't support SCTP
         # create the flow rules
-        basic_flow_actions = [
-            {'create': 'create', 'flows': ['ipv4', 'proto', 'udp', 'dport'], 'actions': ['queue']},
-            {'create': 'create', 'flows': ['ipv4', 'proto', 'tcp', 'dport'], 'actions': ['queue']},
-        ]
+        if self.nic in ["fortville_eagle", "fortville_25g", "fortville_spirit"]:
+            basic_flow_actions = [
+                {'create': 'create', 'flows': ['ipv4', 'udp', 'dport'], 'actions': ['queue']},
+                {'create': 'create', 'flows': ['ipv4', 'tcp', 'dport'], 'actions': ['queue']},
+            ]
+        else:
+            basic_flow_actions = [
+                {'create': 'create', 'flows': ['ipv4', 'proto', 'udp', 'dport'], 'actions': ['queue']},
+                {'create': 'create', 'flows': ['ipv4', 'proto', 'tcp', 'dport'], 'actions': ['queue']},
+            ]
         extrapkt_rulenum = self.all_flows_process(basic_flow_actions)
         extra_packet = extrapkt_rulenum['extrapacket']
         # send the packets inconsistent to the rules.
@@ -1906,7 +1912,7 @@ class TestGeneric_flow_api(TestCase):
         """
         only supported by ixgbe
         """
-        self.verify(self.nic in ["twinville", "sagepond", "sageville", "foxville"], "%s nic not support fdir mac vlan filter" % self.nic)
+        self.verify(self.nic in ["twinville", "sagepond", "sageville", 
+ "foxville", "fortville_eagle", "fortville_25g", "fortville_spirit"], 
+ "%s nic not support fdir mac vlan filter" % self.nic)
 
         self.pmdout.start_testpmd("%s" % self.cores, "--pkt-filter-mode=perfect-mac-vlan --disable-rss --rxq=%d --txq=%d" % (MAX_QUEUE+1, MAX_QUEUE+1))
         self.dut.send_expect("set fwd rxonly", "testpmd> ", 120) @@ -1917,10 +1923,16 @@ class TestGeneric_flow_api(TestCase):
         time.sleep(2)
 
         # create the flow rules
-        basic_flow_actions = [
-            {'create': 'create', 'flows': ['dst_mac', 'vlan'], 'actions': ['queue']},
-            {'create': 'create', 'flows': ['dst_mac', 'vlan'], 'actions': ['queue']},
-        ]
+        if self.nic in ["fortville_eagle", "fortville_25g", "fortville_spirit"]:
+            basic_flow_actions = [
+                {'create': 'create', 'flows': ['vlan'], 'actions': ['queue']},
+                {'create': 'create', 'flows': ['vlan'], 'actions': ['queue']}
+            ]
+        else:
+            basic_flow_actions = [
+                {'create': 'create', 'flows': ['dst_mac', 'vlan'], 'actions': ['queue']},
+                {'create': 'create', 'flows': ['dst_mac', 'vlan'], 'actions': ['queue']},
+            ]
         extrapkt_rulenum = self.all_flows_process(basic_flow_actions)
         rule_num = extrapkt_rulenum['rulenum']
         self.verify_rulenum(rule_num)
--
1.8.3.1


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

[-- Attachment #3: TestGeneric_flow_api.log --]
[-- Type: application/octet-stream, Size: 2339417 bytes --]

27/08/2020 07:30:09                            dts: 
TEST SUITE : TestGeneric_flow_api
27/08/2020 07:30:09                            dts: NIC :        fortville_spirit
27/08/2020 07:30:10             dut.10.240.183.141: 
27/08/2020 07:30:10                         tester: 
27/08/2020 07:30:12           TestGeneric_flow_api: Test Case test_2_tuple_filter Begin
27/08/2020 07:30:12             dut.10.240.183.141: 
27/08/2020 07:30:12                         tester: 
27/08/2020 07:30:12             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
27/08/2020 07:30:14           TestGeneric_flow_api: Test Case test_2_tuple_filter Result FAILED: 'fortville_spirit nic not support 2-tuple filter'
27/08/2020 07:30:14             dut.10.240.183.141: quit
27/08/2020 07:30:14             dut.10.240.183.141: -bash: : command not found
27/08/2020 07:30:16             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
27/08/2020 07:30:17                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
27/08/2020 07:35:20                            dts: 
TEST SUITE : TestGeneric_flow_api
27/08/2020 07:35:20                            dts: NIC :        fortville_spirit
27/08/2020 07:35:20             dut.10.240.183.141: 
27/08/2020 07:35:20                         tester: 
27/08/2020 07:35:23           TestGeneric_flow_api: Test Case test_2_tuple_filter Begin
27/08/2020 07:35:23             dut.10.240.183.141: 
27/08/2020 07:35:23                         tester: 
27/08/2020 07:35:23             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
27/08/2020 07:35:24             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_28768_20200827073505   -- -i --disable-rss --rxq=16 --txq=16
27/08/2020 07:35:26             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_28768_20200827073505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
i40e_GLQF_reg_init(): i40e device 0000:84:00.0 changed global register [0x002689a0]. original: 0x00000000, new: 0x00000029 
i40e_GLQF_reg_init(): i40e device 0000:84:00.0 changed global register [0x00268ca4]. original: 0x00001840, new: 0x00009420 
i40e_aq_debug_write_global_register(): i40e device 0000:84:00.0 changed global register [0x0026c7a0]. original: 0xa8, after: 0x28
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
27/08/2020 07:35:36             dut.10.240.183.141: set fwd rxonly
27/08/2020 07:35:36             dut.10.240.183.141: 
Set rxonly packet forwarding mode
27/08/2020 07:35:36             dut.10.240.183.141: set verbose 1
27/08/2020 07:35:36             dut.10.240.183.141: 
Change verbose level from 0 to 1
27/08/2020 07:35:36             dut.10.240.183.141: start
27/08/2020 07:35:36             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 07:35:38             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp dst is 44850  / end actions queue index 14 /  end
27/08/2020 07:35:38             dut.10.240.183.141: 
27/08/2020 07:35:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598513738.4380136 root@10.240.183.89:/tmp/tester/
27/08/2020 07:35:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598513738.4380136 root@10.240.183.89:/tmp/tester/
27/08/2020 07:35:42                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598513738.4380136
27/08/2020 07:35:42                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31930, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=44850, len=28, chksum=40343)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
27/08/2020 07:35:44             dut.10.240.183.141: 
testpmd> port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xe
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 07:35:44             dut.10.240.183.141: stop
27/08/2020 07:35:45             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 1/Queue=14 -------
  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.
27/08/2020 07:35:45           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xe
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 07:35:47             dut.10.240.183.141: start
27/08/2020 07:35:47             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 07:35:47             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / tcp dst is 46377  / end actions queue index 1 /  end
27/08/2020 07:35:47             dut.10.240.183.141: 
27/08/2020 07:35:47                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598513747.193582 root@10.240.183.89:/tmp/tester/
27/08/2020 07:35:49                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598513747.193582 root@10.240.183.89:/tmp/tester/
27/08/2020 07:35:50                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598513747.193582
27/08/2020 07:35:51                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=46377, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=10202, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 07:35:53             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 07:35:53             dut.10.240.183.141: stop
27/08/2020 07:35:53             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 1/Queue= 1 -------
  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.
27/08/2020 07:35:53           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 07:35:55             dut.10.240.183.141: start
27/08/2020 07:35:55             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 07:35:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598513755.858505 root@10.240.183.89:/tmp/tester/
27/08/2020 07:35:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598513755.858505 root@10.240.183.89:/tmp/tester/
27/08/2020 07:35:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598513755.858505
27/08/2020 07:36:00                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=63848, src='192.168.0.1', dst='192.168.0.2')/UDP(sport=22, dport=24, len=28, chksum=51583)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 07:36:02             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - 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 

27/08/2020 07:36:02             dut.10.240.183.141: stop
27/08/2020 07:36:02             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
27/08/2020 07:36:02           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - 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 

27/08/2020 07:36:04             dut.10.240.183.141: start
27/08/2020 07:36:04             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 07:36:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598513764.5028014 root@10.240.183.89:/tmp/tester/
27/08/2020 07:36:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598513764.5028014 root@10.240.183.89:/tmp/tester/
27/08/2020 07:36:08                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598513764.5028014
27/08/2020 07:36:09                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=63847, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=32, dport=34, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22916, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 07:36:11             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

27/08/2020 07:36:11             dut.10.240.183.141: stop
27/08/2020 07:36:11             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
27/08/2020 07:36:11           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

27/08/2020 07:36:13             dut.10.240.183.141: start
27/08/2020 07:36:13             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 07:36:13             dut.10.240.183.141: flow list 0
27/08/2020 07:36:13             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP => QUEUE
1	0	0	i--	ETH IPV4 TCP => QUEUE
27/08/2020 07:36:13             dut.10.240.183.141: flow destroy 0 rule 0
27/08/2020 07:36:13             dut.10.240.183.141: 
Flow rule #0 destroyed
27/08/2020 07:36:13             dut.10.240.183.141: flow list 0
27/08/2020 07:36:13             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 TCP => QUEUE
27/08/2020 07:36:13             dut.10.240.183.141: flow flush 0
27/08/2020 07:36:13             dut.10.240.183.141: 
27/08/2020 07:36:13             dut.10.240.183.141: flow list 0
27/08/2020 07:36:13             dut.10.240.183.141: 
27/08/2020 07:36:13           TestGeneric_flow_api: Test Case test_2_tuple_filter Result PASSED:
27/08/2020 07:36:13             dut.10.240.183.141: quit
27/08/2020 07:36:15             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
27/08/2020 07:36:17             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
27/08/2020 07:36:18                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
27/08/2020 07:55:38                            dts: 
TEST SUITE : TestGeneric_flow_api
27/08/2020 07:55:38                            dts: NIC :        fortville_spirit
27/08/2020 07:55:38             dut.10.240.183.141: 
27/08/2020 07:55:38                         tester: 
27/08/2020 07:55:41           TestGeneric_flow_api: Test Case test_fdir_for_vxlan Begin
27/08/2020 07:55:41             dut.10.240.183.141: 
27/08/2020 07:55:41                         tester: 
27/08/2020 07:55:41             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
27/08/2020 07:55:42             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_29960_20200827075523   -- -i --pkt-filter-mode=perfect-tunnel --disable-rss --rxq=16 --txq=16
27/08/2020 07:55:43             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_29960_20200827075523/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
27/08/2020 07:55:53             dut.10.240.183.141: set fwd rxonly
27/08/2020 07:55:53             dut.10.240.183.141: 
Set rxonly packet forwarding mode
27/08/2020 07:55:53             dut.10.240.183.141: set verbose 1
27/08/2020 07:55:53             dut.10.240.183.141: 
Change verbose level from 0 to 1
27/08/2020 07:55:53             dut.10.240.183.141: start
27/08/2020 07:55:54             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 07:55:56             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan vni is 99 / eth dst is 00:11:22:33:44:66 / vlan tci is 684  / end actions pf / queue index 9 /  end
27/08/2020 07:55:56             dut.10.240.183.141: 
27/08/2020 07:55:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598514956.1096294 root@10.240.183.89:/tmp/tester/
27/08/2020 07:55:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598514956.1096294 root@10.240.183.89:/tmp/tester/
27/08/2020 07:55:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598514956.1096294
27/08/2020 07:56:00                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=74, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31904, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=54, chksum=64599)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=99, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=684, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 07:56:02             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - 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 

27/08/2020 07:56:02             dut.10.240.183.141: stop
27/08/2020 07:56:02             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
27/08/2020 07:56:02           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - 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 

27/08/2020 07:56:04           TestGeneric_flow_api: Test Case test_fdir_for_vxlan Result FAILED: "the actual queue doesn't equal to the expected queue."
27/08/2020 07:56:04             dut.10.240.183.141: quit
27/08/2020 07:56:06             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
27/08/2020 07:56:08             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
27/08/2020 07:56:09                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
27/08/2020 07:59:56                            dts: 
TEST SUITE : TestGeneric_flow_api
27/08/2020 07:59:56                            dts: NIC :        fortville_spirit
27/08/2020 07:59:56             dut.10.240.183.141: 
27/08/2020 07:59:56                         tester: 
27/08/2020 07:59:59           TestGeneric_flow_api: Test Case test_fdir_for_vxlan Begin
27/08/2020 07:59:59             dut.10.240.183.141: 
27/08/2020 07:59:59                         tester: 
27/08/2020 07:59:59             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
27/08/2020 08:00:00             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_30498_20200827075941   -- -i --pkt-filter-mode=perfect-tunnel --disable-rss --rxq=16 --txq=16
27/08/2020 08:00:01             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_30498_20200827075941/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
27/08/2020 08:00:11             dut.10.240.183.141: set fwd rxonly
27/08/2020 08:00:11             dut.10.240.183.141: 
Set rxonly packet forwarding mode
27/08/2020 08:00:11             dut.10.240.183.141: set verbose 1
27/08/2020 08:00:12             dut.10.240.183.141: 
Change verbose level from 0 to 1
27/08/2020 08:00:12             dut.10.240.183.141: start
27/08/2020 08:00:12             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 08:00:14             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan vni is 2500 / eth dst is 00:11:22:33:44:66 / vlan tci is 3294  / end actions pf / queue index 5 /  end
27/08/2020 08:00:14             dut.10.240.183.141: 
27/08/2020 08:00:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598515214.2118943 root@10.240.183.89:/tmp/tester/
27/08/2020 08:00:16                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598515214.2118943 root@10.240.183.89:/tmp/tester/
27/08/2020 08:00:17                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598515214.2118943
27/08/2020 08:00:18                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=74, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31904, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=54, chksum=37148)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=2500, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3294, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 08:00:20             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - 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 

27/08/2020 08:00:20             dut.10.240.183.141: stop
27/08/2020 08:00:20             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
27/08/2020 08:00:20           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - 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 

27/08/2020 08:00:22           TestGeneric_flow_api: Test Case test_fdir_for_vxlan Result FAILED: "the actual queue doesn't equal to the expected queue."
27/08/2020 08:00:22             dut.10.240.183.141: quit
27/08/2020 08:00:24             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
27/08/2020 08:00:26             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
27/08/2020 08:00:27                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
27/08/2020 08:38:21                            dts: 
TEST SUITE : TestGeneric_flow_api
27/08/2020 08:38:21                            dts: NIC :        fortville_spirit
27/08/2020 08:38:21             dut.10.240.183.141: 
27/08/2020 08:38:21                         tester: 
27/08/2020 08:38:23           TestGeneric_flow_api: Test Case test_fdir_for_mac_vlan Begin
27/08/2020 08:38:24             dut.10.240.183.141: 
27/08/2020 08:38:24                         tester: 
27/08/2020 08:38:24             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
27/08/2020 08:38:24             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_31047_20200827083806   -- -i --pkt-filter-mode=perfect-mac-vlan --disable-rss --rxq=16 --txq=16
27/08/2020 08:38:26             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_31047_20200827083806/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
27/08/2020 08:38:36             dut.10.240.183.141: set fwd rxonly
27/08/2020 08:38:36             dut.10.240.183.141: 
Set rxonly packet forwarding mode
27/08/2020 08:38:36             dut.10.240.183.141: set verbose 1
27/08/2020 08:38:36             dut.10.240.183.141: 
Change verbose level from 0 to 1
27/08/2020 08:38:36             dut.10.240.183.141: vlan set strip off 0
27/08/2020 08:38:36             dut.10.240.183.141: 
27/08/2020 08:38:36             dut.10.240.183.141: vlan set filter off 0
27/08/2020 08:38:36             dut.10.240.183.141: 
27/08/2020 08:38:36             dut.10.240.183.141: start
27/08/2020 08:38:36             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 08:38:38             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 608  / end actions queue index 12 /  end
27/08/2020 08:38:39             dut.10.240.183.141: 
27/08/2020 08:38:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598517519.0507846 root@10.240.183.89:/tmp/tester/
27/08/2020 08:38:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598517519.0507846 root@10.240.183.89:/tmp/tester/
27/08/2020 08:38:42                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598517519.0507846
27/08/2020 08:38:43                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=608, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 08:38:45             dut.10.240.183.141: 
testpmd> port 0/queue 12: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 08:38:45             dut.10.240.183.141: stop
27/08/2020 08:38:45             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 1/Queue=12 -------
  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.
27/08/2020 08:38:45           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 12: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 08:38:47             dut.10.240.183.141: start
27/08/2020 08:38:47             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 08:38:47             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3562  / end actions queue index 7 /  end
27/08/2020 08:38:47             dut.10.240.183.141: 
27/08/2020 08:38:47                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598517527.8338363 root@10.240.183.89:/tmp/tester/
27/08/2020 08:38:49                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598517527.8338363 root@10.240.183.89:/tmp/tester/
27/08/2020 08:38:51                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598517527.8338363
27/08/2020 08:38:52                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3562, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 08:38:54             dut.10.240.183.141: 
testpmd> port 0/queue 7: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x7
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 08:38:54             dut.10.240.183.141: stop
27/08/2020 08:38:54             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 7 -> TX Port= 1/Queue= 7 -------
  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.
27/08/2020 08:38:54           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 7: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x7
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 08:38:56             dut.10.240.183.141: start
27/08/2020 08:38:56             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 08:38:56             dut.10.240.183.141: flow list 0
27/08/2020 08:38:56             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH VLAN => QUEUE
1	0	0	i--	ETH VLAN => QUEUE
27/08/2020 08:38:56             dut.10.240.183.141: flow destroy 0 rule 0
27/08/2020 08:38:56             dut.10.240.183.141: 
Flow rule #0 destroyed
27/08/2020 08:38:56             dut.10.240.183.141: flow list 0
27/08/2020 08:38:56             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH VLAN => QUEUE
27/08/2020 08:38:56             dut.10.240.183.141: flow flush 0
27/08/2020 08:38:56             dut.10.240.183.141: 
27/08/2020 08:38:56             dut.10.240.183.141: flow list 0
27/08/2020 08:38:56             dut.10.240.183.141: 
27/08/2020 08:38:56           TestGeneric_flow_api: Test Case test_fdir_for_mac_vlan Result PASSED:
27/08/2020 08:38:56             dut.10.240.183.141: quit
27/08/2020 08:38:58             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
27/08/2020 08:39:00             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
27/08/2020 08:39:01                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
27/08/2020 08:45:01                            dts: 
TEST SUITE : TestGeneric_flow_api
27/08/2020 08:45:01                            dts: NIC :        fortville_spirit
27/08/2020 08:45:01             dut.10.240.183.141: 
27/08/2020 08:45:02                         tester: 
27/08/2020 08:45:04           TestGeneric_flow_api: Test Case test_fdir_for_nvgre Begin
27/08/2020 08:45:04             dut.10.240.183.141: 
27/08/2020 08:45:04                         tester: 
27/08/2020 08:45:04             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
27/08/2020 08:45:05             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_31759_20200827084446   -- -i --pkt-filter-mode=perfect-tunnel --disable-rss --rxq=16 --txq=16
27/08/2020 08:45:07             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_31759_20200827084446/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
27/08/2020 08:45:17             dut.10.240.183.141: set fwd rxonly
27/08/2020 08:45:17             dut.10.240.183.141: 
Set rxonly packet forwarding mode
27/08/2020 08:45:17             dut.10.240.183.141: set verbose 1
27/08/2020 08:45:17             dut.10.240.183.141: 
Change verbose level from 0 to 1
27/08/2020 08:45:17             dut.10.240.183.141: start
27/08/2020 08:45:17             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 08:45:19             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 3922 / eth dst is 00:11:22:33:44:66 / vlan tci is 386  / end actions pf / queue index 4 /  end
27/08/2020 08:45:19             dut.10.240.183.141: 
27/08/2020 08:45:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598517919.678338 root@10.240.183.89:/tmp/tester/
27/08/2020 08:45:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598517919.678338 root@10.240.183.89:/tmp/tester/
27/08/2020 08:45:23                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598517919.678338
27/08/2020 08:45:24                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=1004032, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=386, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 08:45:26             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 08:45:26             dut.10.240.183.141: stop
27/08/2020 08:45:26             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 1/Queue= 4 -------
  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.
27/08/2020 08:45:26           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 08:45:28             dut.10.240.183.141: start
27/08/2020 08:45:28             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 08:45:28             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 3622 / eth dst is 00:11:22:33:44:66 / vlan tci is 203  / end actions pf / drop /  end
27/08/2020 08:45:28             dut.10.240.183.141: 
27/08/2020 08:45:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598517928.417612 root@10.240.183.89:/tmp/tester/
27/08/2020 08:45:30                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598517928.417612 root@10.240.183.89:/tmp/tester/
27/08/2020 08:45:32                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598517928.417612
27/08/2020 08:45:32                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=927232, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=203, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 08:45:34             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 08:45:34             dut.10.240.183.141: stop
27/08/2020 08:45:34             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
27/08/2020 08:45:34           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 08:45:36           TestGeneric_flow_api: Test Case test_fdir_for_nvgre Result FAILED: 'the packet is not dropped.'
27/08/2020 08:45:36             dut.10.240.183.141: quit
27/08/2020 08:45:38             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
27/08/2020 08:45:40             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
27/08/2020 08:45:41                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
27/08/2020 08:47:08                            dts: 
TEST SUITE : TestGeneric_flow_api
27/08/2020 08:47:08                            dts: NIC :        fortville_spirit
27/08/2020 08:47:08             dut.10.240.183.141: 
27/08/2020 08:47:09                         tester: 
27/08/2020 08:47:11           TestGeneric_flow_api: Test Case test_fdir_for_nvgre Begin
27/08/2020 08:47:11             dut.10.240.183.141: 
27/08/2020 08:47:11                         tester: 
27/08/2020 08:47:11             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
27/08/2020 08:47:12             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_32557_20200827084653   -- -i --pkt-filter-mode=perfect-tunnel --disable-rss --rxq=16 --txq=16
27/08/2020 08:47:14             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_32557_20200827084653/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
27/08/2020 08:47:24             dut.10.240.183.141: set fwd rxonly
27/08/2020 08:47:24             dut.10.240.183.141: 
Set rxonly packet forwarding mode
27/08/2020 08:47:24             dut.10.240.183.141: set verbose 1
27/08/2020 08:47:24             dut.10.240.183.141: 
Change verbose level from 0 to 1
27/08/2020 08:47:24             dut.10.240.183.141: start
27/08/2020 08:47:24             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 08:47:26             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 2755 / eth dst is 00:11:22:33:44:66 / vlan tci is 171  / end actions pf / queue index 7 /  end
27/08/2020 08:47:26             dut.10.240.183.141: 
27/08/2020 08:47:26                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598518046.721909 root@10.240.183.89:/tmp/tester/
27/08/2020 08:47:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598518046.721909 root@10.240.183.89:/tmp/tester/
27/08/2020 08:47:30                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598518046.721909
27/08/2020 08:47:31                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=705280, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=171, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 08:47:33             dut.10.240.183.141: 
testpmd> port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x7
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 08:47:33             dut.10.240.183.141: stop
27/08/2020 08:47:33             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 7 -> TX Port= 1/Queue= 7 -------
  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.
27/08/2020 08:47:33           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x7
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 08:47:35             dut.10.240.183.141: start
27/08/2020 08:47:35             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 08:47:35             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 1689 / eth dst is 00:11:22:33:44:66 / vlan tci is 2100  / end actions drop /  end
27/08/2020 08:47:50           TestGeneric_flow_api: Test Case test_fdir_for_nvgre Result FAILED: TIMEOUT on flow create 0 ingress pattern eth / ipv4 / nvgre tni is 1689 / eth dst is 00:11:22:33:44:66 / vlan tci is 2100  / end actions drop /  end
27/08/2020 08:47:50           TestGeneric_flow_api: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 1689 / eth dst is 00:11:22:33:44:66 / vlan tci is 2100  / end actions drop /  end
port_flow_complain(): Caught PMD error type 16 (specific action): cause: 0x7ffe5862e0e8, Not supported action.: Invalid argument
testpmd> 
27/08/2020 08:47:50             dut.10.240.183.141: quit
27/08/2020 08:47:52             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
27/08/2020 08:47:54             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
27/08/2020 08:47:54                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
27/08/2020 09:03:40                            dts: 
TEST SUITE : TestGeneric_flow_api
27/08/2020 09:03:40                            dts: NIC :        fortville_spirit
27/08/2020 09:03:40             dut.10.240.183.141: 
27/08/2020 09:03:40                         tester: 
27/08/2020 09:03:43           TestGeneric_flow_api: Test Case test_flexbytes_filter Begin
27/08/2020 09:03:43             dut.10.240.183.141: 
27/08/2020 09:03:43                         tester: 
27/08/2020 09:03:43             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
27/08/2020 09:03:44             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_684_20200827090325   -- -i --disable-rss --rxq=16 --txq=16
27/08/2020 09:03:46             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_684_20200827090325/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
27/08/2020 09:03:56             dut.10.240.183.141: set fwd rxonly
27/08/2020 09:03:56             dut.10.240.183.141: 
Set rxonly packet forwarding mode
27/08/2020 09:03:56             dut.10.240.183.141: set verbose 1
27/08/2020 09:03:56             dut.10.240.183.141: 
Change verbose level from 0 to 1
27/08/2020 09:03:56             dut.10.240.183.141: start
27/08/2020 09:03:56             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 09:03:58             dut.10.240.183.141: flow create 0 ingress pattern eth / raw relative is 1 offset is 14 pattern is 111 / end actions queue index 1 / end
27/08/2020 09:03:58             dut.10.240.183.141: 
i40e_flow_set_fdir_flex_pit(): i40e device 0000:84:00.0 changed global register [0x00268984]. original: 0x00000000, new: 0x000000a0 
27/08/2020 09:03:58             dut.10.240.183.141: flow create 0 ingress pattern raw relative is 0 offset is 34 pattern is ab / end actions queue index 2 / end
27/08/2020 09:04:13           TestGeneric_flow_api: Test Case test_flexbytes_filter Result FAILED: TIMEOUT on flow create 0 ingress pattern raw relative is 0 offset is 34 pattern is ab / end actions queue index 2 / end
27/08/2020 09:04:13           TestGeneric_flow_api: flow create 0 ingress pattern raw relative is 0 offset is 34 pattern is ab / end actions queue index 2 / end
port_flow_complain(): Caught PMD error type 13 (specific pattern item): cause: 0x7fff61a8b1b8, Unsupported pattern: Invalid argument
testpmd> 
27/08/2020 09:04:13             dut.10.240.183.141: quit
27/08/2020 09:04:15             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
i40e_flex_payload_reg_set_default(): i40e device 0000:84:00.0 changed global register [0x00268984]. original: 0x000000a0, new: 0x00000000 
Done

Shutting down port 1...
Closing ports...
Done

Bye...
27/08/2020 09:04:17             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
27/08/2020 09:04:18                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
27/08/2020 09:25:44                            dts: 
TEST SUITE : TestGeneric_flow_api
27/08/2020 09:25:44                            dts: NIC :        fortville_spirit
27/08/2020 09:25:44             dut.10.240.183.141: 
27/08/2020 09:25:44                         tester: 
27/08/2020 09:25:47           TestGeneric_flow_api: Test Case test_n_tuple_filter Result SKIPPED:
27/08/2020 09:25:47                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
27/08/2020 09:27:27                            dts: 
TEST SUITE : TestGeneric_flow_api
27/08/2020 09:27:27                            dts: NIC :        fortville_spirit
27/08/2020 09:27:27             dut.10.240.183.141: 
27/08/2020 09:27:27                         tester: 
27/08/2020 09:27:29           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
27/08/2020 09:27:30             dut.10.240.183.141: 
27/08/2020 09:27:30                         tester: 
27/08/2020 09:27:30             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
27/08/2020 09:27:30             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_1384_20200827092712   -- -i --disable-rss --rxq=16 --txq=16
27/08/2020 09:27:32             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_1384_20200827092712/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
27/08/2020 09:27:42             dut.10.240.183.141: set fwd rxonly
27/08/2020 09:27:42             dut.10.240.183.141: 
Set rxonly packet forwarding mode
27/08/2020 09:27:42             dut.10.240.183.141: set verbose 1
27/08/2020 09:27:42             dut.10.240.183.141: 
Change verbose level from 0 to 1
27/08/2020 09:27:42             dut.10.240.183.141: start
27/08/2020 09:27:42             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 09:27:44             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 226.254.189.198 src is 125.251.199.105  / end actions queue index 13 /  end
27/08/2020 09:27:44             dut.10.240.183.141: 
27/08/2020 09:27:44                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598520464.964765 root@10.240.183.89:/tmp/tester/
27/08/2020 09:27:46                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598520464.964765 root@10.240.183.89:/tmp/tester/
27/08/2020 09:27:48                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598520464.964765
27/08/2020 09:27:49                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=38059, src='125.251.199.105', dst='226.254.189.198')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 09:27:51             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 09:27:51             dut.10.240.183.141: stop
27/08/2020 09:27:51             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 1/Queue=13 -------
  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.
27/08/2020 09:27:51           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 09:27:53             dut.10.240.183.141: start
27/08/2020 09:27:53             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 09:27:53             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 70.109.214.16 src is 94.112.69.218 / udp dst is 21401 src is 13945  / end actions queue index 15 /  end
27/08/2020 09:27:53             dut.10.240.183.141: 
27/08/2020 09:27:53                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598520473.69325 root@10.240.183.89:/tmp/tester/
27/08/2020 09:27:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598520473.69325 root@10.240.183.89:/tmp/tester/
27/08/2020 09:27:57                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598520473.69325
27/08/2020 09:27:58                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=47604, src='94.112.69.218', dst='70.109.214.16')/UDP(sport=13945, dport=21401, len=28, chksum=39)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 09:28:00             dut.10.240.183.141: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 09:28:00             dut.10.240.183.141: stop
27/08/2020 09:28:00             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 1/Queue=15 -------
  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.
27/08/2020 09:28:00           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 09:28:02             dut.10.240.183.141: start
27/08/2020 09:28:02             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 09:28:02             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 23.10.224.180 src is 86.162.162.218 / tcp dst is 13394 src is 36377  / end actions queue index 0 /  end
27/08/2020 09:28:02             dut.10.240.183.141: 
27/08/2020 09:28:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598520482.451075 root@10.240.183.89:/tmp/tester/
27/08/2020 09:28:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598520482.451075 root@10.240.183.89:/tmp/tester/
27/08/2020 09:28:06                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598520482.451075
27/08/2020 09:28:06                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=35200, src='86.162.162.218', dst='23.10.224.180')/TCP(sport=36377, dport=13394, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=10099, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 09:28:08             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 09:28:08             dut.10.240.183.141: stop
27/08/2020 09:28:08             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
27/08/2020 09:28:08           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 09:28:11             dut.10.240.183.141: start
27/08/2020 09:28:11             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 09:28:11             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 97.196.118.28 src is 219.108.23.97 / sctp dst is 44103 src is 1182  / end actions queue index 0 /  end
27/08/2020 09:28:11             dut.10.240.183.141: 
27/08/2020 09:28:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598520491.151807 root@10.240.183.89:/tmp/tester/
27/08/2020 09:28:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598520491.151807 root@10.240.183.89:/tmp/tester/
27/08/2020 09:28:14                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598520491.151807
27/08/2020 09:28:15                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=44951, src='219.108.23.97', dst='97.196.118.28')/SCTP(sport=1182, dport=44103, tag=0, chksum=1594228605)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 09:28:17             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 09:28:17             dut.10.240.183.141: stop
27/08/2020 09:28:17             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
27/08/2020 09:28:17           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

27/08/2020 09:28:19             dut.10.240.183.141: start
27/08/2020 09:28:19             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 09:28:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598520499.7568514 root@10.240.183.89:/tmp/tester/
27/08/2020 09:28:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598520499.7568514 root@10.240.183.89:/tmp/tester/
27/08/2020 09:28:23                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598520499.7568514
27/08/2020 09:28:24                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=38059, src='226.254.189.198', dst='125.251.199.105')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 09:28:26             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

27/08/2020 09:28:26             dut.10.240.183.141: stop
27/08/2020 09:28:26             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
27/08/2020 09:28:26           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

27/08/2020 09:28:28             dut.10.240.183.141: start
27/08/2020 09:28:28             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 09:28:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598520508.41706 root@10.240.183.89:/tmp/tester/
27/08/2020 09:28:30                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598520508.41706 root@10.240.183.89:/tmp/tester/
27/08/2020 09:28:32                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598520508.41706
27/08/2020 09:28:32                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=44951, src='97.196.118.28', dst='219.108.23.97')/SCTP(sport=1182, dport=44103, tag=0, chksum=1594228605)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 09:28:34             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

27/08/2020 09:28:34             dut.10.240.183.141: stop
27/08/2020 09:28:34             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
27/08/2020 09:28:34           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

27/08/2020 09:28:36             dut.10.240.183.141: start
27/08/2020 09:28:37             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 09:28:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598520517.0019674 root@10.240.183.89:/tmp/tester/
27/08/2020 09:28:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598520517.0019674 root@10.240.183.89:/tmp/tester/
27/08/2020 09:28:40                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598520517.0019674
27/08/2020 09:28:41                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=37915, src='125.251.199.105', dst='226.254.189.198')/SCTP(sport=1182, dport=44103, tag=0, chksum=1594228605)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 09:28:43             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

27/08/2020 09:28:43             dut.10.240.183.141: stop
27/08/2020 09:28:43             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
27/08/2020 09:28:43           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

27/08/2020 09:28:45           TestGeneric_flow_api: Test Case test_n_tuple_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
27/08/2020 09:28:45             dut.10.240.183.141: quit
27/08/2020 09:28:47             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
27/08/2020 09:28:49             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
27/08/2020 09:28:50                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
27/08/2020 09:32:18                            dts: 
TEST SUITE : TestGeneric_flow_api
27/08/2020 09:32:18                            dts: NIC :        fortville_spirit
27/08/2020 09:32:18             dut.10.240.183.141: 
27/08/2020 09:32:19                         tester: 
27/08/2020 09:32:21           TestGeneric_flow_api: Test Case test_syn_filter Begin
27/08/2020 09:32:21             dut.10.240.183.141: 
27/08/2020 09:32:21                         tester: 
27/08/2020 09:32:21             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
27/08/2020 09:32:22             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_3077_20200827093204   -- -i --disable-rss --rxq=16 --txq=16
27/08/2020 09:32:24             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3077_20200827093204/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
27/08/2020 09:32:34             dut.10.240.183.141: set fwd rxonly
27/08/2020 09:32:34             dut.10.240.183.141: 
Set rxonly packet forwarding mode
27/08/2020 09:32:34             dut.10.240.183.141: set verbose 1
27/08/2020 09:32:34             dut.10.240.183.141: 
Change verbose level from 0 to 1
27/08/2020 09:32:34             dut.10.240.183.141: start
27/08/2020 09:32:34             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
27/08/2020 09:32:36             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / tcp flags spec 0x02 flags mask 0x02 / end actions pf / queue index 3 / end
27/08/2020 09:32:36             dut.10.240.183.141: 
i40e_replace_port_l1_filter(): i40e device 0000:84:00.0 changed cloud l1 type. original: 0xb, new: 0x11
i40e_replace_port_cloud_filter(): i40e device 0000:84:00.0 changed cloud filter type. original: 0xc, new: 0x11
27/08/2020 09:32:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598520756.681864 root@10.240.183.89:/tmp/tester/
27/08/2020 09:32:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598520756.681864 root@10.240.183.89:/tmp/tester/
27/08/2020 09:32:40                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598520756.681864
27/08/2020 09:32:41                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=63847, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22882, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
27/08/2020 09:32:43             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

27/08/2020 09:32:43             dut.10.240.183.141: stop
27/08/2020 09:32:43             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
27/08/2020 09:32:43           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

27/08/2020 09:32:45           TestGeneric_flow_api: Test Case test_syn_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
27/08/2020 09:32:45             dut.10.240.183.141: quit
27/08/2020 09:32:47             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...
Done

Shutting down port 1...
Closing ports...
Done

Bye...
27/08/2020 09:32:49             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
27/08/2020 09:32:49                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
28/08/2020 08:23:21                            dts: 
TEST SUITE : TestGeneric_flow_api
28/08/2020 08:23:21                            dts: NIC :        fortville_spirit
28/08/2020 08:23:21             dut.10.240.183.141: 
28/08/2020 08:23:21                         tester: 
28/08/2020 08:23:24           TestGeneric_flow_api: Test Case test_2_tuple_filter Result SKIPPED:
28/08/2020 08:23:24                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
28/08/2020 08:28:19                            dts: 
TEST SUITE : TestGeneric_flow_api
28/08/2020 08:28:19                            dts: NIC :        fortville_spirit
28/08/2020 08:28:19             dut.10.240.183.141: 
28/08/2020 08:28:20                         tester: 
28/08/2020 08:28:22           TestGeneric_flow_api: Test Case test_2_tuple_filter Begin
28/08/2020 08:28:22             dut.10.240.183.141: 
28/08/2020 08:28:22                         tester: 
28/08/2020 08:28:22             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
28/08/2020 08:28:23             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_32589_20200828082805   -- -i --disable-rss --rxq=16 --txq=16
28/08/2020 08:28:25             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_32589_20200828082805/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
28/08/2020 08:28:35             dut.10.240.183.141: set fwd rxonly
28/08/2020 08:28:35             dut.10.240.183.141: 
Set rxonly packet forwarding mode
28/08/2020 08:28:35             dut.10.240.183.141: set verbose 1
28/08/2020 08:28:35             dut.10.240.183.141: 
Change verbose level from 0 to 1
28/08/2020 08:28:35             dut.10.240.183.141: start
28/08/2020 08:28:35             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
28/08/2020 08:28:37             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp dst is 13527  / end actions queue index 10 /  end
28/08/2020 08:28:37             dut.10.240.183.141: 
28/08/2020 08:28:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598603317.6770546 root@10.240.183.89:/tmp/tester/
28/08/2020 08:28:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598603317.6770546 root@10.240.183.89:/tmp/tester/
28/08/2020 08:28:41                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598603317.6770546
28/08/2020 08:28:42                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31930, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=13527, len=28, chksum=6131)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
28/08/2020 08:28:44             dut.10.240.183.141: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

28/08/2020 08:28:44             dut.10.240.183.141: stop
28/08/2020 08:28:44             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 1/Queue=10 -------
  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.
28/08/2020 08:28:44           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

28/08/2020 08:28:46             dut.10.240.183.141: start
28/08/2020 08:28:46             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
28/08/2020 08:28:46             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / tcp dst is 10508  / end actions queue index 5 /  end
28/08/2020 08:28:46             dut.10.240.183.141: 
28/08/2020 08:28:46                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598603326.6797094 root@10.240.183.89:/tmp/tester/
28/08/2020 08:28:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598603326.6797094 root@10.240.183.89:/tmp/tester/
28/08/2020 08:28:50                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598603326.6797094
28/08/2020 08:28:51                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=10508, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=46071, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
28/08/2020 08:28:53             dut.10.240.183.141: 
testpmd> port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

28/08/2020 08:28:53             dut.10.240.183.141: stop
28/08/2020 08:28:53             dut.10.240.183.141: 
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.
28/08/2020 08:28:53           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

28/08/2020 08:28:55             dut.10.240.183.141: start
28/08/2020 08:28:55             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
28/08/2020 08:28:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598603335.3188486 root@10.240.183.89:/tmp/tester/
28/08/2020 08:28:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598603335.3188486 root@10.240.183.89:/tmp/tester/
28/08/2020 08:28:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598603335.3188486
28/08/2020 08:28:59                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=63848, src='192.168.0.1', dst='192.168.0.2')/UDP(sport=22, dport=24, len=28, chksum=51583)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
28/08/2020 08:29:01             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - 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 

28/08/2020 08:29:01             dut.10.240.183.141: stop
28/08/2020 08:29:01             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
28/08/2020 08:29:01           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - 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 

28/08/2020 08:29:03             dut.10.240.183.141: start
28/08/2020 08:29:03             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
28/08/2020 08:29:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598603343.9975526 root@10.240.183.89:/tmp/tester/
28/08/2020 08:29:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598603343.9975526 root@10.240.183.89:/tmp/tester/
28/08/2020 08:29:07                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598603343.9975526
28/08/2020 08:29:08                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=63847, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=32, dport=34, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22916, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
28/08/2020 08:29:10             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

28/08/2020 08:29:10             dut.10.240.183.141: stop
28/08/2020 08:29:10             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
28/08/2020 08:29:10           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

28/08/2020 08:29:12             dut.10.240.183.141: start
28/08/2020 08:29:12             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
28/08/2020 08:29:12             dut.10.240.183.141: flow list 0
28/08/2020 08:29:12             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP => QUEUE
1	0	0	i--	ETH IPV4 TCP => QUEUE
28/08/2020 08:29:12             dut.10.240.183.141: flow destroy 0 rule 0
28/08/2020 08:29:12             dut.10.240.183.141: 
Flow rule #0 destroyed
28/08/2020 08:29:12             dut.10.240.183.141: flow list 0
28/08/2020 08:29:12             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 TCP => QUEUE
28/08/2020 08:29:12             dut.10.240.183.141: flow flush 0
28/08/2020 08:29:12             dut.10.240.183.141: 
28/08/2020 08:29:12             dut.10.240.183.141: flow list 0
28/08/2020 08:29:12             dut.10.240.183.141: 
28/08/2020 08:29:12           TestGeneric_flow_api: Test Case test_2_tuple_filter Result PASSED:
28/08/2020 08:29:12             dut.10.240.183.141: quit
28/08/2020 08:29:14             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
28/08/2020 08:29:16             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
28/08/2020 08:29:17                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
01/09/2020 02:26:52                            dts: 
TEST SUITE : TestGeneric_flow_api
01/09/2020 02:26:52                            dts: NIC :        fortville_spirit
01/09/2020 02:26:53             dut.10.240.183.141: 
01/09/2020 02:26:53                         tester: 
01/09/2020 02:26:55           TestGeneric_flow_api: Test Case test_2_tuple_filter Begin
01/09/2020 02:26:55             dut.10.240.183.141: 
01/09/2020 02:26:56                         tester: 
01/09/2020 02:26:56             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:26:57             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_5025_20200901022449   -- -i --disable-rss --rxq=16 --txq=16
01/09/2020 02:26:59             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_5025_20200901022449/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
i40e_GLQF_reg_init(): i40e device 0000:84:00.0 changed global register [0x002689a0]. original: 0x00000000, new: 0x00000029 
i40e_GLQF_reg_init(): i40e device 0000:84:00.0 changed global register [0x00268ca4]. original: 0x00001840, new: 0x00009420 
i40e_aq_debug_write_global_register(): i40e device 0000:84:00.0 changed global register [0x0026c7a0]. original: 0xa8, after: 0x28
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 02:27:09             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:27:09             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:27:09             dut.10.240.183.141: set verbose 1
01/09/2020 02:27:09             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:27:09             dut.10.240.183.141: start
01/09/2020 02:27:09             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:27:11             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp dst is 36649  / end actions queue index 0 /  end
01/09/2020 02:27:11             dut.10.240.183.141: 
01/09/2020 02:27:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927231.3639066 root@10.240.183.89:/tmp/tester/
01/09/2020 02:27:13                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927231.3639066 root@10.240.183.89:/tmp/tester/
01/09/2020 02:27:15                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927231.3639066
01/09/2020 02:27:16                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31930, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=36649, len=28, chksum=48544)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
01/09/2020 02:27:18             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:27:18             dut.10.240.183.141: stop
01/09/2020 02:27:18             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 02:27:18           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:27:20             dut.10.240.183.141: start
01/09/2020 02:27:20             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:27:20             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / tcp dst is 65000  / end actions queue index 4 /  end
01/09/2020 02:27:20             dut.10.240.183.141: 
01/09/2020 02:27:20                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927240.526854 root@10.240.183.89:/tmp/tester/
01/09/2020 02:27:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927240.526854 root@10.240.183.89:/tmp/tester/
01/09/2020 02:27:24                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927240.526854
01/09/2020 02:27:25                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=65000, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=57114, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:27:27             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:27:27             dut.10.240.183.141: stop
01/09/2020 02:27:27             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 1/Queue= 4 -------
  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.
01/09/2020 02:27:27           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:27:29             dut.10.240.183.141: start
01/09/2020 02:27:29             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:27:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927249.294643 root@10.240.183.89:/tmp/tester/
01/09/2020 02:27:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927249.294643 root@10.240.183.89:/tmp/tester/
01/09/2020 02:27:32                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927249.294643
01/09/2020 02:27:33                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=63848, src='192.168.0.1', dst='192.168.0.2')/UDP(sport=22, dport=24, len=28, chksum=51583)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:27:35             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - 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 

01/09/2020 02:27:35             dut.10.240.183.141: stop
01/09/2020 02:27:35             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 02:27:35           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - 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 

01/09/2020 02:27:37             dut.10.240.183.141: start
01/09/2020 02:27:37             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:27:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927257.9338014 root@10.240.183.89:/tmp/tester/
01/09/2020 02:27:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927257.9338014 root@10.240.183.89:/tmp/tester/
01/09/2020 02:27:41                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927257.9338014
01/09/2020 02:27:42                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=63847, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=32, dport=34, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22916, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:27:44             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

01/09/2020 02:27:44             dut.10.240.183.141: stop
01/09/2020 02:27:44             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 02:27:44           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

01/09/2020 02:27:46             dut.10.240.183.141: start
01/09/2020 02:27:46             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:27:46             dut.10.240.183.141: flow list 0
01/09/2020 02:27:46             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP => QUEUE
1	0	0	i--	ETH IPV4 TCP => QUEUE
01/09/2020 02:27:46             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 02:27:46             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 02:27:46             dut.10.240.183.141: flow list 0
01/09/2020 02:27:46             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 TCP => QUEUE
01/09/2020 02:27:46             dut.10.240.183.141: flow flush 0
01/09/2020 02:27:46             dut.10.240.183.141: 
01/09/2020 02:27:46             dut.10.240.183.141: flow list 0
01/09/2020 02:27:46             dut.10.240.183.141: 
01/09/2020 02:27:46           TestGeneric_flow_api: Test Case test_2_tuple_filter Result PASSED:
01/09/2020 02:27:46             dut.10.240.183.141: quit
01/09/2020 02:27:48             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 02:27:50             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:27:51                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
01/09/2020 02:28:42                            dts: 
TEST SUITE : TestGeneric_flow_api
01/09/2020 02:28:42                            dts: NIC :        fortville_spirit
01/09/2020 02:28:42             dut.10.240.183.141: 
01/09/2020 02:28:43                         tester: 
01/09/2020 02:28:45           TestGeneric_flow_api: Test Case test_fdir_for_mac_vlan Begin
01/09/2020 02:28:45             dut.10.240.183.141: 
01/09/2020 02:28:45                         tester: 
01/09/2020 02:28:45             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:28:46             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_6299_20200901022828   -- -i --pkt-filter-mode=perfect-mac-vlan --disable-rss --rxq=16 --txq=16
01/09/2020 02:28:48             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6299_20200901022828/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 02:28:58             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:28:58             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:28:58             dut.10.240.183.141: set verbose 1
01/09/2020 02:28:58             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:28:58             dut.10.240.183.141: vlan set strip off 0
01/09/2020 02:28:58             dut.10.240.183.141: 
01/09/2020 02:28:58             dut.10.240.183.141: vlan set filter off 0
01/09/2020 02:28:58             dut.10.240.183.141: 
01/09/2020 02:28:58             dut.10.240.183.141: start
01/09/2020 02:28:58             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:29:00             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 2675  / end actions queue index 3 /  end
01/09/2020 02:29:15           TestGeneric_flow_api: Test Case test_fdir_for_mac_vlan Result FAILED: TIMEOUT on flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 2675  / end actions queue index 3 /  end
01/09/2020 02:29:15           TestGeneric_flow_api: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 2675  / end actions queue index 3 /  end
i40e_flow_set_fdir_inset(): Invalid input set
port_flow_complain(): Caught PMD error type 13 (specific pattern item): cause: 0x1666420, Invalid pattern mask.: Invalid argument
testpmd> 
01/09/2020 02:29:15             dut.10.240.183.141: quit
01/09/2020 02:29:17             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 02:29:19             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:29:20                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
01/09/2020 02:31:35                            dts: 
TEST SUITE : TestGeneric_flow_api
01/09/2020 02:31:35                            dts: NIC :        fortville_spirit
01/09/2020 02:31:35             dut.10.240.183.141: 
01/09/2020 02:31:35                         tester: 
01/09/2020 02:31:38           TestGeneric_flow_api: Test Case test_fdir_for_mac_vlan Begin
01/09/2020 02:31:38             dut.10.240.183.141: 
01/09/2020 02:31:38                         tester: 
01/09/2020 02:31:38             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:31:39             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_6698_20200901023120   -- -i --pkt-filter-mode=perfect-mac-vlan --disable-rss --rxq=16 --txq=16
01/09/2020 02:31:41             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6698_20200901023120/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 02:31:51             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:31:51             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:31:51             dut.10.240.183.141: set verbose 1
01/09/2020 02:31:51             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:31:51             dut.10.240.183.141: vlan set strip off 0
01/09/2020 02:31:51             dut.10.240.183.141: 
01/09/2020 02:31:51             dut.10.240.183.141: vlan set filter off 0
01/09/2020 02:31:51             dut.10.240.183.141: 
01/09/2020 02:31:51             dut.10.240.183.141: start
01/09/2020 02:31:51             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:31:53             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 1396  / end actions queue index 0 /  end
01/09/2020 02:31:53             dut.10.240.183.141: 
01/09/2020 02:31:53                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927513.4772296 root@10.240.183.89:/tmp/tester/
01/09/2020 02:31:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927513.4772296 root@10.240.183.89:/tmp/tester/
01/09/2020 02:31:57                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927513.4772296
01/09/2020 02:31:58                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=1396, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:32:00             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:32:00             dut.10.240.183.141: stop
01/09/2020 02:32:00             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 02:32:00           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:32:02             dut.10.240.183.141: start
01/09/2020 02:32:02             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:32:02             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 2216  / end actions queue index 9 /  end
01/09/2020 02:32:02             dut.10.240.183.141: 
01/09/2020 02:32:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927522.2633142 root@10.240.183.89:/tmp/tester/
01/09/2020 02:32:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927522.2633142 root@10.240.183.89:/tmp/tester/
01/09/2020 02:32:05                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927522.2633142
01/09/2020 02:32:06                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=2216, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:32:08             dut.10.240.183.141: 
testpmd> port 0/queue 9: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x9
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:32:08             dut.10.240.183.141: stop
01/09/2020 02:32:08             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 9 -> TX Port= 1/Queue= 9 -------
  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.
01/09/2020 02:32:08           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 9: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x9
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:32:10             dut.10.240.183.141: start
01/09/2020 02:32:10             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:32:10             dut.10.240.183.141: flow list 0
01/09/2020 02:32:10             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH VLAN => QUEUE
1	0	0	i--	ETH VLAN => QUEUE
01/09/2020 02:32:10             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 02:32:11             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 02:32:11             dut.10.240.183.141: flow list 0
01/09/2020 02:32:11             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH VLAN => QUEUE
01/09/2020 02:32:11             dut.10.240.183.141: flow flush 0
01/09/2020 02:32:11             dut.10.240.183.141: 
01/09/2020 02:32:11             dut.10.240.183.141: flow list 0
01/09/2020 02:32:11             dut.10.240.183.141: 
01/09/2020 02:32:11           TestGeneric_flow_api: Test Case test_fdir_for_mac_vlan Result PASSED:
01/09/2020 02:32:11             dut.10.240.183.141: quit
01/09/2020 02:32:13             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 02:32:15             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:32:15                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
01/09/2020 02:36:06                            dts: 
TEST SUITE : TestGeneric_flow_api
01/09/2020 02:36:06                            dts: NIC :        fortville_spirit
01/09/2020 02:36:07             dut.10.240.183.141: 
01/09/2020 02:36:07                         tester: 
01/09/2020 02:36:09           TestGeneric_flow_api: Test Case test_2_tuple_filter Begin
01/09/2020 02:36:09             dut.10.240.183.141: 
01/09/2020 02:36:09                         tester: 
01/09/2020 02:36:09             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:36:10             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_7380_20200901023552   -- -i --disable-rss --rxq=16 --txq=16
01/09/2020 02:36:12             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 02:36:22             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:36:22             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:36:22             dut.10.240.183.141: set verbose 1
01/09/2020 02:36:22             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:36:22             dut.10.240.183.141: start
01/09/2020 02:36:22             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:36:24             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp dst is 51467  / end actions queue index 12 /  end
01/09/2020 02:36:24             dut.10.240.183.141: 
01/09/2020 02:36:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927784.7241015 root@10.240.183.89:/tmp/tester/
01/09/2020 02:36:26                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927784.7241015 root@10.240.183.89:/tmp/tester/
01/09/2020 02:36:28                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927784.7241015
01/09/2020 02:36:29                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31930, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=51467, len=28, chksum=33726)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
01/09/2020 02:36:31             dut.10.240.183.141: 
testpmd> port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:36:31             dut.10.240.183.141: stop
01/09/2020 02:36:31             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 1/Queue=12 -------
  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.
01/09/2020 02:36:31           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:36:33             dut.10.240.183.141: start
01/09/2020 02:36:33             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:36:33             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / tcp dst is 44764  / end actions queue index 11 /  end
01/09/2020 02:36:33             dut.10.240.183.141: 
01/09/2020 02:36:33                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927793.4428148 root@10.240.183.89:/tmp/tester/
01/09/2020 02:36:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927793.4428148 root@10.240.183.89:/tmp/tester/
01/09/2020 02:36:37                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927793.4428148
01/09/2020 02:36:37                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=44764, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=11815, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:36:39             dut.10.240.183.141: 
testpmd> port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:36:39             dut.10.240.183.141: stop
01/09/2020 02:36:39             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 1/Queue=11 -------
  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.
01/09/2020 02:36:39           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:36:41             dut.10.240.183.141: start
01/09/2020 02:36:42             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:36:42                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927802.0719717 root@10.240.183.89:/tmp/tester/
01/09/2020 02:36:43                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927802.0719717 root@10.240.183.89:/tmp/tester/
01/09/2020 02:36:45                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927802.0719717
01/09/2020 02:36:46                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=63848, src='192.168.0.1', dst='192.168.0.2')/UDP(sport=22, dport=24, len=28, chksum=51583)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:36:48             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - 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 

01/09/2020 02:36:48             dut.10.240.183.141: stop
01/09/2020 02:36:48             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 02:36:48           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - 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 

01/09/2020 02:36:50             dut.10.240.183.141: start
01/09/2020 02:36:50             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:36:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927810.7331884 root@10.240.183.89:/tmp/tester/
01/09/2020 02:36:52                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927810.7331884 root@10.240.183.89:/tmp/tester/
01/09/2020 02:36:54                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927810.7331884
01/09/2020 02:36:55                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=63847, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=32, dport=34, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22916, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:36:57             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

01/09/2020 02:36:57             dut.10.240.183.141: stop
01/09/2020 02:36:57             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 02:36:57           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

01/09/2020 02:36:59             dut.10.240.183.141: start
01/09/2020 02:36:59             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:36:59             dut.10.240.183.141: flow list 0
01/09/2020 02:36:59             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP => QUEUE
1	0	0	i--	ETH IPV4 TCP => QUEUE
01/09/2020 02:36:59             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 02:36:59             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 02:36:59             dut.10.240.183.141: flow list 0
01/09/2020 02:36:59             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 TCP => QUEUE
01/09/2020 02:36:59             dut.10.240.183.141: flow flush 0
01/09/2020 02:36:59             dut.10.240.183.141: 
01/09/2020 02:36:59             dut.10.240.183.141: flow list 0
01/09/2020 02:36:59             dut.10.240.183.141: 
01/09/2020 02:36:59           TestGeneric_flow_api: Test Case test_2_tuple_filter Result PASSED:
01/09/2020 02:36:59             dut.10.240.183.141: quit
01/09/2020 02:37:01             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 02:37:03             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:37:04           TestGeneric_flow_api: Test Case test_L2_tunnel_filter Result SKIPPED:
01/09/2020 02:37:04           TestGeneric_flow_api: Test Case test_ethertype_filter Begin
01/09/2020 02:37:04             dut.10.240.183.141: 
01/09/2020 02:37:04                         tester: 
01/09/2020 02:37:04             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:37:05             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_7380_20200901023552    -- -i --disable-rss --rxq=16 --txq=16
01/09/2020 02:37:06             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 02:37:16             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:37:16             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:37:16             dut.10.240.183.141: set verbose 1
01/09/2020 02:37:16             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:37:16             dut.10.240.183.141: start
01/09/2020 02:37:16             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:37:18             dut.10.240.183.141: flow validate 0 ingress pattern eth type is 0x0806  / end actions queue index 4 /  end
01/09/2020 02:37:18             dut.10.240.183.141: 
01/09/2020 02:37:18             dut.10.240.183.141: flow validate 0 ingress pattern eth type is 0x0806  / end actions queue index 16 /  end
01/09/2020 02:37:18             dut.10.240.183.141: 
01/09/2020 02:37:18             dut.10.240.183.141: flow validate 0 ingress pattern eth type is 0x88cc  / end actions queue index 16 /  end
01/09/2020 02:37:18             dut.10.240.183.141: 
01/09/2020 02:37:18             dut.10.240.183.141: flow validate 0 ingress pattern eth type is 0x86dd  / end actions queue index 5 /  end
01/09/2020 02:37:19             dut.10.240.183.141: 
01/09/2020 02:37:19             dut.10.240.183.141: flow validate 0 ingress pattern eth type is 0x0800  / end actions queue index 10 /  end
01/09/2020 02:37:19             dut.10.240.183.141: 
01/09/2020 02:37:19             dut.10.240.183.141: flow validate 0 ingress pattern eth type is 0x8100  / end actions queue index 11 /  end
01/09/2020 02:37:19             dut.10.240.183.141: 
01/09/2020 02:37:19             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x0806  / end actions queue index 16 /  end
01/09/2020 02:37:19             dut.10.240.183.141: 
01/09/2020 02:37:19             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x0806  / end actions queue index 3 /  end
01/09/2020 02:37:19             dut.10.240.183.141: 
01/09/2020 02:37:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927839.2891197 root@10.240.183.89:/tmp/tester/
01/09/2020 02:37:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927839.2891197 root@10.240.183.89:/tmp/tester/
01/09/2020 02:37:22                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927839.2891197
01/09/2020 02:37:23                         tester: packet ready for sending...
Ether(dst='ff:ff:ff:ff:ff:ff', src='00:0c:29:67:ac:3e', type=2054)/ARP(hwtype=1, ptype=2048, hwlen=6, plen=4, op=1, hwsrc='00:0c:29:67:ac:3e', psrc='10.240.183.89', hwdst='00:00:00:00:00:00', pdst='192.168.1.1')/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:37:25             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=FF:FF:FF:FF:FF:FF - type=0x0806 - length=62 - nb_segs=1 - hw ptype: L2_ETHER_ARP  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:37:25             dut.10.240.183.141: stop
01/09/2020 02:37:25             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
01/09/2020 02:37:25           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=FF:FF:FF:FF:FF:FF - type=0x0806 - length=62 - nb_segs=1 - hw ptype: L2_ETHER_ARP  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:37:27             dut.10.240.183.141: start
01/09/2020 02:37:27             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:37:27             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x86bb  / end actions queue index 6 /  end
01/09/2020 02:37:28             dut.10.240.183.141: 
01/09/2020 02:37:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927848.012237 root@10.240.183.89:/tmp/tester/
01/09/2020 02:37:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927848.012237 root@10.240.183.89:/tmp/tester/
01/09/2020 02:37:31                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927848.012237
01/09/2020 02:37:32                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=34491)/Raw(load=b'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:37:34             dut.10.240.183.141: 
testpmd> port 0/queue 6: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x86bb - length=60 - nb_segs=1 - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x6
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:37:34             dut.10.240.183.141: stop
01/09/2020 02:37:34             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:37:34           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 6: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x86bb - length=60 - nb_segs=1 - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x6
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:37:36             dut.10.240.183.141: start
01/09/2020 02:37:36             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:37:36             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x8864  / end actions drop /  end
01/09/2020 02:37:36             dut.10.240.183.141: 
01/09/2020 02:37:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927856.734669 root@10.240.183.89:/tmp/tester/
01/09/2020 02:37:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927856.734669 root@10.240.183.89:/tmp/tester/
01/09/2020 02:37:40                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927856.734669
01/09/2020 02:37:41                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=34916)/PPPoE(version=7, type=8, code=120, sessionid=30840, len=30840)/Raw(load=b'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:37:43             dut.10.240.183.141: 
testpmd> 
01/09/2020 02:37:43             dut.10.240.183.141: stop
01/09/2020 02:37:43             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

Done.
01/09/2020 02:37:43           TestGeneric_flow_api: pf: 
testpmd> 
01/09/2020 02:37:45             dut.10.240.183.141: start
01/09/2020 02:37:45             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:37:45             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 type is 0x8847  / end actions queue index 9 /  end
01/09/2020 02:37:45             dut.10.240.183.141: 
01/09/2020 02:37:45                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927865.5044081 root@10.240.183.89:/tmp/tester/
01/09/2020 02:37:47                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927865.5044081 root@10.240.183.89:/tmp/tester/
01/09/2020 02:37:49                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927865.5044081
01/09/2020 02:37:49                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:0c:29:67:ac:3e', type=34887)/Raw(load=b'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:37:51             dut.10.240.183.141: 
testpmd> port 0/queue 9: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x8847 - length=60 - nb_segs=1 - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x9
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:37:51             dut.10.240.183.141: stop
01/09/2020 02:37:52             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 9 -> TX Port= 0/Queue= 9 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:37:52           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 9: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x8847 - length=60 - nb_segs=1 - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x9
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:37:54             dut.10.240.183.141: start
01/09/2020 02:37:54             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:37:54             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x88cc  / end actions queue index 7 /  end
01/09/2020 02:37:54             dut.10.240.183.141: 
01/09/2020 02:37:54                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927874.1986675 root@10.240.183.89:/tmp/tester/
01/09/2020 02:37:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927874.1986675 root@10.240.183.89:/tmp/tester/
01/09/2020 02:37:57                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927874.1986675
01/09/2020 02:37:58                         tester: packet ready for sending...
Raw(load=b'h\x05\xca0j\x80\x00\x0c)g\xac>\x88\xccxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:38:00             dut.10.240.183.141: 
testpmd> port 0/queue 7: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x88cc - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER_LLDP  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x7
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:38:00             dut.10.240.183.141: stop
01/09/2020 02:38:00             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 7 -> TX Port= 0/Queue= 7 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:38:00           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 7: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x88cc - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER_LLDP  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x7
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:38:02             dut.10.240.183.141: start
01/09/2020 02:38:02             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:38:02             dut.10.240.183.141: flow list 0
01/09/2020 02:38:02             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH => QUEUE
1	0	0	i--	ETH => QUEUE
2	0	0	i--	ETH => DROP
3	0	0	i--	ETH => QUEUE
4	0	0	i--	ETH => QUEUE
01/09/2020 02:38:02             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 02:38:03             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 02:38:03             dut.10.240.183.141: flow list 0
01/09/2020 02:38:03             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH => QUEUE
2	0	0	i--	ETH => DROP
3	0	0	i--	ETH => QUEUE
4	0	0	i--	ETH => QUEUE
01/09/2020 02:38:03             dut.10.240.183.141: flow flush 0
01/09/2020 02:38:03             dut.10.240.183.141: 
01/09/2020 02:38:03             dut.10.240.183.141: flow list 0
01/09/2020 02:38:03             dut.10.240.183.141: 
01/09/2020 02:38:03           TestGeneric_flow_api: Test Case test_ethertype_filter Result PASSED:
01/09/2020 02:38:03             dut.10.240.183.141: quit
01/09/2020 02:38:04             dut.10.240.183.141: 
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...
Done

Bye...
01/09/2020 02:38:06             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:38:07           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_basic_for_ipv4_other Begin
01/09/2020 02:38:07             dut.10.240.183.141: 
01/09/2020 02:38:07                         tester: 
01/09/2020 02:38:07             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:38:08             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_7380_20200901023552    -- -i --rxq=16 --txq=16
01/09/2020 02:38:09             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 02:38:19             dut.10.240.183.141: port config all rss all
01/09/2020 02:38:19             dut.10.240.183.141: 
Port 0 modified RSS hash function based on hardware support,requested:0x7f83fffc configured:0x7ef8
rss_hf 0x7f83fffc
01/09/2020 02:38:19             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:38:19             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:38:19             dut.10.240.183.141: set verbose 1
01/09/2020 02:38:20             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:38:20             dut.10.240.183.141: start
01/09/2020 02:38:20             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:38:22             dut.10.240.183.141: flow validate 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
01/09/2020 02:38:22             dut.10.240.183.141: 
01/09/2020 02:38:22             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
01/09/2020 02:38:22             dut.10.240.183.141: 
01/09/2020 02:38:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927902.2673962 root@10.240.183.89:/tmp/tester/
01/09/2020 02:38:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927902.2673962 root@10.240.183.89:/tmp/tester/
01/09/2020 02:38:25                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927902.2673962
01/09/2020 02:38:26                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:38:28             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

01/09/2020 02:38:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927908.799982 root@10.240.183.89:/tmp/tester/
01/09/2020 02:38:30                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927908.799982 root@10.240.183.89:/tmp/tester/
01/09/2020 02:38:32                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927908.799982
01/09/2020 02:38:33                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:38:35             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:38:35             dut.10.240.183.141: flow list 0
01/09/2020 02:38:35             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => MARK RSS
01/09/2020 02:38:35             dut.10.240.183.141: flow flush 0
01/09/2020 02:38:35             dut.10.240.183.141: 
01/09/2020 02:38:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927915.4044342 root@10.240.183.89:/tmp/tester/
01/09/2020 02:38:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927915.4044342 root@10.240.183.89:/tmp/tester/
01/09/2020 02:38:39                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927915.4044342
01/09/2020 02:38:39                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:38:41             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:38:41             dut.10.240.183.141: flow list 0
01/09/2020 02:38:41             dut.10.240.183.141: 
01/09/2020 02:38:41             dut.10.240.183.141: flow validate 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / end actions mark id 1 / rss / end
01/09/2020 02:38:42             dut.10.240.183.141: 
01/09/2020 02:38:42             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / end actions mark id 1 / rss / end
01/09/2020 02:38:42             dut.10.240.183.141: 
01/09/2020 02:38:42                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927922.0956092 root@10.240.183.89:/tmp/tester/
01/09/2020 02:38:43                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927922.0956092 root@10.240.183.89:/tmp/tester/
01/09/2020 02:38:45                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927922.0956092
01/09/2020 02:38:46                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:38:48             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

01/09/2020 02:38:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927928.5966413 root@10.240.183.89:/tmp/tester/
01/09/2020 02:38:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927928.5966413 root@10.240.183.89:/tmp/tester/
01/09/2020 02:38:52                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927928.5966413
01/09/2020 02:38:53                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:38:55             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=88:88:88:88:88:88 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:38:55             dut.10.240.183.141: flow list 0
01/09/2020 02:38:55             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => MARK RSS
01/09/2020 02:38:55             dut.10.240.183.141: flow flush 0
01/09/2020 02:38:55             dut.10.240.183.141: 
01/09/2020 02:38:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927935.2080274 root@10.240.183.89:/tmp/tester/
01/09/2020 02:38:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927935.2080274 root@10.240.183.89:/tmp/tester/
01/09/2020 02:38:58                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927935.2080274
01/09/2020 02:38:59                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:39:01             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:39:01             dut.10.240.183.141: flow list 0
01/09/2020 02:39:01             dut.10.240.183.141: 
01/09/2020 02:39:01             dut.10.240.183.141: flow validate 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
01/09/2020 02:39:01             dut.10.240.183.141: 
01/09/2020 02:39:01             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
01/09/2020 02:39:01             dut.10.240.183.141: 
01/09/2020 02:39:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927941.9290016 root@10.240.183.89:/tmp/tester/
01/09/2020 02:39:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927941.9290016 root@10.240.183.89:/tmp/tester/
01/09/2020 02:39:05                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927941.9290016
01/09/2020 02:39:06                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:39:08             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

01/09/2020 02:39:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927948.4200368 root@10.240.183.89:/tmp/tester/
01/09/2020 02:39:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927948.4200368 root@10.240.183.89:/tmp/tester/
01/09/2020 02:39:12                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927948.4200368
01/09/2020 02:39:12                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:39:14             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=88:88:88:88:88:88 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:39:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927954.907404 root@10.240.183.89:/tmp/tester/
01/09/2020 02:39:16                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927954.907404 root@10.240.183.89:/tmp/tester/
01/09/2020 02:39:18                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927954.907404
01/09/2020 02:39:19                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:39:21             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:39:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927961.3774123 root@10.240.183.89:/tmp/tester/
01/09/2020 02:39:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927961.3774123 root@10.240.183.89:/tmp/tester/
01/09/2020 02:39:25                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927961.3774123
01/09/2020 02:39:25                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:39:27             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=88:88:88:88:88:88 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:39:27             dut.10.240.183.141: flow list 0
01/09/2020 02:39:27             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => MARK RSS
01/09/2020 02:39:27             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 02:39:28             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 02:39:30             dut.10.240.183.141: 
01/09/2020 02:39:30             dut.10.240.183.141: flow list 0
01/09/2020 02:39:30             dut.10.240.183.141: 
01/09/2020 02:39:30           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_basic_for_ipv4_other Result PASSED:
01/09/2020 02:39:30             dut.10.240.183.141: quit
01/09/2020 02:39:31             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 10             TX-packets: 0              TX-dropped: 0             

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
01/09/2020 02:39:33             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:39:34           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_basic_for_ipv4_tcp Begin
01/09/2020 02:39:34             dut.10.240.183.141: 
01/09/2020 02:39:34                         tester: 
01/09/2020 02:39:34             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:39:35             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_7380_20200901023552    -- -i --rxq=16 --txq=16
01/09/2020 02:39:36             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 02:39:46             dut.10.240.183.141: port config all rss all
01/09/2020 02:39:46             dut.10.240.183.141: 
Port 0 modified RSS hash function based on hardware support,requested:0x7f83fffc configured:0x7ef8
rss_hf 0x7f83fffc
01/09/2020 02:39:46             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:39:46             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:39:46             dut.10.240.183.141: set verbose 1
01/09/2020 02:39:46             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:39:46             dut.10.240.183.141: start
01/09/2020 02:39:47             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:39:49             dut.10.240.183.141: flow validate 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / tcp / end actions mark id 1 / rss / end
01/09/2020 02:39:49             dut.10.240.183.141: 
01/09/2020 02:39:49             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / tcp / end actions mark id 1 / rss / end
01/09/2020 02:39:49             dut.10.240.183.141: 
01/09/2020 02:39:49                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927989.15277 root@10.240.183.89:/tmp/tester/
01/09/2020 02:39:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927989.15277 root@10.240.183.89:/tmp/tester/
01/09/2020 02:39:52                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927989.15277
01/09/2020 02:39:53                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
01/09/2020 02:39:55             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - FDIR matched ID=0x1 - 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=0x1
  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 

01/09/2020 02:39:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598927995.6650243 root@10.240.183.89:/tmp/tester/
01/09/2020 02:39:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598927995.6650243 root@10.240.183.89:/tmp/tester/
01/09/2020 02:39:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598927995.6650243
01/09/2020 02:40:00                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
01/09/2020 02:40:02             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:40:02             dut.10.240.183.141: flow list 0
01/09/2020 02:40:02             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 TCP => MARK RSS
01/09/2020 02:40:02             dut.10.240.183.141: flow flush 0
01/09/2020 02:40:02             dut.10.240.183.141: 
01/09/2020 02:40:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928002.303847 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928002.303847 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:05                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928002.303847
01/09/2020 02:40:06                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
01/09/2020 02:40:08             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:40:08             dut.10.240.183.141: flow list 0
01/09/2020 02:40:08             dut.10.240.183.141: 
01/09/2020 02:40:08             dut.10.240.183.141: flow validate 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / tcp / end actions mark id 1 / rss / end
01/09/2020 02:40:08             dut.10.240.183.141: 
01/09/2020 02:40:08             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / tcp / end actions mark id 1 / rss / end
01/09/2020 02:40:08             dut.10.240.183.141: 
01/09/2020 02:40:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928008.9920108 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928008.9920108 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:12                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928008.9920108
01/09/2020 02:40:13                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
01/09/2020 02:40:15             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - FDIR matched ID=0x1 - 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=0x1
  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 

01/09/2020 02:40:15                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928015.5424478 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:17                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928015.5424478 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:19                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928015.5424478
01/09/2020 02:40:20                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
01/09/2020 02:40:22             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=88:88:88:88:88:88 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:40:22             dut.10.240.183.141: flow list 0
01/09/2020 02:40:22             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 TCP => MARK RSS
01/09/2020 02:40:22             dut.10.240.183.141: flow flush 0
01/09/2020 02:40:22             dut.10.240.183.141: 
01/09/2020 02:40:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928022.1852856 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928022.1852856 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:25                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928022.1852856
01/09/2020 02:40:26                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
01/09/2020 02:40:28             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:40:28             dut.10.240.183.141: flow list 0
01/09/2020 02:40:28             dut.10.240.183.141: 
01/09/2020 02:40:28             dut.10.240.183.141: flow validate 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / tcp / end actions mark id 1 / rss / end
01/09/2020 02:40:28             dut.10.240.183.141: 
01/09/2020 02:40:28             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / tcp / end actions mark id 1 / rss / end
01/09/2020 02:40:28             dut.10.240.183.141: 
01/09/2020 02:40:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928028.9082508 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:30                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928028.9082508 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:32                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928028.9082508
01/09/2020 02:40:33                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
01/09/2020 02:40:35             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - FDIR matched ID=0x1 - 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=0x1
  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 

01/09/2020 02:40:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928035.4157758 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928035.4157758 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:39                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928035.4157758
01/09/2020 02:40:39                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
01/09/2020 02:40:41             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=88:88:88:88:88:88 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:40:42                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928042.0016983 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:43                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928042.0016983 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:45                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928042.0016983
01/09/2020 02:40:46                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
01/09/2020 02:40:48             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:40:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928048.4510777 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928048.4510777 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:52                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928048.4510777
01/09/2020 02:40:52                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
01/09/2020 02:40:54             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=88:88:88:88:88:88 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:40:54             dut.10.240.183.141: flow list 0
01/09/2020 02:40:54             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 TCP => MARK RSS
01/09/2020 02:40:54             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 02:40:55             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 02:40:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928055.060052 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928055.060052 root@10.240.183.89:/tmp/tester/
01/09/2020 02:40:58                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928055.060052
01/09/2020 02:40:59                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
01/09/2020 02:41:01             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:41:01             dut.10.240.183.141: flow list 0
01/09/2020 02:41:01             dut.10.240.183.141: 
01/09/2020 02:41:01           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_basic_for_ipv4_tcp Result PASSED:
01/09/2020 02:41:01             dut.10.240.183.141: quit
01/09/2020 02:41:03             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
01/09/2020 02:41:05             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:41:05           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_basic_for_ipv4_udp Begin
01/09/2020 02:41:05             dut.10.240.183.141: 
01/09/2020 02:41:06                         tester: 
01/09/2020 02:41:06             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:41:06             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_7380_20200901023552    -- -i --rxq=16 --txq=16
01/09/2020 02:41:08             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 02:41:18             dut.10.240.183.141: port config all rss all
01/09/2020 02:41:18             dut.10.240.183.141: 
Port 0 modified RSS hash function based on hardware support,requested:0x7f83fffc configured:0x7ef8
rss_hf 0x7f83fffc
01/09/2020 02:41:18             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:41:18             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:41:18             dut.10.240.183.141: set verbose 1
01/09/2020 02:41:18             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:41:18             dut.10.240.183.141: start
01/09/2020 02:41:18             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:41:20             dut.10.240.183.141: flow validate 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / udp / end actions mark id 1 / rss / end
01/09/2020 02:41:20             dut.10.240.183.141: 
01/09/2020 02:41:20             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / udp / end actions mark id 1 / rss / end
01/09/2020 02:41:20             dut.10.240.183.141: 
01/09/2020 02:41:20                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928080.632698 root@10.240.183.89:/tmp/tester/
01/09/2020 02:41:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928080.632698 root@10.240.183.89:/tmp/tester/
01/09/2020 02:41:24                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928080.632698
01/09/2020 02:41:25                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
01/09/2020 02:41:27             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - FDIR matched ID=0x1 - 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=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 

01/09/2020 02:41:27                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928087.1288285 root@10.240.183.89:/tmp/tester/
01/09/2020 02:41:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928087.1288285 root@10.240.183.89:/tmp/tester/
01/09/2020 02:41:30                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928087.1288285
01/09/2020 02:41:31                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
01/09/2020 02:41:33             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:41:33             dut.10.240.183.141: flow list 0
01/09/2020 02:41:33             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP => MARK RSS
01/09/2020 02:41:33             dut.10.240.183.141: flow flush 0
01/09/2020 02:41:33             dut.10.240.183.141: 
01/09/2020 02:41:33                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928093.7808292 root@10.240.183.89:/tmp/tester/
01/09/2020 02:41:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928093.7808292 root@10.240.183.89:/tmp/tester/
01/09/2020 02:41:37                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928093.7808292
01/09/2020 02:41:38                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
01/09/2020 02:41:40             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:41:40             dut.10.240.183.141: flow list 0
01/09/2020 02:41:40             dut.10.240.183.141: 
01/09/2020 02:41:40             dut.10.240.183.141: flow validate 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / udp / end actions mark id 1 / rss / end
01/09/2020 02:41:40             dut.10.240.183.141: 
01/09/2020 02:41:40             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / udp / end actions mark id 1 / rss / end
01/09/2020 02:41:40             dut.10.240.183.141: 
01/09/2020 02:41:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928100.474902 root@10.240.183.89:/tmp/tester/
01/09/2020 02:41:42                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928100.474902 root@10.240.183.89:/tmp/tester/
01/09/2020 02:41:44                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928100.474902
01/09/2020 02:41:44                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
01/09/2020 02:41:46             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - FDIR matched ID=0x1 - 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=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 

01/09/2020 02:41:46                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928106.9128625 root@10.240.183.89:/tmp/tester/
01/09/2020 02:41:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928106.9128625 root@10.240.183.89:/tmp/tester/
01/09/2020 02:41:50                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928106.9128625
01/09/2020 02:41:51                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
01/09/2020 02:41:53             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=88:88:88:88:88:88 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:41:53             dut.10.240.183.141: flow list 0
01/09/2020 02:41:53             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP => MARK RSS
01/09/2020 02:41:53             dut.10.240.183.141: flow flush 0
01/09/2020 02:41:53             dut.10.240.183.141: 
01/09/2020 02:41:53                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928113.6113904 root@10.240.183.89:/tmp/tester/
01/09/2020 02:41:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928113.6113904 root@10.240.183.89:/tmp/tester/
01/09/2020 02:41:57                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928113.6113904
01/09/2020 02:41:58                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
01/09/2020 02:42:00             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:42:00             dut.10.240.183.141: flow list 0
01/09/2020 02:42:00             dut.10.240.183.141: 
01/09/2020 02:42:00             dut.10.240.183.141: flow validate 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / udp / end actions mark id 1 / rss / end
01/09/2020 02:42:00             dut.10.240.183.141: 
01/09/2020 02:42:00             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / udp / end actions mark id 1 / rss / end
01/09/2020 02:42:00             dut.10.240.183.141: 
01/09/2020 02:42:00                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928120.3030443 root@10.240.183.89:/tmp/tester/
01/09/2020 02:42:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928120.3030443 root@10.240.183.89:/tmp/tester/
01/09/2020 02:42:04                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928120.3030443
01/09/2020 02:42:04                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
01/09/2020 02:42:06             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - FDIR matched ID=0x1 - 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=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 

01/09/2020 02:42:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928126.8130789 root@10.240.183.89:/tmp/tester/
01/09/2020 02:42:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928126.8130789 root@10.240.183.89:/tmp/tester/
01/09/2020 02:42:10                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928126.8130789
01/09/2020 02:42:11                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
01/09/2020 02:42:13             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=88:88:88:88:88:88 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:42:13                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928133.3343256 root@10.240.183.89:/tmp/tester/
01/09/2020 02:42:15                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928133.3343256 root@10.240.183.89:/tmp/tester/
01/09/2020 02:42:16                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928133.3343256
01/09/2020 02:42:17                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
01/09/2020 02:42:19             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:42:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928139.8224165 root@10.240.183.89:/tmp/tester/
01/09/2020 02:42:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928139.8224165 root@10.240.183.89:/tmp/tester/
01/09/2020 02:42:23                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928139.8224165
01/09/2020 02:42:24                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
01/09/2020 02:42:26             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=88:88:88:88:88:88 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:42:26             dut.10.240.183.141: flow list 0
01/09/2020 02:42:26             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP => MARK RSS
01/09/2020 02:42:26             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 02:42:26             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 02:42:26                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928146.452466 root@10.240.183.89:/tmp/tester/
01/09/2020 02:42:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928146.452466 root@10.240.183.89:/tmp/tester/
01/09/2020 02:42:30                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928146.452466
01/09/2020 02:42:30                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
01/09/2020 02:42:32             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:42:32             dut.10.240.183.141: flow list 0
01/09/2020 02:42:33             dut.10.240.183.141: 
01/09/2020 02:42:33           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_basic_for_ipv4_udp Result PASSED:
01/09/2020 02:42:33             dut.10.240.183.141: quit
01/09/2020 02:42:34             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
01/09/2020 02:42:36             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:42:37           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_complex Begin
01/09/2020 02:42:37             dut.10.240.183.141: 
01/09/2020 02:42:37                         tester: 
01/09/2020 02:42:37             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:42:38             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_7380_20200901023552    -- -i --rxq=16 --txq=16
01/09/2020 02:42:39             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 02:42:49             dut.10.240.183.141: port config all rss all
01/09/2020 02:42:49             dut.10.240.183.141: 
Port 0 modified RSS hash function based on hardware support,requested:0x7f83fffc configured:0x7ef8
rss_hf 0x7f83fffc
01/09/2020 02:42:49             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:42:49             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:42:49             dut.10.240.183.141: set verbose 1
01/09/2020 02:42:49             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:42:49             dut.10.240.183.141: start
01/09/2020 02:42:49             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:42:51             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
01/09/2020 02:42:52             dut.10.240.183.141: 
01/09/2020 02:42:52             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 22:22:22:22:22:22 / ipv4 / end actions mark id 2 / rss / end
01/09/2020 02:42:52             dut.10.240.183.141: 
01/09/2020 02:42:52             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 33:33:33:33:33:33 / ipv4 / end actions mark id 3 / rss / end
01/09/2020 02:42:52             dut.10.240.183.141: 
01/09/2020 02:42:52             dut.10.240.183.141: flow list 0
01/09/2020 02:42:52             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => MARK RSS
1	0	0	i--	ETH IPV4 => MARK RSS
2	0	0	i--	ETH IPV4 => MARK RSS
01/09/2020 02:42:52                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928172.2204556 root@10.240.183.89:/tmp/tester/
01/09/2020 02:42:54                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928172.2204556 root@10.240.183.89:/tmp/tester/
01/09/2020 02:42:55                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928172.2204556
01/09/2020 02:42:56                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:42:58             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

01/09/2020 02:42:58                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928178.7007716 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:00                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928178.7007716 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:02                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928178.7007716
01/09/2020 02:43:03                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:43:05             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

01/09/2020 02:43:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928185.2293003 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:07                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928185.2293003 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:08                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928185.2293003
01/09/2020 02:43:09                         tester: packet ready for sending...
Ether(dst='33:33:33:33:33:33', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:43:11             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=33:33:33:33:33:33 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

01/09/2020 02:43:11             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 02:43:11             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 02:43:11             dut.10.240.183.141: flow list 0
01/09/2020 02:43:11             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 => MARK RSS
2	0	0	i--	ETH IPV4 => MARK RSS
01/09/2020 02:43:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928191.8653839 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:13                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928191.8653839 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:15                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928191.8653839
01/09/2020 02:43:16                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:43:18             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:43:18                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928198.3945448 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:20                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928198.3945448 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:22                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928198.3945448
01/09/2020 02:43:22                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:43:24             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

01/09/2020 02:43:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928204.8906474 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:26                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928204.8906474 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:28                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928204.8906474
01/09/2020 02:43:29                         tester: packet ready for sending...
Ether(dst='33:33:33:33:33:33', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:43:31             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=33:33:33:33:33:33 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

01/09/2020 02:43:31             dut.10.240.183.141: flow flush 0
01/09/2020 02:43:31             dut.10.240.183.141: 
01/09/2020 02:43:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928211.4318135 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:33                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928211.4318135 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:35                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928211.4318135
01/09/2020 02:43:36                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:43:38             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:43:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928218.0106752 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928218.0106752 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:41                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928218.0106752
01/09/2020 02:43:42                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:43:44             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:43:44                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928224.552688 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:46                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928224.552688 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:48                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928224.552688
01/09/2020 02:43:49                         tester: packet ready for sending...
Ether(dst='33:33:33:33:33:33', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:43:51             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=33:33:33:33:33:33 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:43:51             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
01/09/2020 02:43:51             dut.10.240.183.141: 
01/09/2020 02:43:51             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 22:22:22:22:22:22 / ipv4 / end actions mark id 2 / rss / end
01/09/2020 02:43:51             dut.10.240.183.141: 
01/09/2020 02:43:51             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 33:33:33:33:33:33 / ipv4 / end actions mark id 3 / rss / end
01/09/2020 02:43:51             dut.10.240.183.141: 
01/09/2020 02:43:51             dut.10.240.183.141: flow destroy 0 rule 1
01/09/2020 02:43:51             dut.10.240.183.141: 
Flow rule #1 destroyed
01/09/2020 02:43:51             dut.10.240.183.141: flow list 0
01/09/2020 02:43:51             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => MARK RSS
2	0	0	i--	ETH IPV4 => MARK RSS
01/09/2020 02:43:51                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928231.3658173 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:53                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928231.3658173 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:55                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928231.3658173
01/09/2020 02:43:55                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:43:57             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

01/09/2020 02:43:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928237.8555524 root@10.240.183.89:/tmp/tester/
01/09/2020 02:43:59                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928237.8555524 root@10.240.183.89:/tmp/tester/
01/09/2020 02:44:01                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928237.8555524
01/09/2020 02:44:02                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:44:04             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:44:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928244.3458676 root@10.240.183.89:/tmp/tester/
01/09/2020 02:44:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928244.3458676 root@10.240.183.89:/tmp/tester/
01/09/2020 02:44:08                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928244.3458676
01/09/2020 02:44:08                         tester: packet ready for sending...
Ether(dst='33:33:33:33:33:33', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:44:10             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=33:33:33:33:33:33 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

01/09/2020 02:44:10             dut.10.240.183.141: flow flush 0
01/09/2020 02:44:10             dut.10.240.183.141: 
01/09/2020 02:44:10             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
01/09/2020 02:44:11             dut.10.240.183.141: 
01/09/2020 02:44:11             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 22:22:22:22:22:22 / ipv4 / end actions mark id 2 / rss / end
01/09/2020 02:44:11             dut.10.240.183.141: 
01/09/2020 02:44:11             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 33:33:33:33:33:33 / ipv4 / end actions mark id 3 / rss / end
01/09/2020 02:44:11             dut.10.240.183.141: 
01/09/2020 02:44:11             dut.10.240.183.141: flow destroy 0 rule 2
01/09/2020 02:44:11             dut.10.240.183.141: 
Flow rule #2 destroyed
01/09/2020 02:44:11             dut.10.240.183.141: flow list 0
01/09/2020 02:44:11             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => MARK RSS
1	0	0	i--	ETH IPV4 => MARK RSS
01/09/2020 02:44:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928251.269319 root@10.240.183.89:/tmp/tester/
01/09/2020 02:44:13                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928251.269319 root@10.240.183.89:/tmp/tester/
01/09/2020 02:44:14                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928251.269319
01/09/2020 02:44:15                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:44:17             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

01/09/2020 02:44:17                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928257.7096932 root@10.240.183.89:/tmp/tester/
01/09/2020 02:44:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928257.7096932 root@10.240.183.89:/tmp/tester/
01/09/2020 02:44:21                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928257.7096932
01/09/2020 02:44:22                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:44:24             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

01/09/2020 02:44:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928264.2696466 root@10.240.183.89:/tmp/tester/
01/09/2020 02:44:26                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928264.2696466 root@10.240.183.89:/tmp/tester/
01/09/2020 02:44:27                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928264.2696466
01/09/2020 02:44:28                         tester: packet ready for sending...
Ether(dst='33:33:33:33:33:33', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
01/09/2020 02:44:30             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=33:33:33:33:33:33 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:44:30             dut.10.240.183.141: flow flush 0
01/09/2020 02:44:30             dut.10.240.183.141: 
01/09/2020 02:44:30           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_complex Result PASSED:
01/09/2020 02:44:30             dut.10.240.183.141: quit
01/09/2020 02:44:32             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 15             TX-packets: 0              TX-dropped: 0             

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
01/09/2020 02:44:34             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:44:35           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_negative Begin
01/09/2020 02:44:35             dut.10.240.183.141: 
01/09/2020 02:44:35                         tester: 
01/09/2020 02:44:35             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:44:35             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_7380_20200901023552    -- -i --rxq=16 --txq=16
01/09/2020 02:44:37             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 02:44:47             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:44:47             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:44:47             dut.10.240.183.141: set verbose 1
01/09/2020 02:44:47             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:44:47             dut.10.240.183.141: start
01/09/2020 02:44:47             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:44:49             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 dst is 1.1.1.1 / end actions mark id 2 / rss / end
01/09/2020 02:44:49             dut.10.240.183.141: 
01/09/2020 02:44:49             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / udp dst is 111 / end actions mark id 2 / rss / end
01/09/2020 02:44:49             dut.10.240.183.141: 
01/09/2020 02:44:49             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / tcp dst is 111 / end actions mark id 2 / rss / end
01/09/2020 02:44:49             dut.10.240.183.141: 
01/09/2020 02:44:49             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 3 / rss / end
01/09/2020 02:44:49             dut.10.240.183.141: 
01/09/2020 02:44:49             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / end actions mark id 1 / rss / end
01/09/2020 02:44:50             dut.10.240.183.141: 
01/09/2020 02:44:50             dut.10.240.183.141: flow flush 0
01/09/2020 02:44:50             dut.10.240.183.141: 
01/09/2020 02:44:50             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / end actions mark id 1 / rss / end
01/09/2020 02:44:50             dut.10.240.183.141: 
01/09/2020 02:44:50             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
01/09/2020 02:44:50             dut.10.240.183.141: 
01/09/2020 02:44:50             dut.10.240.183.141: flow flush 0
01/09/2020 02:44:50             dut.10.240.183.141: 
01/09/2020 02:44:50             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
01/09/2020 02:44:50             dut.10.240.183.141: 
01/09/2020 02:44:50             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 3 / rss / end
01/09/2020 02:44:50             dut.10.240.183.141: 
01/09/2020 02:44:50           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_negative Result PASSED:
01/09/2020 02:44:50             dut.10.240.183.141: quit
01/09/2020 02:44:52             dut.10.240.183.141: 
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...
Done

Bye...
01/09/2020 02:44:54             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:44:54           TestGeneric_flow_api: Test Case test_fdir_for_L2_payload Begin
01/09/2020 02:44:54             dut.10.240.183.141: 
01/09/2020 02:44:54                         tester: 
01/09/2020 02:44:54             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:44:55             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_7380_20200901023552    -- -i --pkt-filter-mode=perfect --rxq=16 --txq=16
01/09/2020 02:44:57             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 02:45:07             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:45:07             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:45:07             dut.10.240.183.141: set verbose 1
01/09/2020 02:45:07             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:45:07             dut.10.240.183.141: start
01/09/2020 02:45:07             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:45:09             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3586  / end actions queue index 13 /  end
01/09/2020 02:45:09             dut.10.240.183.141: 
01/09/2020 02:45:09                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928309.3495355 root@10.240.183.89:/tmp/tester/
01/09/2020 02:45:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928309.3495355 root@10.240.183.89:/tmp/tester/
01/09/2020 02:45:13                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928309.3495355
01/09/2020 02:45:13                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3586, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:45:15             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:45:15             dut.10.240.183.141: stop
01/09/2020 02:45:15             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:45:15           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:45:17             dut.10.240.183.141: start
01/09/2020 02:45:18             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:45:18             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x8864  / end actions queue index 3 /  end
01/09/2020 02:45:18             dut.10.240.183.141: 
01/09/2020 02:45:18                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928318.0920162 root@10.240.183.89:/tmp/tester/
01/09/2020 02:45:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928318.0920162 root@10.240.183.89:/tmp/tester/
01/09/2020 02:45:21                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928318.0920162
01/09/2020 02:45:22                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=34916)/PPPoE(version=7, type=8, code=120, sessionid=30840, len=30840)/Raw(load=b'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:45:24             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8864 - length=60 - nb_segs=1 - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:45:24             dut.10.240.183.141: stop
01/09/2020 02:45:24             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
01/09/2020 02:45:24           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8864 - length=60 - nb_segs=1 - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:45:26             dut.10.240.183.141: start
01/09/2020 02:45:26             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:45:26             dut.10.240.183.141: flow list 0
01/09/2020 02:45:26             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH VLAN => QUEUE
1	0	0	i--	ETH => QUEUE
01/09/2020 02:45:26             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 02:45:26             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 02:45:26             dut.10.240.183.141: flow list 0
01/09/2020 02:45:26             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH => QUEUE
01/09/2020 02:45:26             dut.10.240.183.141: flow flush 0
01/09/2020 02:45:27             dut.10.240.183.141: 
01/09/2020 02:45:27             dut.10.240.183.141: flow list 0
01/09/2020 02:45:27             dut.10.240.183.141: 
01/09/2020 02:45:27           TestGeneric_flow_api: Test Case test_fdir_for_L2_payload Result PASSED:
01/09/2020 02:45:27             dut.10.240.183.141: quit
01/09/2020 02:45:28             dut.10.240.183.141: 
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...
Done

Bye...
01/09/2020 02:45:30             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:45:31           TestGeneric_flow_api: Test Case test_fdir_for_flexbytes Begin
01/09/2020 02:45:31             dut.10.240.183.141: 
01/09/2020 02:45:31                         tester: 
01/09/2020 02:45:31             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:45:32             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_7380_20200901023552    -- -i --pkt-filter-mode=perfect --disable-rss --rxq=16 --txq=16
01/09/2020 02:45:33             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 02:45:43             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:45:43             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:45:43             dut.10.240.183.141: set verbose 1
01/09/2020 02:45:43             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:45:43             dut.10.240.183.141: start
01/09/2020 02:45:43             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:45:45             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x0807 / raw relative is 1 pattern is abcdefghijklmnopq / end actions queue index 1 / end
01/09/2020 02:45:46             dut.10.240.183.141: 
01/09/2020 02:45:46             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x0807 / raw relative is 1 pattern is abcdefghijklmnop / end actions queue index 1 / end
01/09/2020 02:45:46             dut.10.240.183.141: 
i40e_flow_set_fdir_flex_pit(): i40e device 0000:84:00.0 changed global register [0x00268984]. original: 0x00000000, new: 0x000000a0 
01/09/2020 02:45:46             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 4095 / ipv4 proto is 255 ttl is 40 / raw relative is 1 offset is 2 pattern is ab / raw relative is 1 offset is 10 pattern is abcdefghij / raw relative is 1 offset is 0 pattern is abcd / end actions queue index 2 / end
01/09/2020 02:45:46             dut.10.240.183.141: 
i40e_flow_set_fdir_flex_pit(): i40e device 0000:84:00.0 changed global register [0x00268988]. original: 0x00000000, new: 0x000000e3 
01/09/2020 02:45:46             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 src is 2.2.2.4 dst is 2.2.2.5 / udp src is 22 dst is 23 / raw relative is 1 offset is 2 pattern is fhds / end actions queue index 3 / end
01/09/2020 02:45:46             dut.10.240.183.141: 
i40e_flow_set_fdir_flex_pit(): i40e device 0000:84:00.0 changed global register [0x0026898c]. original: 0x00000000, new: 0x000000a6 
01/09/2020 02:45:46             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 src is 2.2.2.4 dst is 2.2.2.5 tos is 4 ttl is 3 / tcp src is 32 dst is 33 / raw relative is 1 offset is 2 pattern is hijk / end actions queue index 4 / end
01/09/2020 02:45:46             dut.10.240.183.141: 
01/09/2020 02:45:46             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 src is 2.2.2.4 dst is 2.2.2.5 / sctp src is 42 / raw relative is 1 offset is 2 pattern is abcd / end actions queue index 5 / end
01/09/2020 02:45:46             dut.10.240.183.141: 
01/09/2020 02:45:46                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928346.3458927 root@10.240.183.89:/tmp/tester/
01/09/2020 02:45:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928346.3458927 root@10.240.183.89:/tmp/tester/
01/09/2020 02:45:50                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928346.3458927
01/09/2020 02:45:50                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2055)/Raw(load=b'abcdefghijklmnop')
01/09/2020 02:45:52             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0807 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:45:52             dut.10.240.183.141: stop
01/09/2020 02:45:52             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 0/Queue= 1 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:45:52           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0807 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:45:54             dut.10.240.183.141: start
01/09/2020 02:45:55             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:45:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928355.0511127 root@10.240.183.89:/tmp/tester/
01/09/2020 02:45:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928355.0511127 root@10.240.183.89:/tmp/tester/
01/09/2020 02:45:58                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928355.0511127
01/09/2020 02:45:59                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=4095, type=2048)/IP(version=4, ihl=5, tos=0, len=51, id=1, flags=0, frag=0, ttl=40, proto=255, chksum=4216, src='192.168.0.1', dst='192.168.0.2')/Raw(load=b'xxabxxxxxxxxxxabcdefghijabcdefg')
01/09/2020 02:46:01             dut.10.240.183.141: port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=69 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:46:01             dut.10.240.183.141: stop
01/09/2020 02:46:01             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:46:01           TestGeneric_flow_api: pf: port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=69 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:46:03             dut.10.240.183.141: start
01/09/2020 02:46:03             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:46:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928363.6303232 root@10.240.183.89:/tmp/tester/
01/09/2020 02:46:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928363.6303232 root@10.240.183.89:/tmp/tester/
01/09/2020 02:46:07                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928363.6303232
01/09/2020 02:46:08                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=29368, src='2.2.2.4', dst='2.2.2.5')/UDP(sport=22, dport=23, len=20, chksum=38391)/Raw(load=b'fhfhdsdsfwef')
01/09/2020 02:46:10             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:46:10             dut.10.240.183.141: stop
01/09/2020 02:46:10             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
01/09/2020 02:46:10           TestGeneric_flow_api: pf: port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:46:12             dut.10.240.183.141: start
01/09/2020 02:46:12             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:46:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928372.274753 root@10.240.183.89:/tmp/tester/
01/09/2020 02:46:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928372.274753 root@10.240.183.89:/tmp/tester/
01/09/2020 02:46:15                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928372.274753
01/09/2020 02:46:16                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=4, len=46, id=1, flags=0, frag=0, ttl=3, proto=6, chksum=44985, src='2.2.2.4', dst='2.2.2.5')/TCP(sport=32, dport=33, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=20050, urgptr=0)/Raw(load=b'fhhijk')
01/09/2020 02:46:18             dut.10.240.183.141: port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:46:18             dut.10.240.183.141: stop
01/09/2020 02:46:18             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:46:18           TestGeneric_flow_api: pf: port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:46:20             dut.10.240.183.141: start
01/09/2020 02:46:20             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:46:20                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928380.9609647 root@10.240.183.89:/tmp/tester/
01/09/2020 02:46:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928380.9609647 root@10.240.183.89:/tmp/tester/
01/09/2020 02:46:24                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928380.9609647
01/09/2020 02:46:25                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=54, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=29239, src='2.2.2.4', dst='2.2.2.5')/SCTP(sport=42, dport=43, tag=1, chksum=2658454541)/Raw(load=b'xxabcdefghijklmnopqrst')
01/09/2020 02:46:27             dut.10.240.183.141: port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=68 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:46:27             dut.10.240.183.141: stop
01/09/2020 02:46:27             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:46:27           TestGeneric_flow_api: pf: port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=68 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:46:29             dut.10.240.183.141: start
01/09/2020 02:46:29             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:46:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928389.599989 root@10.240.183.89:/tmp/tester/
01/09/2020 02:46:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928389.599989 root@10.240.183.89:/tmp/tester/
01/09/2020 02:46:33                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928389.599989
01/09/2020 02:46:34                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=29233, src='2.2.2.4', dst='2.2.2.5')/SCTP(sport=42, dport=43, tag=1, chksum=1347706896)/Raw(load=b'xxabxxxabcddxxabcdefghijklmn')
01/09/2020 02:46:36             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x0800 - length=74 - 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 

01/09/2020 02:46:36             dut.10.240.183.141: stop
01/09/2020 02:46:36             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:46:36           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x0800 - length=74 - 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 

01/09/2020 02:46:38             dut.10.240.183.141: start
01/09/2020 02:46:38             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:46:38             dut.10.240.183.141: flow list 0
01/09/2020 02:46:38             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH RAW => QUEUE
1	0	0	i--	ETH VLAN IPV4 RAW RAW RAW => QUEUE
2	0	0	i--	ETH IPV4 UDP RAW => QUEUE
3	0	0	i--	ETH IPV4 TCP RAW => QUEUE
4	0	0	i--	ETH IPV4 SCTP RAW => QUEUE
01/09/2020 02:46:38             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 02:46:38             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 02:46:38             dut.10.240.183.141: flow list 0
01/09/2020 02:46:38             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH VLAN IPV4 RAW RAW RAW => QUEUE
2	0	0	i--	ETH IPV4 UDP RAW => QUEUE
3	0	0	i--	ETH IPV4 TCP RAW => QUEUE
4	0	0	i--	ETH IPV4 SCTP RAW => QUEUE
01/09/2020 02:46:38             dut.10.240.183.141: flow flush 0
01/09/2020 02:46:38             dut.10.240.183.141: 
01/09/2020 02:46:38             dut.10.240.183.141: flow list 0
01/09/2020 02:46:38             dut.10.240.183.141: 
01/09/2020 02:46:38             dut.10.240.183.141: quit
01/09/2020 02:46:40             dut.10.240.183.141: 
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...
i40e_flex_payload_reg_set_default(): i40e device 0000:84:00.0 changed global register [0x00268984]. original: 0x000000a0, new: 0x00000000 
i40e_flex_payload_reg_set_default(): i40e device 0000:84:00.0 changed global register [0x00268988]. original: 0x000000e3, new: 0x00000000 
i40e_flex_payload_reg_set_default(): i40e device 0000:84:00.0 changed global register [0x0026898c]. original: 0x000000a6, new: 0x00000000 
Done

Bye...
01/09/2020 02:46:42             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_7380_20200901023552   --socket-mem 1024,1024  -- -i --pkt-filter-mode=perfect --disable-rss --rxq=16 --txq=16
01/09/2020 02:46:43             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267308]. original: 0x0009ff00, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x0026730c]. original: 0x000d00ff, new: 0x00000000
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 02:46:53             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:46:53             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:46:53             dut.10.240.183.141: set verbose 1
01/09/2020 02:46:53             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:46:53             dut.10.240.183.141: start
01/09/2020 02:46:53             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:46:55             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 1 / ipv6 src is 2001::1 dst is 2001::2 tc is 3 hop is 30 / tcp src is 32 dst is 33 / raw relative is 1 offset is 0 pattern is hijk / raw relative is 1 offset is 8 pattern is abcdefgh / end actions queue index 6 / end
01/09/2020 02:46:56             dut.10.240.183.141: 
i40e_flow_set_fdir_flex_pit(): i40e device 0000:84:00.0 changed global register [0x0026898c]. original: 0x00000000, new: 0x000000c6 
01/09/2020 02:46:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928416.0569658 root@10.240.183.89:/tmp/tester/
01/09/2020 02:46:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928416.0569658 root@10.240.183.89:/tmp/tester/
01/09/2020 02:46:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928416.0569658
01/09/2020 02:47:00                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=1, type=34525)/IPv6(version=6, tc=3, fl=0, plen=46, nh=6, hlim=30, src='2001::1', dst='2001::2')/TCP(sport=32, dport=33, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=5950, urgptr=0)/Raw(load=b'hijkabcdefghabcdefghijklmn')
01/09/2020 02:47:02             dut.10.240.183.141: 
testpmd> port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=104 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:47:02             dut.10.240.183.141: stop
01/09/2020 02:47:02             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:47:02           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=104 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:47:04             dut.10.240.183.141: start
01/09/2020 02:47:04             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:47:04           TestGeneric_flow_api: Test Case test_fdir_for_flexbytes Result PASSED:
01/09/2020 02:47:04             dut.10.240.183.141: quit
01/09/2020 02:47:06             dut.10.240.183.141: 
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: link state change event
i40e_flex_payload_reg_set_default(): i40e device 0000:84:00.0 changed global register [0x0026898c]. original: 0x000000c6, new: 0x00000000 
Done

Bye...
01/09/2020 02:47:08             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:47:08           TestGeneric_flow_api: Test Case test_fdir_for_ipv4 Begin
01/09/2020 02:47:08             dut.10.240.183.141: 
01/09/2020 02:47:08                         tester: 
01/09/2020 02:47:08             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:47:09             dut.10.240.183.141: modprobe uio
01/09/2020 02:47:09             dut.10.240.183.141: 
01/09/2020 02:47:09             dut.10.240.183.141: insmod ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko
01/09/2020 02:47:09             dut.10.240.183.141: 
01/09/2020 02:47:09             dut.10.240.183.141: modprobe vfio-pci
01/09/2020 02:47:09             dut.10.240.183.141: 
01/09/2020 02:47:13             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.0/vendor
01/09/2020 02:47:13             dut.10.240.183.141: 0x8086
01/09/2020 02:47:13             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.0/device
01/09/2020 02:47:13             dut.10.240.183.141: 0x154c
01/09/2020 02:47:13             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.0/vendor
01/09/2020 02:47:13             dut.10.240.183.141: 0x8086
01/09/2020 02:47:13             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.0/device
01/09/2020 02:47:13             dut.10.240.183.141: 0x154c
01/09/2020 02:47:13             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.1/vendor
01/09/2020 02:47:14             dut.10.240.183.141: 0x8086
01/09/2020 02:47:14             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.1/device
01/09/2020 02:47:14             dut.10.240.183.141: 0x154c
01/09/2020 02:47:14             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.1/vendor
01/09/2020 02:47:14             dut.10.240.183.141: 0x8086
01/09/2020 02:47:14             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.1/device
01/09/2020 02:47:14             dut.10.240.183.141: 0x154c
01/09/2020 02:47:16             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_7380_20200901023552   --socket-mem 1024,1024 --legacy-mem  -- -i --pkt-filter-mode=perfect --disable-rss --rxq=16 --txq=16
01/09/2020 02:47:19             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267358]. original: 0x0009f00f, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x0026735c]. original: 0x000cff00, new: 0x00000000
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 02:47:30             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:47:30             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:47:30             dut.10.240.183.141: set verbose 1
01/09/2020 02:47:30             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:47:30             dut.10.240.183.141: start
01/09/2020 02:47:30             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:47:43             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 219.200.16.198 src is 205.162.189.194 proto is 255  / end actions queue index 2 /  end
01/09/2020 02:47:43             dut.10.240.183.141: 
01/09/2020 02:47:43                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928463.0676792 root@10.240.183.89:/tmp/tester/
01/09/2020 02:47:44                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928463.0676792 root@10.240.183.89:/tmp/tester/
01/09/2020 02:47:46                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928463.0676792
01/09/2020 02:47:47                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=255, chksum=483, src='205.162.189.194', dst='219.200.16.198')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:47:51           TestGeneric_flow_api: vf0:  
01/09/2020 02:47:51           TestGeneric_flow_api: vf1:  
01/09/2020 02:47:53             dut.10.240.183.141: 
testpmd> port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:47:53             dut.10.240.183.141: stop
01/09/2020 02:47:53             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:47:53           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:47:55             dut.10.240.183.141: start
01/09/2020 02:47:55             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:47:56             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 164.171.124.21 src is 119.238.154.239 ttl is 248 / udp dst is 23012 src is 14927  / end actions queue index 0 /  end
01/09/2020 02:47:56             dut.10.240.183.141: 
01/09/2020 02:47:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928476.2798648 root@10.240.183.89:/tmp/tester/
01/09/2020 02:47:58                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928476.2798648 root@10.240.183.89:/tmp/tester/
01/09/2020 02:47:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928476.2798648
01/09/2020 02:48:00                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=248, proto=17, chksum=36637, src='119.238.154.239', dst='164.171.124.21')/UDP(sport=14927, dport=23012, len=28, chksum=33583)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:48:05           TestGeneric_flow_api: vf0: 
01/09/2020 02:48:05           TestGeneric_flow_api: vf1: 
01/09/2020 02:48:07             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:48:07             dut.10.240.183.141: stop
01/09/2020 02:48:07             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:48:07           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:48:09             dut.10.240.183.141: start
01/09/2020 02:48:09             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:48:09             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 61.188.160.40 src is 232.163.39.206 tos is 202 / tcp dst is 3723 src is 37084  / end actions queue index 8 /  end
01/09/2020 02:48:09             dut.10.240.183.141: 
01/09/2020 02:48:09                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928489.54442 root@10.240.183.89:/tmp/tester/
01/09/2020 02:48:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928489.54442 root@10.240.183.89:/tmp/tester/
01/09/2020 02:48:13                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928489.54442
01/09/2020 02:48:14                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=202, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=35739, src='232.163.39.206', dst='61.188.160.40')/TCP(sport=37084, dport=3723, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=19804, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:48:18           TestGeneric_flow_api: vf0: 
01/09/2020 02:48:18           TestGeneric_flow_api: vf1: 
01/09/2020 02:48:20             dut.10.240.183.141: 
testpmd> port 0/queue 8: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x8
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:48:20             dut.10.240.183.141: stop
01/09/2020 02:48:20             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:48:20           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 8: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x8
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:48:22             dut.10.240.183.141: start
01/09/2020 02:48:22             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:48:22             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3470 / ipv4 dst is 207.6.35.28 src is 183.83.121.92 tos is 7 ttl is 38 / sctp dst is 386 src is 47990 tag is 1  / end actions queue index 4 /  end
01/09/2020 02:48:22             dut.10.240.183.141: 
01/09/2020 02:48:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928502.8178678 root@10.240.183.89:/tmp/tester/
01/09/2020 02:48:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928502.8178678 root@10.240.183.89:/tmp/tester/
01/09/2020 02:48:26                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928502.8178678
01/09/2020 02:48:27                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3470, type=2048)/IP(version=4, ihl=5, tos=7, len=52, id=1, flags=0, frag=0, ttl=38, proto=132, chksum=29036, src='183.83.121.92', dst='207.6.35.28')/SCTP(sport=47990, dport=386, tag=1, chksum=249745693)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:48:31           TestGeneric_flow_api: vf0: 
01/09/2020 02:48:31           TestGeneric_flow_api: vf1: 
01/09/2020 02:48:33             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:48:33             dut.10.240.183.141: stop
01/09/2020 02:48:33             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:48:33           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:48:35             dut.10.240.183.141: start
01/09/2020 02:48:35             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:48:35             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3039 / ipv4 dst is 129.175.158.73 src is 238.181.99.1 tos is 240 ttl is 169 / sctp dst is 57522 src is 1687 tag is 1  / end actions drop /  end
01/09/2020 02:48:35             dut.10.240.183.141: 
01/09/2020 02:48:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928515.9803164 root@10.240.183.89:/tmp/tester/
01/09/2020 02:48:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928515.9803164 root@10.240.183.89:/tmp/tester/
01/09/2020 02:48:39                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928515.9803164
01/09/2020 02:48:40                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3039, type=2048)/IP(version=4, ihl=5, tos=240, len=52, id=1, flags=0, frag=0, ttl=169, proto=132, chksum=40613, src='238.181.99.1', dst='129.175.158.73')/SCTP(sport=1687, dport=57522, tag=1, chksum=1600615838)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:48:44           TestGeneric_flow_api: vf0: 
01/09/2020 02:48:44           TestGeneric_flow_api: vf1: 
01/09/2020 02:48:46             dut.10.240.183.141: 
testpmd> 
01/09/2020 02:48:46             dut.10.240.183.141: stop
01/09/2020 02:48:46             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:48:46           TestGeneric_flow_api: pf: 
testpmd> 
01/09/2020 02:48:48             dut.10.240.183.141: start
01/09/2020 02:48:48             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:48:49             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / ipv4 dst is 90.86.141.61 src is 203.13.110.187 proto is 255 / vf id is 0 / end actions queue index 4 /  end
01/09/2020 02:48:49             dut.10.240.183.141: 
01/09/2020 02:48:49             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / ipv4 dst is 63.163.141.156 src is 198.26.13.157 proto is 255 / vf id is 0 / end actions queue index 3 /  end
01/09/2020 02:48:49             dut.10.240.183.141: 
01/09/2020 02:48:49                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928529.161776 root@10.240.183.89:/tmp/tester/
01/09/2020 02:48:51                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928529.161776 root@10.240.183.89:/tmp/tester/
01/09/2020 02:48:52                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928529.161776
01/09/2020 02:48:53                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=255, chksum=55519, src='198.26.13.157', dst='63.163.141.156')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:48:57           TestGeneric_flow_api: vf0: port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:48:57           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x0800 - length=60 - 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 

01/09/2020 02:48:59             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x0800 - length=60 - 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 

01/09/2020 02:48:59             dut.10.240.183.141: stop
01/09/2020 02:48:59             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:48:59           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x0800 - length=60 - 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 

01/09/2020 02:49:01             dut.10.240.183.141: start
01/09/2020 02:49:01             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:49:02             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 676 / ipv4 dst is 164.111.12.147 src is 27.123.158.20 tos is 52 ttl is 1 / sctp dst is 17776 src is 58783 tag is 1 / vf id is 1 / end actions queue index 2 /  end
01/09/2020 02:49:02             dut.10.240.183.141: 
01/09/2020 02:49:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928542.318086 root@10.240.183.89:/tmp/tester/
01/09/2020 02:49:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928542.318086 root@10.240.183.89:/tmp/tester/
01/09/2020 02:49:06                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928542.318086
01/09/2020 02:49:06                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=676, type=2048)/IP(version=4, ihl=5, tos=52, len=52, id=1, flags=0, frag=0, ttl=1, proto=132, chksum=20096, src='27.123.158.20', dst='164.111.12.147')/SCTP(sport=58783, dport=17776, tag=1, chksum=2257457354)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:49:11           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - 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 

01/09/2020 02:49:11           TestGeneric_flow_api: vf1: port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:49:13             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - 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 

01/09/2020 02:49:13             dut.10.240.183.141: stop
01/09/2020 02:49:13             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:49:13           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - 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 

01/09/2020 02:49:15             dut.10.240.183.141: start
01/09/2020 02:49:15             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:49:15             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3192 / ipv4 dst is 66.167.226.139 src is 89.70.246.1 tos is 112 ttl is 18 / sctp dst is 1758 src is 43873 tag is 1  / end actions passthru / flag /  end
01/09/2020 02:49:15             dut.10.240.183.141: 
01/09/2020 02:49:15                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928555.540741 root@10.240.183.89:/tmp/tester/
01/09/2020 02:49:17                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928555.540741 root@10.240.183.89:/tmp/tester/
01/09/2020 02:49:19                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928555.540741
01/09/2020 02:49:20                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3192, type=2048)/IP(version=4, ihl=5, tos=112, len=52, id=1, flags=0, frag=0, ttl=18, proto=132, chksum=13147, src='89.70.246.1', dst='66.167.226.139')/SCTP(sport=43873, dport=1758, tag=1, chksum=2099649609)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:49:24           TestGeneric_flow_api: vf0: 
01/09/2020 02:49:24           TestGeneric_flow_api: vf1: 
01/09/2020 02:49:26             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:49:26             dut.10.240.183.141: stop
01/09/2020 02:49:26             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:49:26           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:49:28             dut.10.240.183.141: start
01/09/2020 02:49:28             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:49:28             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 149.241.61.98 src is 237.73.176.156 ttl is 123 / udp dst is 51682 src is 45243  / end actions queue index 0 / flag /  end
01/09/2020 02:49:28             dut.10.240.183.141: 
01/09/2020 02:49:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928568.7079513 root@10.240.183.89:/tmp/tester/
01/09/2020 02:49:30                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928568.7079513 root@10.240.183.89:/tmp/tester/
01/09/2020 02:49:32                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928568.7079513
01/09/2020 02:49:33                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=123, proto=17, chksum=52866, src='237.73.176.156', dst='149.241.61.98')/UDP(sport=45243, dport=51682, len=28, chksum=24361)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:49:37           TestGeneric_flow_api: vf0: 
01/09/2020 02:49:37           TestGeneric_flow_api: vf1: 
01/09/2020 02:49:39             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:49:39             dut.10.240.183.141: stop
01/09/2020 02:49:39             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:49:39           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:49:41             dut.10.240.183.141: start
01/09/2020 02:49:41             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:49:41             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 216.204.59.109 src is 224.198.136.91 tos is 223 / tcp dst is 48876 src is 38963  / end actions queue index 7 / mark id 3 /  end
01/09/2020 02:49:41             dut.10.240.183.141: 
01/09/2020 02:49:41                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928581.9788802 root@10.240.183.89:/tmp/tester/
01/09/2020 02:49:43                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928581.9788802 root@10.240.183.89:/tmp/tester/
01/09/2020 02:49:45                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928581.9788802
01/09/2020 02:49:46                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=223, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=64640, src='224.198.136.91', dst='216.204.59.109')/TCP(sport=38963, dport=48876, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=1694, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:49:50           TestGeneric_flow_api: vf0: 
01/09/2020 02:49:50           TestGeneric_flow_api: vf1: 
01/09/2020 02:49:52             dut.10.240.183.141: 
testpmd> port 0/queue 7: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched ID=0x3 - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_FDIR_ID PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:49:52             dut.10.240.183.141: stop
01/09/2020 02:49:52             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 7 -> TX Port= 0/Queue= 7 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:49:52           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 7: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched ID=0x3 - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_FDIR_ID PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:49:54             dut.10.240.183.141: start
01/09/2020 02:49:54             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:49:55             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 194.176.12.218 src is 30.143.209.146 proto is 255  / end actions passthru / mark id 3 /  end
01/09/2020 02:49:55             dut.10.240.183.141: 
01/09/2020 02:49:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928595.2463248 root@10.240.183.89:/tmp/tester/
01/09/2020 02:49:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928595.2463248 root@10.240.183.89:/tmp/tester/
01/09/2020 02:49:58                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928595.2463248
01/09/2020 02:49:59                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=255, chksum=47658, src='30.143.209.146', dst='194.176.12.218')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:50:03           TestGeneric_flow_api: vf0: 
01/09/2020 02:50:03           TestGeneric_flow_api: vf1: 
01/09/2020 02:50:05             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched ID=0x3 - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_FDIR_ID PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:50:05             dut.10.240.183.141: stop
01/09/2020 02:50:06             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:50:06           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched ID=0x3 - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_FDIR_ID PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:50:08             dut.10.240.183.141: start
01/09/2020 02:50:08             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:50:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928608.44993 root@10.240.183.89:/tmp/tester/
01/09/2020 02:50:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928608.44993 root@10.240.183.89:/tmp/tester/
01/09/2020 02:50:12                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928608.44993
01/09/2020 02:50:12                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=255, chksum=63614, src='192.168.0.3', dst='192.168.0.4')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:50:17           TestGeneric_flow_api: vf0: 
01/09/2020 02:50:17           TestGeneric_flow_api: vf1: 
01/09/2020 02:50:19             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

01/09/2020 02:50:19             dut.10.240.183.141: stop
01/09/2020 02:50:19             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:50:19           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

01/09/2020 02:50:21             dut.10.240.183.141: start
01/09/2020 02:50:21             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:50:21             dut.10.240.183.141: flow list 0
01/09/2020 02:50:21             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => QUEUE
1	0	0	i--	ETH IPV4 UDP => QUEUE
2	0	0	i--	ETH IPV4 TCP => QUEUE
3	0	0	i--	ETH VLAN IPV4 SCTP => QUEUE
4	0	0	i--	ETH VLAN IPV4 SCTP => DROP
5	0	0	i-t	ETH IPV4 VF => QUEUE
6	0	0	i-t	ETH VLAN IPV4 SCTP VF => QUEUE
7	0	0	i--	ETH VLAN IPV4 SCTP => PASSTHRU FLAG
8	0	0	i--	ETH IPV4 UDP => QUEUE FLAG
9	0	0	i--	ETH IPV4 TCP => QUEUE MARK
10	0	0	i--	ETH IPV4 => PASSTHRU MARK
01/09/2020 02:50:21             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 02:50:21             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 02:50:21             dut.10.240.183.141: flow list 0
01/09/2020 02:50:21             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 UDP => QUEUE
2	0	0	i--	ETH IPV4 TCP => QUEUE
3	0	0	i--	ETH VLAN IPV4 SCTP => QUEUE
4	0	0	i--	ETH VLAN IPV4 SCTP => DROP
5	0	0	i-t	ETH IPV4 VF => QUEUE
6	0	0	i-t	ETH VLAN IPV4 SCTP VF => QUEUE
7	0	0	i--	ETH VLAN IPV4 SCTP => PASSTHRU FLAG
8	0	0	i--	ETH IPV4 UDP => QUEUE FLAG
9	0	0	i--	ETH IPV4 TCP => QUEUE MARK
10	0	0	i--	ETH IPV4 => PASSTHRU MARK
01/09/2020 02:50:21             dut.10.240.183.141: flow flush 0
01/09/2020 02:50:21             dut.10.240.183.141: 
01/09/2020 02:50:21             dut.10.240.183.141: flow list 0
01/09/2020 02:50:21             dut.10.240.183.141: 
01/09/2020 02:50:21           TestGeneric_flow_api: Test Case test_fdir_for_ipv4 Result PASSED:
01/09/2020 02:50:28             dut.10.240.183.141: quit
01/09/2020 02:50:29             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
01/09/2020 02:50:34             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:50:35           TestGeneric_flow_api: Test Case test_fdir_for_ipv6 Begin
01/09/2020 02:50:35             dut.10.240.183.141: 
01/09/2020 02:50:35                         tester: 
01/09/2020 02:50:35             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:50:37             dut.10.240.183.141: modprobe uio
01/09/2020 02:50:37             dut.10.240.183.141: 
01/09/2020 02:50:37             dut.10.240.183.141: insmod ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko
01/09/2020 02:50:37             dut.10.240.183.141: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko: File exists
01/09/2020 02:50:37             dut.10.240.183.141: modprobe vfio-pci
01/09/2020 02:50:37             dut.10.240.183.141: 
01/09/2020 02:50:42             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_7380_20200901023552   --socket-mem 1024,1024 --legacy-mem  -- -i --pkt-filter-mode=perfect --disable-rss --rxq=16 --txq=16
01/09/2020 02:50:45             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x002672f8]. original: 0x000d00ff, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267308]. original: 0x0009ff00, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267310]. original: 0x0009ff00, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267314]. original: 0x000d00ff, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267318]. original: 0x000dff00, new: 0x00000000
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 02:50:55             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:50:55             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:50:55             dut.10.240.183.141: set verbose 1
01/09/2020 02:50:55             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:50:55             dut.10.240.183.141: start
01/09/2020 02:50:55             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:51:08             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 578 / ipv6 src is a870:2e4:17ce:9bbd:ea20:2238:7392:a965 dst is a921:4b67:c19f:708c:f0f5:4e1d:64dd:8681 proto is 255 tc is 105 hop is 181  / end actions queue index 12 /  end
01/09/2020 02:51:08             dut.10.240.183.141: 
01/09/2020 02:51:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928668.2457652 root@10.240.183.89:/tmp/tester/
01/09/2020 02:51:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928668.2457652 root@10.240.183.89:/tmp/tester/
01/09/2020 02:51:11                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928668.2457652
01/09/2020 02:51:12                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=578, type=34525)/IPv6(version=6, tc=105, fl=0, plen=20, nh=255, hlim=181, src='a870:2e4:17ce:9bbd:ea20:2238:7392:a965', dst='a921:4b67:c19f:708c:f0f5:4e1d:64dd:8681')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:51:16           TestGeneric_flow_api: vf0:  
01/09/2020 02:51:16           TestGeneric_flow_api: vf1:  
01/09/2020 02:51:18             dut.10.240.183.141: 
testpmd> port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:51:18             dut.10.240.183.141: stop
01/09/2020 02:51:19             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 0/Queue=12 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:51:19           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:51:21             dut.10.240.183.141: start
01/09/2020 02:51:21             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:51:21             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 2619 / ipv6 src is d067:ca25:5c40:1ee2:1ea3:6fde:69c8:40d8 dst is c7d1:dae8:1f1d:dbbc:282f:632f:46c:ef15 tc is 44 hop is 230 / udp dst is 29472 src is 36816  / end actions queue index 10 /  end
01/09/2020 02:51:21             dut.10.240.183.141: 
01/09/2020 02:51:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928681.4171565 root@10.240.183.89:/tmp/tester/
01/09/2020 02:51:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928681.4171565 root@10.240.183.89:/tmp/tester/
01/09/2020 02:51:25                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928681.4171565
01/09/2020 02:51:25                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2619, type=34525)/IPv6(version=6, tc=44, fl=0, plen=28, nh=17, hlim=230, src='d067:ca25:5c40:1ee2:1ea3:6fde:69c8:40d8', dst='c7d1:dae8:1f1d:dbbc:282f:632f:46c:ef15')/UDP(sport=36816, dport=29472, len=28, chksum=56521)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:51:30           TestGeneric_flow_api: vf0: 
01/09/2020 02:51:30           TestGeneric_flow_api: vf1: 
01/09/2020 02:51:32             dut.10.240.183.141: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:51:32             dut.10.240.183.141: stop
01/09/2020 02:51:32             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:51:32           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:51:34             dut.10.240.183.141: start
01/09/2020 02:51:34             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:51:34             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 205 / ipv6 src is 28a6:eccb:4e87:946d:d008:d8:e7b2:c75e dst is a563:5ccd:5ea1:e69b:c528:7f5:828f:7fe6 tc is 174 hop is 99 / tcp dst is 9964 src is 23096  / end actions queue index 9 /  end
01/09/2020 02:51:34             dut.10.240.183.141: 
01/09/2020 02:51:34                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928694.68933 root@10.240.183.89:/tmp/tester/
01/09/2020 02:51:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928694.68933 root@10.240.183.89:/tmp/tester/
01/09/2020 02:51:38                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928694.68933
01/09/2020 02:51:39                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=205, type=34525)/IPv6(version=6, tc=174, fl=0, plen=40, nh=6, hlim=99, src='28a6:eccb:4e87:946d:d008:d8:e7b2:c75e', dst='a563:5ccd:5ea1:e69b:c528:7f5:828f:7fe6')/TCP(sport=23096, dport=9964, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=51866, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:51:43           TestGeneric_flow_api: vf0: 
01/09/2020 02:51:43           TestGeneric_flow_api: vf1: 
01/09/2020 02:51:45             dut.10.240.183.141: 
testpmd> port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x9
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:51:45             dut.10.240.183.141: stop
01/09/2020 02:51:45             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 9 -> TX Port= 0/Queue= 9 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:51:45           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x9
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:51:47             dut.10.240.183.141: start
01/09/2020 02:51:47             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:51:47             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 1155 / ipv6 src is 5fd3:d6b8:dd8f:4311:e991:909b:99a8:b35e dst is 79ce:d8f6:8985:4446:f6c0:83e9:ece8:17fb tc is 62 hop is 19 / sctp dst is 36166 src is 11994 tag is 1  / end actions queue index 10 /  end
01/09/2020 02:51:47             dut.10.240.183.141: 
01/09/2020 02:51:47                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928707.9090111 root@10.240.183.89:/tmp/tester/
01/09/2020 02:51:49                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928707.9090111 root@10.240.183.89:/tmp/tester/
01/09/2020 02:51:51                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928707.9090111
01/09/2020 02:51:52                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=1155, type=34525)/IPv6(version=6, tc=62, fl=0, plen=32, nh=132, hlim=19, src='5fd3:d6b8:dd8f:4311:e991:909b:99a8:b35e', dst='79ce:d8f6:8985:4446:f6c0:83e9:ece8:17fb')/SCTP(sport=11994, dport=36166, tag=1, chksum=2679748496)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:51:56           TestGeneric_flow_api: vf0: 
01/09/2020 02:51:56           TestGeneric_flow_api: vf1: 
01/09/2020 02:51:58             dut.10.240.183.141: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=90 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_SCTP  - l2_len=18 - l3_len=40 - l4_len=12 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:51:58             dut.10.240.183.141: stop
01/09/2020 02:51:58             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:51:58           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=90 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_SCTP  - l2_len=18 - l3_len=40 - l4_len=12 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:52:00             dut.10.240.183.141: start
01/09/2020 02:52:00             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:52:01             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 4066 / ipv6 src is e830:ab70:cb73:3f87:3bc5:c695:f8ee:9f8c dst is 55a4:764:6939:dc84:c1b4:4b3e:2ce3:d811 proto is 255 tc is 128 hop is 190 / vf id is 0 / end actions queue index 3 /  end
01/09/2020 02:52:01             dut.10.240.183.141: 
01/09/2020 02:52:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928721.0763745 root@10.240.183.89:/tmp/tester/
01/09/2020 02:52:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928721.0763745 root@10.240.183.89:/tmp/tester/
01/09/2020 02:52:04                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928721.0763745
01/09/2020 02:52:05                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=4066, type=34525)/IPv6(version=6, tc=128, fl=0, plen=20, nh=255, hlim=190, src='e830:ab70:cb73:3f87:3bc5:c695:f8ee:9f8c', dst='55a4:764:6939:dc84:c1b4:4b3e:2ce3:d811')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:52:09           TestGeneric_flow_api: vf0: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:52:09           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:52:11             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:52:11             dut.10.240.183.141: stop
01/09/2020 02:52:11             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:52:11           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:52:13             dut.10.240.183.141: start
01/09/2020 02:52:13             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:52:14             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 1180 / ipv6 src is b477:c625:9148:2b45:a6d6:d068:f572:5e31 dst is d88c:6bc4:e637:927e:c91f:2793:5fe1:66aa tc is 201 hop is 246 / tcp dst is 56769 src is 11824 / vf id is 1 / end actions queue index 2 /  end
01/09/2020 02:52:14             dut.10.240.183.141: 
01/09/2020 02:52:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928734.293123 root@10.240.183.89:/tmp/tester/
01/09/2020 02:52:16                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928734.293123 root@10.240.183.89:/tmp/tester/
01/09/2020 02:52:17                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928734.293123
01/09/2020 02:52:18                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=1180, type=34525)/IPv6(version=6, tc=201, fl=0, plen=40, nh=6, hlim=246, src='b477:c625:9148:2b45:a6d6:d068:f572:5e31', dst='d88c:6bc4:e637:927e:c91f:2793:5fe1:66aa')/TCP(sport=11824, dport=56769, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22739, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:52:23           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:52:23           TestGeneric_flow_api: vf1: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:52:25             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:52:25             dut.10.240.183.141: stop
01/09/2020 02:52:25             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:52:25           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:52:27             dut.10.240.183.141: start
01/09/2020 02:52:27             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:52:27             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 2099 / ipv6 src is 7c8:16e6:50bb:52d5:bfa:3f56:197c:843 dst is b3ba:af2b:a306:7f61:dd1:302f:cba2:67ad tc is 68 hop is 175 / sctp dst is 57859 src is 18170 tag is 1  / end actions drop /  end
01/09/2020 02:52:27             dut.10.240.183.141: 
01/09/2020 02:52:27                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928747.5662193 root@10.240.183.89:/tmp/tester/
01/09/2020 02:52:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928747.5662193 root@10.240.183.89:/tmp/tester/
01/09/2020 02:52:31                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928747.5662193
01/09/2020 02:52:32                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2099, type=34525)/IPv6(version=6, tc=68, fl=0, plen=32, nh=132, hlim=175, src='7c8:16e6:50bb:52d5:bfa:3f56:197c:843', dst='b3ba:af2b:a306:7f61:dd1:302f:cba2:67ad')/SCTP(sport=18170, dport=57859, tag=1, chksum=1321314467)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:52:36           TestGeneric_flow_api: vf0: 
01/09/2020 02:52:36           TestGeneric_flow_api: vf1: 
01/09/2020 02:52:38             dut.10.240.183.141: 
testpmd> 
01/09/2020 02:52:38             dut.10.240.183.141: stop
01/09/2020 02:52:38             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:52:38           TestGeneric_flow_api: pf: 
testpmd> 
01/09/2020 02:52:40             dut.10.240.183.141: start
01/09/2020 02:52:40             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:52:40             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 2558 / ipv6 src is ae38:14c6:f731:26ee:b300:1b7e:77f8:5fe dst is 8800:a1eb:ebb3:8ca2:5702:e2fe:b798:5307 tc is 197 hop is 185 / tcp dst is 55593 src is 36956 / vf id is 1 / end actions drop /  end
01/09/2020 02:52:40             dut.10.240.183.141: 
01/09/2020 02:52:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928760.8384235 root@10.240.183.89:/tmp/tester/
01/09/2020 02:52:42                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928760.8384235 root@10.240.183.89:/tmp/tester/
01/09/2020 02:52:44                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928760.8384235
01/09/2020 02:52:45                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2558, type=34525)/IPv6(version=6, tc=197, fl=0, plen=40, nh=6, hlim=185, src='ae38:14c6:f731:26ee:b300:1b7e:77f8:5fe', dst='8800:a1eb:ebb3:8ca2:5702:e2fe:b798:5307')/TCP(sport=36956, dport=55593, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=23836, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:52:49           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:52:49           TestGeneric_flow_api: vf1: 
01/09/2020 02:52:51             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:52:51             dut.10.240.183.141: stop
01/09/2020 02:52:51             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:52:51           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:52:53             dut.10.240.183.141: start
01/09/2020 02:52:53             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:52:54                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928774.0433407 root@10.240.183.89:/tmp/tester/
01/09/2020 02:52:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928774.0433407 root@10.240.183.89:/tmp/tester/
01/09/2020 02:52:57                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928774.0433407
01/09/2020 02:52:58                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2619, type=34525)/IPv6(version=6, tc=2, fl=0, plen=28, nh=17, hlim=20, src='2001::1', dst='2001::2')/UDP(sport=22, dport=23, len=28, chksum=2768)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:53:02           TestGeneric_flow_api: vf0: 
01/09/2020 02:53:02           TestGeneric_flow_api: vf1: 
01/09/2020 02:53:04             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

01/09/2020 02:53:04             dut.10.240.183.141: stop
01/09/2020 02:53:04             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:53:04           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

01/09/2020 02:53:06             dut.10.240.183.141: start
01/09/2020 02:53:06             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:53:07             dut.10.240.183.141: flow list 0
01/09/2020 02:53:07             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH VLAN IPV6 => QUEUE
1	0	0	i--	ETH VLAN IPV6 UDP => QUEUE
2	0	0	i--	ETH VLAN IPV6 TCP => QUEUE
3	0	0	i--	ETH VLAN IPV6 SCTP => QUEUE
4	0	0	i-t	ETH VLAN IPV6 VF => QUEUE
5	0	0	i-t	ETH VLAN IPV6 TCP VF => QUEUE
6	0	0	i--	ETH VLAN IPV6 SCTP => DROP
7	0	0	i-t	ETH VLAN IPV6 TCP VF => DROP
01/09/2020 02:53:07             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 02:53:07             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 02:53:07             dut.10.240.183.141: flow list 0
01/09/2020 02:53:07             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH VLAN IPV6 UDP => QUEUE
2	0	0	i--	ETH VLAN IPV6 TCP => QUEUE
3	0	0	i--	ETH VLAN IPV6 SCTP => QUEUE
4	0	0	i-t	ETH VLAN IPV6 VF => QUEUE
5	0	0	i-t	ETH VLAN IPV6 TCP VF => QUEUE
6	0	0	i--	ETH VLAN IPV6 SCTP => DROP
7	0	0	i-t	ETH VLAN IPV6 TCP VF => DROP
01/09/2020 02:53:07             dut.10.240.183.141: flow flush 0
01/09/2020 02:53:07             dut.10.240.183.141: 
01/09/2020 02:53:07             dut.10.240.183.141: flow list 0
01/09/2020 02:53:07             dut.10.240.183.141: 
01/09/2020 02:53:07           TestGeneric_flow_api: Test Case test_fdir_for_ipv6 Result PASSED:
01/09/2020 02:53:14             dut.10.240.183.141: quit
01/09/2020 02:53:14             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
01/09/2020 02:53:19             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:53:20           TestGeneric_flow_api: Test Case test_fdir_for_mac_vlan Begin
01/09/2020 02:53:20             dut.10.240.183.141: 
01/09/2020 02:53:20                         tester: 
01/09/2020 02:53:20             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:53:22             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_7380_20200901023552   -- -i --pkt-filter-mode=perfect-mac-vlan --disable-rss --rxq=16 --txq=16
01/09/2020 02:53:24             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267348]. original: 0x0009f00f, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x0026734c]. original: 0x000cff00, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267358]. original: 0x0009f00f, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x0026735c]. original: 0x000cff00, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267360]. original: 0x0009f00f, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267364]. original: 0x000cff00, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267368]. original: 0x0009f00f, new: 0x00000000
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 02:53:34             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:53:34             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:53:34             dut.10.240.183.141: set verbose 1
01/09/2020 02:53:34             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:53:34             dut.10.240.183.141: vlan set strip off 0
01/09/2020 02:53:34             dut.10.240.183.141: 
01/09/2020 02:53:34             dut.10.240.183.141: vlan set filter off 0
01/09/2020 02:53:34             dut.10.240.183.141: 
01/09/2020 02:53:34             dut.10.240.183.141: start
01/09/2020 02:53:34             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:53:36             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3071  / end actions queue index 14 /  end
01/09/2020 02:53:36             dut.10.240.183.141: 
01/09/2020 02:53:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928816.6674025 root@10.240.183.89:/tmp/tester/
01/09/2020 02:53:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928816.6674025 root@10.240.183.89:/tmp/tester/
01/09/2020 02:53:40                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928816.6674025
01/09/2020 02:53:41                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3071, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:53:43             dut.10.240.183.141: 
testpmd> port 0/queue 14: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0xe
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:53:43             dut.10.240.183.141: stop
01/09/2020 02:53:43             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 1/Queue=14 -------
  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.
01/09/2020 02:53:43           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 14: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0xe
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:53:45             dut.10.240.183.141: start
01/09/2020 02:53:45             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:53:45             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 1086  / end actions queue index 11 /  end
01/09/2020 02:53:45             dut.10.240.183.141: 
01/09/2020 02:53:45                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928825.3980432 root@10.240.183.89:/tmp/tester/
01/09/2020 02:53:47                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928825.3980432 root@10.240.183.89:/tmp/tester/
01/09/2020 02:53:49                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928825.3980432
01/09/2020 02:53:49                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=1086, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:53:51             dut.10.240.183.141: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:53:51             dut.10.240.183.141: stop
01/09/2020 02:53:51             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 1/Queue=11 -------
  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.
01/09/2020 02:53:51           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:53:53             dut.10.240.183.141: start
01/09/2020 02:53:54             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:53:54             dut.10.240.183.141: flow list 0
01/09/2020 02:53:54             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH VLAN => QUEUE
1	0	0	i--	ETH VLAN => QUEUE
01/09/2020 02:53:54             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 02:53:54             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 02:53:54             dut.10.240.183.141: flow list 0
01/09/2020 02:53:54             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH VLAN => QUEUE
01/09/2020 02:53:54             dut.10.240.183.141: flow flush 0
01/09/2020 02:53:54             dut.10.240.183.141: 
01/09/2020 02:53:54             dut.10.240.183.141: flow list 0
01/09/2020 02:53:54             dut.10.240.183.141: 
01/09/2020 02:53:54           TestGeneric_flow_api: Test Case test_fdir_for_mac_vlan Result PASSED:
01/09/2020 02:53:54             dut.10.240.183.141: quit
01/09/2020 02:53:56             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 02:53:58             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 02:53:58           TestGeneric_flow_api: Test Case test_fdir_for_nvgre Result SKIPPED:
01/09/2020 02:53:58           TestGeneric_flow_api: Test Case test_fdir_for_vlan Begin
01/09/2020 02:53:58             dut.10.240.183.141: 
01/09/2020 02:53:58                         tester: 
01/09/2020 02:53:58             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 02:53:59             dut.10.240.183.141: modprobe uio
01/09/2020 02:53:59             dut.10.240.183.141: 
01/09/2020 02:53:59             dut.10.240.183.141: insmod ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko
01/09/2020 02:53:59             dut.10.240.183.141: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko: File exists
01/09/2020 02:53:59             dut.10.240.183.141: modprobe vfio-pci
01/09/2020 02:53:59             dut.10.240.183.141: 
01/09/2020 02:54:04             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_7380_20200901023552   --socket-mem 1024,1024 --legacy-mem  -- -i --pkt-filter-mode=perfect --disable-rss --rxq=16 --txq=16
01/09/2020 02:54:07             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 02:54:17             dut.10.240.183.141: set fwd rxonly
01/09/2020 02:54:17             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 02:54:17             dut.10.240.183.141: set verbose 1
01/09/2020 02:54:17             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 02:54:17             dut.10.240.183.141: start
01/09/2020 02:54:17             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:54:30             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 602 / ipv4  / end actions queue index 0 /  end
01/09/2020 02:54:30             dut.10.240.183.141: 
01/09/2020 02:54:30                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928870.7953691 root@10.240.183.89:/tmp/tester/
01/09/2020 02:54:32                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928870.7953691 root@10.240.183.89:/tmp/tester/
01/09/2020 02:54:34                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928870.7953691
01/09/2020 02:54:35                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=602, type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31955, src='127.0.0.1', dst='127.0.0.1')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:54:39           TestGeneric_flow_api: vf0:  
01/09/2020 02:54:39           TestGeneric_flow_api: vf1:  
01/09/2020 02:54:41             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:54:41             dut.10.240.183.141: stop
01/09/2020 02:54:41             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:54:41           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:54:43             dut.10.240.183.141: start
01/09/2020 02:54:43             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:54:44             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3418 / ipv4 / udp  / end actions queue index 3 /  end
01/09/2020 02:54:44             dut.10.240.183.141: 
01/09/2020 02:54:44                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928884.0652966 root@10.240.183.89:/tmp/tester/
01/09/2020 02:54:45                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928884.0652966 root@10.240.183.89:/tmp/tester/
01/09/2020 02:54:47                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928884.0652966
01/09/2020 02:54:48                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3418, type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31930, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=28, chksum=19605)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
01/09/2020 02:54:52           TestGeneric_flow_api: vf0: 
01/09/2020 02:54:52           TestGeneric_flow_api: vf1: 
01/09/2020 02:54:54             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:54:54             dut.10.240.183.141: stop
01/09/2020 02:54:54             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
01/09/2020 02:54:54           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:54:56             dut.10.240.183.141: start
01/09/2020 02:54:57             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:54:57             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3941 / ipv4 / tcp  / end actions queue index 13 /  end
01/09/2020 02:54:57             dut.10.240.183.141: 
01/09/2020 02:54:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928897.3873231 root@10.240.183.89:/tmp/tester/
01/09/2020 02:54:59                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928897.3873231 root@10.240.183.89:/tmp/tester/
01/09/2020 02:55:01                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928897.3873231
01/09/2020 02:55:01                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3941, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:55:06           TestGeneric_flow_api: vf0: 
01/09/2020 02:55:06           TestGeneric_flow_api: vf1: 
01/09/2020 02:55:08             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_TCP  - l2_len=18 - l3_len=20 - l4_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:55:08             dut.10.240.183.141: stop
01/09/2020 02:55:08             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:55:08           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_TCP  - l2_len=18 - l3_len=20 - l4_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:55:10             dut.10.240.183.141: start
01/09/2020 02:55:10             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:55:10             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3969 / ipv4 / sctp  / end actions queue index 13 /  end
01/09/2020 02:55:10             dut.10.240.183.141: 
01/09/2020 02:55:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928910.7069018 root@10.240.183.89:/tmp/tester/
01/09/2020 02:55:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928910.7069018 root@10.240.183.89:/tmp/tester/
01/09/2020 02:55:14                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928910.7069018
01/09/2020 02:55:15                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3969, type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=31811, src='127.0.0.1', dst='127.0.0.1')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:55:19           TestGeneric_flow_api: vf0: 
01/09/2020 02:55:19           TestGeneric_flow_api: vf1: 
01/09/2020 02:55:21             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:55:21             dut.10.240.183.141: stop
01/09/2020 02:55:21             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:55:21           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:55:23             dut.10.240.183.141: start
01/09/2020 02:55:23             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:55:24             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 3263 / ipv4 / vf id is 0 / end actions queue index 2 /  end
01/09/2020 02:55:24             dut.10.240.183.141: 
01/09/2020 02:55:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928924.0814564 root@10.240.183.89:/tmp/tester/
01/09/2020 02:55:25                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928924.0814564 root@10.240.183.89:/tmp/tester/
01/09/2020 02:55:27                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928924.0814564
01/09/2020 02:55:28                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3263, type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31955, src='127.0.0.1', dst='127.0.0.1')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:55:32           TestGeneric_flow_api: vf0: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:55:32           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:55:34             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:55:34             dut.10.240.183.141: stop
01/09/2020 02:55:34             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:55:34           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:55:36             dut.10.240.183.141: start
01/09/2020 02:55:36             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:55:37             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 479 / ipv4 / sctp / vf id is 1 / end actions queue index 0 /  end
01/09/2020 02:55:37             dut.10.240.183.141: 
01/09/2020 02:55:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928937.2925036 root@10.240.183.89:/tmp/tester/
01/09/2020 02:55:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928937.2925036 root@10.240.183.89:/tmp/tester/
01/09/2020 02:55:41                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928937.2925036
01/09/2020 02:55:41                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=479, type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=31811, src='127.0.0.1', dst='127.0.0.1')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:55:46           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - 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 

01/09/2020 02:55:46           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:55:48             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - 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 

01/09/2020 02:55:48             dut.10.240.183.141: stop
01/09/2020 02:55:48             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:55:48           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - 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 

01/09/2020 02:55:50             dut.10.240.183.141: start
01/09/2020 02:55:50             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:55:50             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 1541 / ipv4 / sctp  / end actions drop /  end
01/09/2020 02:55:50             dut.10.240.183.141: 
01/09/2020 02:55:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928950.4710445 root@10.240.183.89:/tmp/tester/
01/09/2020 02:55:52                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928950.4710445 root@10.240.183.89:/tmp/tester/
01/09/2020 02:55:54                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928950.4710445
01/09/2020 02:55:54                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=1541, type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=31811, src='127.0.0.1', dst='127.0.0.1')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:55:59           TestGeneric_flow_api: vf0: 
01/09/2020 02:55:59           TestGeneric_flow_api: vf1: 
01/09/2020 02:56:01             dut.10.240.183.141: 
testpmd> 
01/09/2020 02:56:01             dut.10.240.183.141: stop
01/09/2020 02:56:01             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:56:01           TestGeneric_flow_api: pf: 
testpmd> 
01/09/2020 02:56:03             dut.10.240.183.141: start
01/09/2020 02:56:03             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:56:03             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 3535 / ipv4 / udp / vf id is 1 / end actions drop /  end
01/09/2020 02:56:03             dut.10.240.183.141: 
01/09/2020 02:56:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928963.6362417 root@10.240.183.89:/tmp/tester/
01/09/2020 02:56:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928963.6362417 root@10.240.183.89:/tmp/tester/
01/09/2020 02:56:07                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928963.6362417
01/09/2020 02:56:08                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3535, type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31930, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=28, chksum=19605)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
01/09/2020 02:56:12           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:56:12           TestGeneric_flow_api: vf1: 
01/09/2020 02:56:14             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:56:14             dut.10.240.183.141: stop
01/09/2020 02:56:14             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:56:14           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:56:16             dut.10.240.183.141: start
01/09/2020 02:56:16             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:56:16             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3122 / ipv6  / end actions queue index 2 /  end
01/09/2020 02:56:16             dut.10.240.183.141: 
01/09/2020 02:56:16                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928976.8079035 root@10.240.183.89:/tmp/tester/
01/09/2020 02:56:18                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928976.8079035 root@10.240.183.89:/tmp/tester/
01/09/2020 02:56:20                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928976.8079035
01/09/2020 02:56:21                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3122, type=34525)/IPv6(version=6, tc=0, fl=0, plen=20, nh=59, hlim=64, src='c248:d2ce:19f:a0e9:6203:5335:f578:d20e', dst='de69:7ff8:ed56:fac7:89ea:98e4:21ee:5a13')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:56:25           TestGeneric_flow_api: vf0: 
01/09/2020 02:56:25           TestGeneric_flow_api: vf1: 
01/09/2020 02:56:27             dut.10.240.183.141: 
testpmd> port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:56:27             dut.10.240.183.141: stop
01/09/2020 02:56:27             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:56:27           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:56:29             dut.10.240.183.141: start
01/09/2020 02:56:29             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:56:29             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 2966 / ipv6 / udp  / end actions queue index 6 /  end
01/09/2020 02:56:29             dut.10.240.183.141: 
01/09/2020 02:56:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598928989.8800023 root@10.240.183.89:/tmp/tester/
01/09/2020 02:56:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598928989.8800023 root@10.240.183.89:/tmp/tester/
01/09/2020 02:56:33                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598928989.8800023
01/09/2020 02:56:34                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2966, type=34525)/IPv6(version=6, tc=0, fl=0, plen=28, nh=17, hlim=64, src='a7b3:8b0c:8183:aec9:86e4:b7da:8d6f:e48e', dst='6c3a:76ee:b2f2:551e:e575:9b59:e207:df1d')/UDP(sport=53, dport=53, len=28, chksum=2462)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
01/09/2020 02:56:38           TestGeneric_flow_api: vf0: 
01/09/2020 02:56:38           TestGeneric_flow_api: vf1: 
01/09/2020 02:56:40             dut.10.240.183.141: 
testpmd> port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:56:40             dut.10.240.183.141: stop
01/09/2020 02:56:40             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:56:40           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:56:42             dut.10.240.183.141: start
01/09/2020 02:56:42             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:56:42             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 4003 / ipv6 / tcp  / end actions queue index 12 /  end
01/09/2020 02:56:42             dut.10.240.183.141: 
01/09/2020 02:56:43                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929002.9986417 root@10.240.183.89:/tmp/tester/
01/09/2020 02:56:44                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929002.9986417 root@10.240.183.89:/tmp/tester/
01/09/2020 02:56:46                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929002.9986417
01/09/2020 02:56:47                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=4003, type=34525)/IPv6(version=6, tc=0, fl=0, plen=40, nh=6, hlim=64, src='49b:dce:5e2a:fbcc:1b44:b8d8:8a02:9f64', dst='f558:e1a1:b7c:a9b0:2df0:a235:cb5b:e8a4')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=24708, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:56:51           TestGeneric_flow_api: vf0: 
01/09/2020 02:56:51           TestGeneric_flow_api: vf1: 
01/09/2020 02:56:53             dut.10.240.183.141: 
testpmd> port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:56:53             dut.10.240.183.141: stop
01/09/2020 02:56:53             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 0/Queue=12 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:56:53           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:56:55             dut.10.240.183.141: start
01/09/2020 02:56:55             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:56:56             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 2140 / ipv6 / sctp  / end actions queue index 3 /  end
01/09/2020 02:56:56             dut.10.240.183.141: 
01/09/2020 02:56:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929016.1705418 root@10.240.183.89:/tmp/tester/
01/09/2020 02:56:58                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929016.1705418 root@10.240.183.89:/tmp/tester/
01/09/2020 02:56:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929016.1705418
01/09/2020 02:57:00                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2140, type=34525)/IPv6(version=6, tc=0, fl=0, plen=32, nh=132, hlim=64, src='7ff5:769c:74c5:b584:767f:cb7a:33b6:df89', dst='ea3d:b101:c325:d59f:3a86:41a1:ff59:fe05')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:57:04           TestGeneric_flow_api: vf0: 
01/09/2020 02:57:04           TestGeneric_flow_api: vf1: 
01/09/2020 02:57:06             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=90 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_SCTP  - l2_len=18 - l3_len=40 - l4_len=12 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:57:06             dut.10.240.183.141: stop
01/09/2020 02:57:06             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
01/09/2020 02:57:06           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=90 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_SCTP  - l2_len=18 - l3_len=40 - l4_len=12 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:57:08             dut.10.240.183.141: start
01/09/2020 02:57:09             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:57:09             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 3392 / ipv6 / vf id is 0 / end actions queue index 3 /  end
01/09/2020 02:57:09             dut.10.240.183.141: 
01/09/2020 02:57:09                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929029.3440397 root@10.240.183.89:/tmp/tester/
01/09/2020 02:57:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929029.3440397 root@10.240.183.89:/tmp/tester/
01/09/2020 02:57:12                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929029.3440397
01/09/2020 02:57:13                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3392, type=34525)/IPv6(version=6, tc=0, fl=0, plen=20, nh=59, hlim=64, src='d048:58ff:8568:8bb0:a7be:aaf2:c688:2818', dst='9095:1b77:b5e9:1877:5095:84fa:9933:e608')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:57:18           TestGeneric_flow_api: vf0: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:57:18           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:57:20             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:57:20             dut.10.240.183.141: stop
01/09/2020 02:57:20             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:57:20           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:57:22             dut.10.240.183.141: start
01/09/2020 02:57:22             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:57:22             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 1725 / ipv6 / tcp / vf id is 1 / end actions queue index 1 /  end
01/09/2020 02:57:22             dut.10.240.183.141: 
01/09/2020 02:57:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929042.5628598 root@10.240.183.89:/tmp/tester/
01/09/2020 02:57:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929042.5628598 root@10.240.183.89:/tmp/tester/
01/09/2020 02:57:26                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929042.5628598
01/09/2020 02:57:27                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=1725, type=34525)/IPv6(version=6, tc=0, fl=0, plen=40, nh=6, hlim=64, src='d56d:e45c:3371:c127:2ecd:3d18:9497:6164', dst='663a:5b83:7bb4:18a:2dbc:4b5:826c:6741')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=28502, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:57:31           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:57:31           TestGeneric_flow_api: vf1: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:57:33             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:57:33             dut.10.240.183.141: stop
01/09/2020 02:57:33             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:57:33           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:57:35             dut.10.240.183.141: start
01/09/2020 02:57:35             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:57:35             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3416 / ipv6 / sctp  / end actions drop /  end
01/09/2020 02:57:35             dut.10.240.183.141: 
01/09/2020 02:57:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929055.781771 root@10.240.183.89:/tmp/tester/
01/09/2020 02:57:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929055.781771 root@10.240.183.89:/tmp/tester/
01/09/2020 02:57:39                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929055.781771
01/09/2020 02:57:40                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3416, type=34525)/IPv6(version=6, tc=0, fl=0, plen=32, nh=132, hlim=64, src='83bb:2761:cc0a:fbf2:5377:c335:5d62:6a3a', dst='86ac:90e3:6d46:97b:a500:a7fb:d08e:912b')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:57:44           TestGeneric_flow_api: vf0: 
01/09/2020 02:57:44           TestGeneric_flow_api: vf1: 
01/09/2020 02:57:46             dut.10.240.183.141: 
testpmd> 
01/09/2020 02:57:46             dut.10.240.183.141: stop
01/09/2020 02:57:46             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:57:46           TestGeneric_flow_api: pf: 
testpmd> 
01/09/2020 02:57:48             dut.10.240.183.141: start
01/09/2020 02:57:48             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:57:48             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 2062 / ipv6 / tcp / vf id is 1 / end actions drop /  end
01/09/2020 02:57:48             dut.10.240.183.141: 
01/09/2020 02:57:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929068.9531236 root@10.240.183.89:/tmp/tester/
01/09/2020 02:57:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929068.9531236 root@10.240.183.89:/tmp/tester/
01/09/2020 02:57:52                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929068.9531236
01/09/2020 02:57:53                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2062, type=34525)/IPv6(version=6, tc=0, fl=0, plen=40, nh=6, hlim=64, src='b159:c28d:71f2:f20a:8408:2536:6f8d:775d', dst='906f:b861:3d1f:952d:fc47:604c:5da1:9144')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=3088, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:57:57           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:57:57           TestGeneric_flow_api: vf1: 
01/09/2020 02:57:59             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:57:59             dut.10.240.183.141: stop
01/09/2020 02:57:59             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:57:59           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:58:01             dut.10.240.183.141: start
01/09/2020 02:58:01             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:58:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929082.0672493 root@10.240.183.89:/tmp/tester/
01/09/2020 02:58:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929082.0672493 root@10.240.183.89:/tmp/tester/
01/09/2020 02:58:05                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929082.0672493
01/09/2020 02:58:06                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=602, type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=3, chksum=63870, src='192.168.0.1', dst='192.168.0.2')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:58:10           TestGeneric_flow_api: vf0: 
01/09/2020 02:58:10           TestGeneric_flow_api: vf1: 
01/09/2020 02:58:12             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:58:12             dut.10.240.183.141: stop
01/09/2020 02:58:12             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:58:12           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:58:14             dut.10.240.183.141: start
01/09/2020 02:58:14             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:58:15                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929095.235053 root@10.240.183.89:/tmp/tester/
01/09/2020 02:58:17                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929095.235053 root@10.240.183.89:/tmp/tester/
01/09/2020 02:58:18                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929095.235053
01/09/2020 02:58:19                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3418, type=2048)/IP(version=4, ihl=5, tos=3, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=63845, src='192.168.0.1', dst='192.168.0.2')/UDP(sport=53, dport=53, len=28, chksum=51523)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
01/09/2020 02:58:24           TestGeneric_flow_api: vf0: 
01/09/2020 02:58:24           TestGeneric_flow_api: vf1: 
01/09/2020 02:58:26             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:58:26             dut.10.240.183.141: stop
01/09/2020 02:58:26             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
01/09/2020 02:58:26           TestGeneric_flow_api: pf: port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:58:28             dut.10.240.183.141: start
01/09/2020 02:58:28             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:58:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929108.509124 root@10.240.183.89:/tmp/tester/
01/09/2020 02:58:30                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929108.509124 root@10.240.183.89:/tmp/tester/
01/09/2020 02:58:32                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929108.509124
01/09/2020 02:58:33                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3941, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=3, proto=6, chksum=13928, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22882, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:58:37           TestGeneric_flow_api: vf0: 
01/09/2020 02:58:37           TestGeneric_flow_api: vf1: 
01/09/2020 02:58:39             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_TCP  - l2_len=18 - l3_len=20 - l4_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:58:39             dut.10.240.183.141: stop
01/09/2020 02:58:39             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:58:39           TestGeneric_flow_api: pf: port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_TCP  - l2_len=18 - l3_len=20 - l4_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:58:41             dut.10.240.183.141: start
01/09/2020 02:58:41             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:58:41                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929121.7211518 root@10.240.183.89:/tmp/tester/
01/09/2020 02:58:43                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929121.7211518 root@10.240.183.89:/tmp/tester/
01/09/2020 02:58:45                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929121.7211518
01/09/2020 02:58:46                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3969, type=2048)/IP(version=4, ihl=5, tos=3, len=52, id=1, flags=0, frag=0, ttl=3, proto=132, chksum=13807, src='192.168.0.1', dst='192.168.0.2')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:58:50           TestGeneric_flow_api: vf0: 
01/09/2020 02:58:50           TestGeneric_flow_api: vf1: 
01/09/2020 02:58:52             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:58:52             dut.10.240.183.141: stop
01/09/2020 02:58:52             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:58:52           TestGeneric_flow_api: pf: port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:58:54             dut.10.240.183.141: start
01/09/2020 02:58:54             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:58:54                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929134.9941113 root@10.240.183.89:/tmp/tester/
01/09/2020 02:58:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929134.9941113 root@10.240.183.89:/tmp/tester/
01/09/2020 02:58:58                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929134.9941113
01/09/2020 02:58:59                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3969, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=3, proto=6, chksum=13928, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22882, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:59:03           TestGeneric_flow_api: vf0: 
01/09/2020 02:59:03           TestGeneric_flow_api: vf1: 
01/09/2020 02:59:05             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:59:05             dut.10.240.183.141: stop
01/09/2020 02:59:05             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:59:05           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_TCP  - l2_len=18 - 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 

01/09/2020 02:59:07             dut.10.240.183.141: start
01/09/2020 02:59:07             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:59:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929148.2177618 root@10.240.183.89:/tmp/tester/
01/09/2020 02:59:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929148.2177618 root@10.240.183.89:/tmp/tester/
01/09/2020 02:59:11                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929148.2177618
01/09/2020 02:59:12                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3941, type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31930, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=28, chksum=19605)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
01/09/2020 02:59:17           TestGeneric_flow_api: vf0: 
01/09/2020 02:59:17           TestGeneric_flow_api: vf1: 
01/09/2020 02:59:19             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:59:19             dut.10.240.183.141: stop
01/09/2020 02:59:19             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:59:19           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:59:21             dut.10.240.183.141: start
01/09/2020 02:59:21             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:59:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929161.4837751 root@10.240.183.89:/tmp/tester/
01/09/2020 02:59:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929161.4837751 root@10.240.183.89:/tmp/tester/
01/09/2020 02:59:25                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929161.4837751
01/09/2020 02:59:25                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=1541, type=2048)/IP(version=4, ihl=5, tos=3, len=52, id=1, flags=0, frag=0, ttl=3, proto=132, chksum=13799, src='192.168.0.5', dst='192.168.0.6')/SCTP(sport=44, dport=45, tag=1, chksum=594960672)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:59:30           TestGeneric_flow_api: vf0: 
01/09/2020 02:59:30           TestGeneric_flow_api: vf1: 
01/09/2020 02:59:32             dut.10.240.183.141: 
01/09/2020 02:59:32             dut.10.240.183.141: stop
01/09/2020 02:59:32             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:59:32           TestGeneric_flow_api: pf: 
01/09/2020 02:59:34             dut.10.240.183.141: start
01/09/2020 02:59:34             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:59:34                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929174.6586628 root@10.240.183.89:/tmp/tester/
01/09/2020 02:59:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929174.6586628 root@10.240.183.89:/tmp/tester/
01/09/2020 02:59:38                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929174.6586628
01/09/2020 02:59:39                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3535, type=2048)/IP(version=4, ihl=5, tos=3, len=64, id=1, flags=0, frag=0, ttl=3, proto=17, chksum=13902, src='192.168.0.5', dst='192.168.0.6')/UDP(sport=44, dport=45, len=44, chksum=2634)/Raw(load=b'\x00\x00\x00$\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XXXXXXXXXXXXXXXXXXXX')
01/09/2020 02:59:43           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x8100 - length=82 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:59:43           TestGeneric_flow_api: vf1: 
01/09/2020 02:59:45             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x8100 - length=82 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:59:45             dut.10.240.183.141: stop
01/09/2020 02:59:45             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 02:59:45           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x8100 - length=82 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:59:47             dut.10.240.183.141: start
01/09/2020 02:59:47             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 02:59:47                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929187.8758786 root@10.240.183.89:/tmp/tester/
01/09/2020 02:59:49                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929187.8758786 root@10.240.183.89:/tmp/tester/
01/09/2020 02:59:51                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929187.8758786
01/09/2020 02:59:52                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3122, type=34525)/IPv6(version=6, tc=1, fl=0, plen=20, nh=5, hlim=10, src='2001::1', dst='2001::2')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 02:59:56           TestGeneric_flow_api: vf0: 
01/09/2020 02:59:56           TestGeneric_flow_api: vf1: 
01/09/2020 02:59:58             dut.10.240.183.141: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 02:59:58             dut.10.240.183.141: stop
01/09/2020 02:59:58             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 02:59:58           TestGeneric_flow_api: pf: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:00:00             dut.10.240.183.141: start
01/09/2020 03:00:00             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:00:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929201.0501645 root@10.240.183.89:/tmp/tester/
01/09/2020 03:00:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929201.0501645 root@10.240.183.89:/tmp/tester/
01/09/2020 03:00:04                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929201.0501645
01/09/2020 03:00:05                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2966, type=34525)/IPv6(version=6, tc=2, fl=0, plen=28, nh=17, hlim=20, src='2001::1', dst='2001::2')/UDP(sport=22, dport=23, len=28, chksum=2768)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:00:09           TestGeneric_flow_api: vf0: 
01/09/2020 03:00:09           TestGeneric_flow_api: vf1: 
01/09/2020 03:00:11             dut.10.240.183.141: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:00:11             dut.10.240.183.141: stop
01/09/2020 03:00:11             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:00:11           TestGeneric_flow_api: pf: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:00:13             dut.10.240.183.141: start
01/09/2020 03:00:13             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:00:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929214.1719549 root@10.240.183.89:/tmp/tester/
01/09/2020 03:00:16                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929214.1719549 root@10.240.183.89:/tmp/tester/
01/09/2020 03:00:17                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929214.1719549
01/09/2020 03:00:18                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=4003, type=34525)/IPv6(version=6, tc=2, fl=0, plen=40, nh=6, hlim=20, src='2001::1', dst='2001::2')/TCP(sport=32, dport=33, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=39636, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:00:22           TestGeneric_flow_api: vf0: 
01/09/2020 03:00:22           TestGeneric_flow_api: vf1: 
01/09/2020 03:00:24             dut.10.240.183.141: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:00:24             dut.10.240.183.141: stop
01/09/2020 03:00:24             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 0/Queue=12 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:00:24           TestGeneric_flow_api: pf: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:00:26             dut.10.240.183.141: start
01/09/2020 03:00:27             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:00:27                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929227.337982 root@10.240.183.89:/tmp/tester/
01/09/2020 03:00:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929227.337982 root@10.240.183.89:/tmp/tester/
01/09/2020 03:00:31                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929227.337982
01/09/2020 03:00:31                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2140, type=34525)/IPv6(version=6, tc=4, fl=0, plen=48, nh=132, hlim=40, src='2001::1', dst='2001::2')/SCTP(sport=44, dport=45, tag=1, chksum=3665959070)/SCTPChunkData(type=0, reserved=0, delay_sack=0, unordered=0, beginning=0, ending=0, len=36, tsn=0, stream_id=0, stream_seq=0, proto_id=0, data=b'XXXXXXXXXXXXXXXXXXXX')
01/09/2020 03:00:36           TestGeneric_flow_api: vf0: 
01/09/2020 03:00:36           TestGeneric_flow_api: vf1: 
01/09/2020 03:00:38             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=106 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_SCTP  - l2_len=18 - l3_len=40 - l4_len=12 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:00:38             dut.10.240.183.141: stop
01/09/2020 03:00:38             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
01/09/2020 03:00:38           TestGeneric_flow_api: pf: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=106 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_SCTP  - l2_len=18 - l3_len=40 - l4_len=12 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:00:40             dut.10.240.183.141: start
01/09/2020 03:00:40             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:00:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929240.5598657 root@10.240.183.89:/tmp/tester/
01/09/2020 03:00:42                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929240.5598657 root@10.240.183.89:/tmp/tester/
01/09/2020 03:00:44                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929240.5598657
01/09/2020 03:00:45                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3416, type=34525)/IPv6(version=6, tc=4, fl=0, plen=48, nh=132, hlim=40, src='2001::1', dst='2001::2')/SCTP(sport=44, dport=45, tag=1, chksum=3665959070)/SCTPChunkData(type=0, reserved=0, delay_sack=0, unordered=0, beginning=0, ending=0, len=36, tsn=0, stream_id=0, stream_seq=0, proto_id=0, data=b'XXXXXXXXXXXXXXXXXXXX')
01/09/2020 03:00:49           TestGeneric_flow_api: vf0: 
01/09/2020 03:00:49           TestGeneric_flow_api: vf1: 
01/09/2020 03:00:51             dut.10.240.183.141: 
01/09/2020 03:00:51             dut.10.240.183.141: stop
01/09/2020 03:00:51             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 03:00:51           TestGeneric_flow_api: pf: 
01/09/2020 03:00:53             dut.10.240.183.141: start
01/09/2020 03:00:53             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:00:53                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929253.7308583 root@10.240.183.89:/tmp/tester/
01/09/2020 03:00:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929253.7308583 root@10.240.183.89:/tmp/tester/
01/09/2020 03:00:57                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929253.7308583
01/09/2020 03:00:58                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2062, type=34525)/IPv6(version=6, tc=2, fl=0, plen=40, nh=6, hlim=20, src='2001::1', dst='2001::2')/TCP(sport=32, dport=33, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=39636, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:01:02           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 03:01:02           TestGeneric_flow_api: vf1: 
01/09/2020 03:01:04             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 03:01:04             dut.10.240.183.141: stop
01/09/2020 03:01:04             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 03:01:04           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

01/09/2020 03:01:06             dut.10.240.183.141: start
01/09/2020 03:01:06             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:01:06             dut.10.240.183.141: flow list 0
01/09/2020 03:01:06             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH VLAN IPV4 => QUEUE
1	0	0	i--	ETH VLAN IPV4 UDP => QUEUE
2	0	0	i--	ETH VLAN IPV4 TCP => QUEUE
3	0	0	i--	ETH VLAN IPV4 SCTP => QUEUE
4	0	0	i-t	ETH VLAN IPV4 VF => QUEUE
5	0	0	i-t	ETH VLAN IPV4 SCTP VF => QUEUE
6	0	0	i--	ETH VLAN IPV4 SCTP => DROP
7	0	0	i-t	ETH VLAN IPV4 UDP VF => DROP
8	0	0	i--	ETH VLAN IPV6 => QUEUE
9	0	0	i--	ETH VLAN IPV6 UDP => QUEUE
10	0	0	i--	ETH VLAN IPV6 TCP => QUEUE
11	0	0	i--	ETH VLAN IPV6 SCTP => QUEUE
12	0	0	i-t	ETH VLAN IPV6 VF => QUEUE
13	0	0	i-t	ETH VLAN IPV6 TCP VF => QUEUE
14	0	0	i--	ETH VLAN IPV6 SCTP => DROP
15	0	0	i-t	ETH VLAN IPV6 TCP VF => DROP
01/09/2020 03:01:06             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 03:01:06             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 03:01:06             dut.10.240.183.141: flow list 0
01/09/2020 03:01:07             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH VLAN IPV4 UDP => QUEUE
2	0	0	i--	ETH VLAN IPV4 TCP => QUEUE
3	0	0	i--	ETH VLAN IPV4 SCTP => QUEUE
4	0	0	i-t	ETH VLAN IPV4 VF => QUEUE
5	0	0	i-t	ETH VLAN IPV4 SCTP VF => QUEUE
6	0	0	i--	ETH VLAN IPV4 SCTP => DROP
7	0	0	i-t	ETH VLAN IPV4 UDP VF => DROP
8	0	0	i--	ETH VLAN IPV6 => QUEUE
9	0	0	i--	ETH VLAN IPV6 UDP => QUEUE
10	0	0	i--	ETH VLAN IPV6 TCP => QUEUE
11	0	0	i--	ETH VLAN IPV6 SCTP => QUEUE
12	0	0	i-t	ETH VLAN IPV6 VF => QUEUE
13	0	0	i-t	ETH VLAN IPV6 TCP VF => QUEUE
14	0	0	i--	ETH VLAN IPV6 SCTP => DROP
15	0	0	i-t	ETH VLAN IPV6 TCP VF => DROP
01/09/2020 03:01:07             dut.10.240.183.141: flow flush 0
01/09/2020 03:01:07             dut.10.240.183.141: 
01/09/2020 03:01:07             dut.10.240.183.141: flow list 0
01/09/2020 03:01:07             dut.10.240.183.141: 
01/09/2020 03:01:07           TestGeneric_flow_api: Test Case test_fdir_for_vlan Result PASSED:
01/09/2020 03:01:13             dut.10.240.183.141: quit
01/09/2020 03:01:14             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
01/09/2020 03:01:19             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 03:01:20           TestGeneric_flow_api: Test Case test_fdir_for_vxlan Result SKIPPED:
01/09/2020 03:01:20           TestGeneric_flow_api: Test Case test_flexbytes_filter Result SKIPPED:
01/09/2020 03:01:20           TestGeneric_flow_api: Test Case test_n_tuple_filter Result SKIPPED:
01/09/2020 03:01:20           TestGeneric_flow_api: Test Case test_syn_filter Result SKIPPED:
01/09/2020 03:01:20           TestGeneric_flow_api: Test Case test_tunnel_filter_nvgre Begin
01/09/2020 03:01:20             dut.10.240.183.141: 
01/09/2020 03:01:20                         tester: 
01/09/2020 03:01:20             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 03:01:22             dut.10.240.183.141: modprobe uio
01/09/2020 03:01:22             dut.10.240.183.141: 
01/09/2020 03:01:22             dut.10.240.183.141: insmod ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko
01/09/2020 03:01:22             dut.10.240.183.141: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko: File exists
01/09/2020 03:01:22             dut.10.240.183.141: modprobe vfio-pci
01/09/2020 03:01:22             dut.10.240.183.141: 
01/09/2020 03:01:27             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_7380_20200901023552   --socket-mem 1024,1024  --legacy-mem  -- -i --disable-rss --rxq=16 --txq=16
01/09/2020 03:01:30             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 03:01:40             dut.10.240.183.141: set fwd rxonly
01/09/2020 03:01:40             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 03:01:40             dut.10.240.183.141: set verbose 1
01/09/2020 03:01:40             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 03:01:40             dut.10.240.183.141: start
01/09/2020 03:01:40             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:01:53             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre / eth dst is 00:11:22:33:44:66  / end actions pf / queue index 4 /  end
01/09/2020 03:01:53             dut.10.240.183.141: 
01/09/2020 03:01:53                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929313.5114832 root@10.240.183.89:/tmp/tester/
01/09/2020 03:01:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929313.5114832 root@10.240.183.89:/tmp/tester/
01/09/2020 03:01:57                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929313.5114832
01/09/2020 03:01:58                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=62, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31886, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=256, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:02:02           TestGeneric_flow_api: vf0:  
01/09/2020 03:02:02           TestGeneric_flow_api: vf1:  
01/09/2020 03:02:04             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:02:04             dut.10.240.183.141: stop
01/09/2020 03:02:04             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:02:04           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:02:06             dut.10.240.183.141: start
01/09/2020 03:02:06             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:02:06             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 777 / eth dst is 00:11:22:33:44:66  / end actions pf / queue index 15 /  end
01/09/2020 03:02:06             dut.10.240.183.141: 
01/09/2020 03:02:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929326.7726974 root@10.240.183.89:/tmp/tester/
01/09/2020 03:02:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929326.7726974 root@10.240.183.89:/tmp/tester/
01/09/2020 03:02:10                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929326.7726974
01/09/2020 03:02:11                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=62, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31886, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=198912, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:02:15           TestGeneric_flow_api: vf0: 
01/09/2020 03:02:15           TestGeneric_flow_api: vf1: 
01/09/2020 03:02:17             dut.10.240.183.141: 
testpmd> port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0xf
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:02:17             dut.10.240.183.141: stop
01/09/2020 03:02:17             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 0/Queue=15 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:02:17           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0xf
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:02:19             dut.10.240.183.141: start
01/09/2020 03:02:19             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:02:19             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre / eth dst is 00:11:22:33:44:66 / vlan tci is 3630  / end actions pf / queue index 14 /  end
01/09/2020 03:02:19             dut.10.240.183.141: 
01/09/2020 03:02:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929339.8999877 root@10.240.183.89:/tmp/tester/
01/09/2020 03:02:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929339.8999877 root@10.240.183.89:/tmp/tester/
01/09/2020 03:02:23                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929339.8999877
01/09/2020 03:02:24                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=256, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3630, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:02:28           TestGeneric_flow_api: vf0: 
01/09/2020 03:02:28           TestGeneric_flow_api: vf1: 
01/09/2020 03:02:30             dut.10.240.183.141: 
testpmd> port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0xe
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:02:30             dut.10.240.183.141: stop
01/09/2020 03:02:30             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 0/Queue=14 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:02:30           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0xe
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:02:32             dut.10.240.183.141: start
01/09/2020 03:02:32             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:02:33             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 1311 / eth dst is 00:11:22:33:44:66 / vlan tci is 3182  / end actions pf / queue index 5 /  end
01/09/2020 03:02:33             dut.10.240.183.141: 
01/09/2020 03:02:33                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929353.1162274 root@10.240.183.89:/tmp/tester/
01/09/2020 03:02:34                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929353.1162274 root@10.240.183.89:/tmp/tester/
01/09/2020 03:02:36                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929353.1162274
01/09/2020 03:02:37                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=335616, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3182, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:02:41           TestGeneric_flow_api: vf0: 
01/09/2020 03:02:41           TestGeneric_flow_api: vf1: 
01/09/2020 03:02:43             dut.10.240.183.141: 
testpmd> port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x5
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:02:43             dut.10.240.183.141: stop
01/09/2020 03:02:43             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:02:43           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x5
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:02:45             dut.10.240.183.141: start
01/09/2020 03:02:46             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:02:46             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv4 / nvgre tni is 3729 / eth dst is 00:11:22:33:44:66  / end actions pf / queue index 15 /  end
01/09/2020 03:02:46             dut.10.240.183.141: 
01/09/2020 03:02:46                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929366.433801 root@10.240.183.89:/tmp/tester/
01/09/2020 03:02:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929366.433801 root@10.240.183.89:/tmp/tester/
01/09/2020 03:02:50                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929366.433801
01/09/2020 03:02:50                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=62, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31886, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=954624, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:02:55           TestGeneric_flow_api: vf0: 
01/09/2020 03:02:55           TestGeneric_flow_api: vf1: 
01/09/2020 03:02:57             dut.10.240.183.141: 
testpmd> port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0xf
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:02:57             dut.10.240.183.141: stop
01/09/2020 03:02:57             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 0/Queue=15 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:02:57           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0xf
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:02:59             dut.10.240.183.141: start
01/09/2020 03:02:59             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:02:59             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 1434 / eth dst is 00:11:22:33:44:66 / vlan tci is 4000  / end actions vf id 0 / queue index 2 /  end
01/09/2020 03:02:59             dut.10.240.183.141: 
01/09/2020 03:02:59                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929379.7037513 root@10.240.183.89:/tmp/tester/
01/09/2020 03:03:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929379.7037513 root@10.240.183.89:/tmp/tester/
01/09/2020 03:03:03                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929379.7037513
01/09/2020 03:03:04                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=367104, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=4000, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:03:08           TestGeneric_flow_api: vf0: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x2
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:03:08           TestGeneric_flow_api: vf1: 
01/09/2020 03:03:10             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:03:10             dut.10.240.183.141: stop
01/09/2020 03:03:10             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 03:03:10           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:03:12             dut.10.240.183.141: start
01/09/2020 03:03:12             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:03:12             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv4 / nvgre tni is 886 / eth dst is 00:11:22:33:44:66  / end actions vf id 1 / queue index 2 /  end
01/09/2020 03:03:12             dut.10.240.183.141: 
01/09/2020 03:03:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929392.9155908 root@10.240.183.89:/tmp/tester/
01/09/2020 03:03:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929392.9155908 root@10.240.183.89:/tmp/tester/
01/09/2020 03:03:16                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929392.9155908
01/09/2020 03:03:17                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=62, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31886, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=226816, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:03:21           TestGeneric_flow_api: vf0: 
01/09/2020 03:03:21           TestGeneric_flow_api: vf1: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0x2
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:03:23             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:03:23             dut.10.240.183.141: stop
01/09/2020 03:03:23             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 03:03:23           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:03:25             dut.10.240.183.141: start
01/09/2020 03:03:25             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:03:26                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929406.020903 root@10.240.183.89:/tmp/tester/
01/09/2020 03:03:27                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929406.020903 root@10.240.183.89:/tmp/tester/
01/09/2020 03:03:29                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929406.020903
01/09/2020 03:03:30                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=106, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31842, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=256, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=1, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:03:34           TestGeneric_flow_api: vf0: 
01/09/2020 03:03:34           TestGeneric_flow_api: vf1: 
01/09/2020 03:03:36             dut.10.240.183.141: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=120 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:03:36             dut.10.240.183.141: stop
01/09/2020 03:03:36             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:03:36           TestGeneric_flow_api: pf: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=120 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:03:38             dut.10.240.183.141: start
01/09/2020 03:03:38             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:03:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929419.0904255 root@10.240.183.89:/tmp/tester/
01/09/2020 03:03:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929419.0904255 root@10.240.183.89:/tmp/tester/
01/09/2020 03:03:42                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929419.0904255
01/09/2020 03:03:43                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=102, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31846, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=954624, seqence_number=None)/Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:03:47           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=116 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:03:47           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=116 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:03:49             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=116 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:03:49             dut.10.240.183.141: stop
01/09/2020 03:03:49             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 03:03:49           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=116 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:03:51             dut.10.240.183.141: start
01/09/2020 03:03:51             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:03:52                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929432.2602386 root@10.240.183.89:/tmp/tester/
01/09/2020 03:03:54                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929432.2602386 root@10.240.183.89:/tmp/tester/
01/09/2020 03:03:55                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929432.2602386
01/09/2020 03:03:56                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=106, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31842, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=367104, seqence_number=None)/Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=4000, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:04:00           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=120 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:04:00           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=120 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:04:02             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=120 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:04:02             dut.10.240.183.141: stop
01/09/2020 03:04:03             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 03:04:03           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=120 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:04:05             dut.10.240.183.141: start
01/09/2020 03:04:05             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:04:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929445.426754 root@10.240.183.89:/tmp/tester/
01/09/2020 03:04:07                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929445.426754 root@10.240.183.89:/tmp/tester/
01/09/2020 03:04:09                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929445.426754
01/09/2020 03:04:09                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=102, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31846, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=226816, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:04:14           TestGeneric_flow_api: vf0: 
01/09/2020 03:04:14           TestGeneric_flow_api: vf1: 
01/09/2020 03:04:16             dut.10.240.183.141: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=116 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:04:16             dut.10.240.183.141: stop
01/09/2020 03:04:16             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:04:16           TestGeneric_flow_api: pf: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=116 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:04:18             dut.10.240.183.141: start
01/09/2020 03:04:18             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:04:18             dut.10.240.183.141: flow list 0
01/09/2020 03:04:18             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 NVGRE ETH => PF QUEUE
1	0	0	i--	ETH IPV4 NVGRE ETH => PF QUEUE
2	0	0	i--	ETH IPV4 NVGRE ETH VLAN => PF QUEUE
3	0	0	i--	ETH IPV4 NVGRE ETH VLAN => PF QUEUE
4	0	0	i--	ETH IPV4 NVGRE ETH => PF QUEUE
5	0	0	i--	ETH IPV4 NVGRE ETH VLAN => VF QUEUE
6	0	0	i--	ETH IPV4 NVGRE ETH => VF QUEUE
01/09/2020 03:04:18             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 03:04:18             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 03:04:18             dut.10.240.183.141: flow list 0
01/09/2020 03:04:18             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 NVGRE ETH => PF QUEUE
2	0	0	i--	ETH IPV4 NVGRE ETH VLAN => PF QUEUE
3	0	0	i--	ETH IPV4 NVGRE ETH VLAN => PF QUEUE
4	0	0	i--	ETH IPV4 NVGRE ETH => PF QUEUE
5	0	0	i--	ETH IPV4 NVGRE ETH VLAN => VF QUEUE
6	0	0	i--	ETH IPV4 NVGRE ETH => VF QUEUE
01/09/2020 03:04:18             dut.10.240.183.141: flow flush 0
01/09/2020 03:04:18             dut.10.240.183.141: 
01/09/2020 03:04:18             dut.10.240.183.141: flow list 0
01/09/2020 03:04:18             dut.10.240.183.141: 
01/09/2020 03:04:18           TestGeneric_flow_api: Test Case test_tunnel_filter_nvgre Result PASSED:
01/09/2020 03:04:25             dut.10.240.183.141: quit
01/09/2020 03:04:26             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
01/09/2020 03:04:31             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 03:04:31           TestGeneric_flow_api: Test Case test_tunnel_filter_vxlan Begin
01/09/2020 03:04:31             dut.10.240.183.141: 
01/09/2020 03:04:32                         tester: 
01/09/2020 03:04:32             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 03:04:33             dut.10.240.183.141: modprobe uio
01/09/2020 03:04:33             dut.10.240.183.141: 
01/09/2020 03:04:33             dut.10.240.183.141: insmod ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko
01/09/2020 03:04:33             dut.10.240.183.141: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko: File exists
01/09/2020 03:04:33             dut.10.240.183.141: modprobe vfio-pci
01/09/2020 03:04:34             dut.10.240.183.141: 
01/09/2020 03:04:38             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_7380_20200901023552   --socket-mem 1024,1024 --legacy-mem  -- -i --disable-rss --rxq=16 --txq=16
01/09/2020 03:04:41             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_7380_20200901023552/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
01/09/2020 03:04:51             dut.10.240.183.141: rx_vxlan_port add 4789 0
01/09/2020 03:04:51             dut.10.240.183.141: 
01/09/2020 03:04:51             dut.10.240.183.141: set fwd rxonly
01/09/2020 03:04:51             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 03:04:51             dut.10.240.183.141: set verbose 1
01/09/2020 03:04:52             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 03:04:52             dut.10.240.183.141: start
01/09/2020 03:04:52             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:05:04             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan / eth dst is 00:11:22:33:44:66  / end actions pf / queue index 4 /  end
01/09/2020 03:05:05             dut.10.240.183.141: 
01/09/2020 03:05:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929505.02604 root@10.240.183.89:/tmp/tester/
01/09/2020 03:05:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929505.02604 root@10.240.183.89:/tmp/tester/
01/09/2020 03:05:08                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929505.02604
01/09/2020 03:05:09                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=70, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31908, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=50, chksum=20233)/VXLAN(flags=12, reserved0=0, NextProtocol=3, reserved1=None, gpflags=None, gpid=None, vni=0, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:05:13           TestGeneric_flow_api: vf0:  
01/09/2020 03:05:13           TestGeneric_flow_api: vf1:  
01/09/2020 03:05:15             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 0 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:05:15             dut.10.240.183.141: stop
01/09/2020 03:05:15             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:05:15           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 0 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:05:17             dut.10.240.183.141: start
01/09/2020 03:05:17             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:05:18             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan vni is 842 / eth dst is 00:11:22:33:44:66  / end actions pf / queue index 4 /  end
01/09/2020 03:05:18             dut.10.240.183.141: 
01/09/2020 03:05:18                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929518.2016184 root@10.240.183.89:/tmp/tester/
01/09/2020 03:05:20                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929518.2016184 root@10.240.183.89:/tmp/tester/
01/09/2020 03:05:21                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929518.2016184
01/09/2020 03:05:22                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=70, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31908, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=50, chksum=2313)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=842, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:05:26           TestGeneric_flow_api: vf0: 
01/09/2020 03:05:26           TestGeneric_flow_api: vf1: 
01/09/2020 03:05:28             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 842 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:05:28             dut.10.240.183.141: stop
01/09/2020 03:05:29             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:05:29           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 842 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:05:31             dut.10.240.183.141: start
01/09/2020 03:05:31             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:05:31             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan / eth dst is 00:11:22:33:44:66 / vlan tci is 4072  / end actions pf / queue index 1 /  end
01/09/2020 03:05:31             dut.10.240.183.141: 
01/09/2020 03:05:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929531.5201464 root@10.240.183.89:/tmp/tester/
01/09/2020 03:05:33                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929531.5201464 root@10.240.183.89:/tmp/tester/
01/09/2020 03:05:35                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929531.5201464
01/09/2020 03:05:36                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=74, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31904, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=54, chksum=19993)/VXLAN(flags=12, reserved0=0, NextProtocol=3, reserved1=None, gpflags=None, gpid=None, vni=0, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=4072, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:05:40           TestGeneric_flow_api: vf0: 
01/09/2020 03:05:40           TestGeneric_flow_api: vf1: 
01/09/2020 03:05:42             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 0 - Receive queue=0x1
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:05:42             dut.10.240.183.141: stop
01/09/2020 03:05:42             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 0/Queue= 1 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:05:42           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 0 - Receive queue=0x1
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:05:44             dut.10.240.183.141: start
01/09/2020 03:05:44             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:05:44             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan vni is 3031 / eth dst is 00:11:22:33:44:66 / vlan tci is 2022  / end actions pf / queue index 14 /  end
01/09/2020 03:05:44             dut.10.240.183.141: 
01/09/2020 03:05:44                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929544.84472 root@10.240.183.89:/tmp/tester/
01/09/2020 03:05:46                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929544.84472 root@10.240.183.89:/tmp/tester/
01/09/2020 03:05:48                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929544.84472
01/09/2020 03:05:49                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=74, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31904, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=54, chksum=33554)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=3031, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=2022, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:05:53           TestGeneric_flow_api: vf0: 
01/09/2020 03:05:53           TestGeneric_flow_api: vf1: 
01/09/2020 03:05:55             dut.10.240.183.141: 
testpmd> port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 3031 - Receive queue=0xe
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:05:55             dut.10.240.183.141: stop
01/09/2020 03:05:55             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 0/Queue=14 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:05:55           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 3031 - Receive queue=0xe
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:05:57             dut.10.240.183.141: start
01/09/2020 03:05:57             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:05:57             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv4 / udp / vxlan vni is 3482 / eth dst is 00:11:22:33:44:66  / end actions pf / queue index 4 /  end
01/09/2020 03:05:58             dut.10.240.183.141: 
01/09/2020 03:05:58                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929558.0565345 root@10.240.183.89:/tmp/tester/
01/09/2020 03:05:59                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929558.0565345 root@10.240.183.89:/tmp/tester/
01/09/2020 03:06:01                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929558.0565345
01/09/2020 03:06:02                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=70, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31908, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=50, chksum=47358)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=3482, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:06:06           TestGeneric_flow_api: vf0: 
01/09/2020 03:06:06           TestGeneric_flow_api: vf1: 
01/09/2020 03:06:08             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 3482 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:06:08             dut.10.240.183.141: stop
01/09/2020 03:06:08             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:06:08           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 3482 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:06:10             dut.10.240.183.141: start
01/09/2020 03:06:10             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:06:11             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan vni is 1150 / eth dst is 00:11:22:33:44:66 / vlan tci is 1055  / end actions vf id 0 / queue index 0 /  end
01/09/2020 03:06:11             dut.10.240.183.141: 
01/09/2020 03:06:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929571.3338637 root@10.240.183.89:/tmp/tester/
01/09/2020 03:06:13                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929571.3338637 root@10.240.183.89:/tmp/tester/
01/09/2020 03:06:15                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929571.3338637
01/09/2020 03:06:15                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=74, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31904, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=54, chksum=57312)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=1150, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=1055, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:06:20           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1150 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:06:20           TestGeneric_flow_api: vf1: 
01/09/2020 03:06:22             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1150 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:06:22             dut.10.240.183.141: stop
01/09/2020 03:06:22             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 03:06:22           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1150 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:06:24             dut.10.240.183.141: start
01/09/2020 03:06:24             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:06:24             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv4 / udp / vxlan vni is 479 / eth dst is 00:11:22:33:44:66  / end actions vf id 1 / queue index 1 /  end
01/09/2020 03:06:24             dut.10.240.183.141: 
01/09/2020 03:06:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929584.6518466 root@10.240.183.89:/tmp/tester/
01/09/2020 03:06:26                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929584.6518466 root@10.240.183.89:/tmp/tester/
01/09/2020 03:06:28                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929584.6518466
01/09/2020 03:06:29                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=70, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31908, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=50, chksum=29706)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=479, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:06:33           TestGeneric_flow_api: vf0: 
01/09/2020 03:06:33           TestGeneric_flow_api: vf1: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 479 - Receive queue=0x1
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:06:35             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 479 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:06:35             dut.10.240.183.141: stop
01/09/2020 03:06:35             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 03:06:35           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 479 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:06:37             dut.10.240.183.141: start
01/09/2020 03:06:37             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:06:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929597.807824 root@10.240.183.89:/tmp/tester/
01/09/2020 03:06:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929597.807824 root@10.240.183.89:/tmp/tester/
01/09/2020 03:06:41                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929597.807824
01/09/2020 03:06:42                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=114, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31864, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=94, chksum=56893)/VXLAN(flags=12, reserved0=0, NextProtocol=3, reserved1=None, gpflags=None, gpid=None, vni=0, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=11, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:06:46           TestGeneric_flow_api: vf0: 
01/09/2020 03:06:46           TestGeneric_flow_api: vf1: 
01/09/2020 03:06:48             dut.10.240.183.141: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=128 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 0 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:06:48             dut.10.240.183.141: stop
01/09/2020 03:06:48             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:06:48           TestGeneric_flow_api: pf: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=128 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 0 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:06:50             dut.10.240.183.141: start
01/09/2020 03:06:50             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:06:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929610.981754 root@10.240.183.89:/tmp/tester/
01/09/2020 03:06:52                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929610.981754 root@10.240.183.89:/tmp/tester/
01/09/2020 03:06:54                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929610.981754
01/09/2020 03:06:55                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=110, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31868, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=90, chksum=23104)/VXLAN(flags=12, reserved0=0, NextProtocol=3, reserved1=None, gpflags=None, gpid=None, vni=5, reserved2=0)/Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:06:59           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=124 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 5 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:06:59           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=124 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 5 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:07:01             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=124 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 5 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:07:01             dut.10.240.183.141: stop
01/09/2020 03:07:01             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 03:07:01           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=124 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 5 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:07:03             dut.10.240.183.141: start
01/09/2020 03:07:03             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:07:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929624.2060912 root@10.240.183.89:/tmp/tester/
01/09/2020 03:07:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929624.2060912 root@10.240.183.89:/tmp/tester/
01/09/2020 03:07:07                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929624.2060912
01/09/2020 03:07:08                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=114, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31864, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=94, chksum=23572)/VXLAN(flags=12, reserved0=0, NextProtocol=3, reserved1=None, gpflags=None, gpid=None, vni=1150, reserved2=0)/Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=1055, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:07:12           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=128 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1150 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:07:12           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=128 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1150 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:07:14             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=128 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1150 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:07:14             dut.10.240.183.141: stop
01/09/2020 03:07:15             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
01/09/2020 03:07:15           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=128 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1150 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:07:17             dut.10.240.183.141: start
01/09/2020 03:07:17             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:07:17                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598929637.4304345 root@10.240.183.89:/tmp/tester/
01/09/2020 03:07:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598929637.4304345 root@10.240.183.89:/tmp/tester/
01/09/2020 03:07:21                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598929637.4304345
01/09/2020 03:07:21                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=110, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31868, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=90, chksum=32847)/VXLAN(flags=12, reserved0=0, NextProtocol=3, reserved1=None, gpflags=None, gpid=None, vni=479, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:07:26           TestGeneric_flow_api: vf0: 
01/09/2020 03:07:26           TestGeneric_flow_api: vf1: 
01/09/2020 03:07:28             dut.10.240.183.141: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=124 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 479 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:07:28             dut.10.240.183.141: stop
01/09/2020 03:07:28             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
01/09/2020 03:07:28           TestGeneric_flow_api: pf: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=124 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 479 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 03:07:30             dut.10.240.183.141: start
01/09/2020 03:07:30             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:07:30             dut.10.240.183.141: flow list 0
01/09/2020 03:07:30             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP VXLAN ETH => PF QUEUE
1	0	0	i--	ETH IPV4 UDP VXLAN ETH => PF QUEUE
2	0	0	i--	ETH IPV4 UDP VXLAN ETH VLAN => PF QUEUE
3	0	0	i--	ETH IPV4 UDP VXLAN ETH VLAN => PF QUEUE
4	0	0	i--	ETH IPV4 UDP VXLAN ETH => PF QUEUE
5	0	0	i--	ETH IPV4 UDP VXLAN ETH VLAN => VF QUEUE
6	0	0	i--	ETH IPV4 UDP VXLAN ETH => VF QUEUE
01/09/2020 03:07:30             dut.10.240.183.141: flow destroy 0 rule 0
01/09/2020 03:07:30             dut.10.240.183.141: 
Flow rule #0 destroyed
01/09/2020 03:07:30             dut.10.240.183.141: flow list 0
01/09/2020 03:07:30             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 UDP VXLAN ETH => PF QUEUE
2	0	0	i--	ETH IPV4 UDP VXLAN ETH VLAN => PF QUEUE
3	0	0	i--	ETH IPV4 UDP VXLAN ETH VLAN => PF QUEUE
4	0	0	i--	ETH IPV4 UDP VXLAN ETH => PF QUEUE
5	0	0	i--	ETH IPV4 UDP VXLAN ETH VLAN => VF QUEUE
6	0	0	i--	ETH IPV4 UDP VXLAN ETH => VF QUEUE
01/09/2020 03:07:30             dut.10.240.183.141: flow flush 0
01/09/2020 03:07:30             dut.10.240.183.141: 
01/09/2020 03:07:30             dut.10.240.183.141: flow list 0
01/09/2020 03:07:30             dut.10.240.183.141: 
01/09/2020 03:07:30           TestGeneric_flow_api: Test Case test_tunnel_filter_vxlan Result PASSED:
01/09/2020 03:07:37             dut.10.240.183.141: quit
01/09/2020 03:07:38             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
01/09/2020 03:07:43             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 03:07:43                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
01/09/2020 03:27:38                            dts: 
TEST SUITE : TestGeneric_flow_api
01/09/2020 03:27:38                            dts: NIC :        fortville_spirit
01/09/2020 03:27:38             dut.10.240.183.141: 
01/09/2020 03:27:38                         tester: 
01/09/2020 03:27:41           TestGeneric_flow_api: Test Case test_fdir_for_vxlan Begin
01/09/2020 03:27:41             dut.10.240.183.141: 
01/09/2020 03:27:41                         tester: 
01/09/2020 03:27:41             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 03:27:42             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_1608_20200901032723   -- -i --pkt-filter-mode=perfect-tunnel --disable-rss --rxq=16 --txq=16
01/09/2020 03:27:43             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_1608_20200901032723/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 03:27:53             dut.10.240.183.141: set fwd rxonly
01/09/2020 03:27:53             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 03:27:53             dut.10.240.183.141: set verbose 1
01/09/2020 03:27:54             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 03:27:54             dut.10.240.183.141: start
01/09/2020 03:27:54             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:27:56             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan vni is 1294 / eth dst is 00:11:22:33:44:66 / vlan tci is 2701  / end actions pf / queue index 0 /  end
01/09/2020 03:27:56             dut.10.240.183.141: 
01/09/2020 03:27:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598930876.187125 root@10.240.183.89:/tmp/tester/
01/09/2020 03:27:58                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598930876.187125 root@10.240.183.89:/tmp/tester/
01/09/2020 03:27:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598930876.187125
01/09/2020 03:28:00                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=74, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31904, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=54, chksum=18802)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=1294, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=2701, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:28:02             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - 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 

01/09/2020 03:28:02             dut.10.240.183.141: stop
01/09/2020 03:28:02             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 03:28:02           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - 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 

01/09/2020 03:28:04             dut.10.240.183.141: start
01/09/2020 03:28:04             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 03:28:04             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan vni is 958 / eth dst is 00:11:22:33:44:66 / vlan tci is 2266  / end actions pf / drop /  end
01/09/2020 03:28:04             dut.10.240.183.141: 
01/09/2020 03:28:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598930884.892745 root@10.240.183.89:/tmp/tester/
01/09/2020 03:28:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598930884.892745 root@10.240.183.89:/tmp/tester/
01/09/2020 03:28:08                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598930884.892745
01/09/2020 03:28:09                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=74, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31904, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=54, chksum=39718)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=958, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=2266, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 03:28:11             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - 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 

01/09/2020 03:28:11             dut.10.240.183.141: stop
01/09/2020 03:28:11             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 03:28:11           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - 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 

01/09/2020 03:28:13           TestGeneric_flow_api: Test Case test_fdir_for_vxlan Result FAILED: 'the packet is not dropped.'
01/09/2020 03:28:13             dut.10.240.183.141: quit
01/09/2020 03:28:15             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 03:28:17             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 03:28:18                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
01/09/2020 04:59:52                            dts: 
TEST SUITE : TestGeneric_flow_api
01/09/2020 04:59:52                            dts: NIC :        fortville_spirit
01/09/2020 04:59:52             dut.10.240.183.141: 
01/09/2020 04:59:52                         tester: 
01/09/2020 04:59:55           TestGeneric_flow_api: Test Case test_fdir_for_vxlan Begin
01/09/2020 04:59:55             dut.10.240.183.141: 
01/09/2020 04:59:55                         tester: 
01/09/2020 04:59:55             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 04:59:56             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_2460_20200901045937   -- -i --pkt-filter-mode=perfect-tunnel --disable-rss --rxq=16 --txq=16
01/09/2020 04:59:58             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_2460_20200901045937/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 05:00:08             dut.10.240.183.141: set fwd rxonly
01/09/2020 05:00:08             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 05:00:08             dut.10.240.183.141: set verbose 1
01/09/2020 05:00:08             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 05:00:08             dut.10.240.183.141: start
01/09/2020 05:00:08             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 05:00:10             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan vni is 1221 / eth dst is 00:11:22:33:44:66 / vlan tci is 842  / end actions pf / queue index 6 /  end
01/09/2020 05:00:10             dut.10.240.183.141: 
01/09/2020 05:00:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598936410.387338 root@10.240.183.89:/tmp/tester/
01/09/2020 05:00:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598936410.387338 root@10.240.183.89:/tmp/tester/
01/09/2020 05:00:14                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598936410.387338
01/09/2020 05:00:14                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=74, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31904, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=54, chksum=39349)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=1221, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=842, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 05:00:16             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - 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 

01/09/2020 05:00:16             dut.10.240.183.141: stop
01/09/2020 05:00:16             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 05:00:16           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - 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 

01/09/2020 05:00:18           TestGeneric_flow_api: Test Case test_fdir_for_vxlan Result FAILED: "the actual queue doesn't equal to the expected queue."
01/09/2020 05:00:18             dut.10.240.183.141: quit
01/09/2020 05:00:20             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 05:00:22             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 05:00:23                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
01/09/2020 05:33:00                            dts: 
TEST SUITE : TestGeneric_flow_api
01/09/2020 05:33:00                            dts: NIC :        fortville_spirit
01/09/2020 05:33:00             dut.10.240.183.141: 
01/09/2020 05:33:00                         tester: 
01/09/2020 05:33:03           TestGeneric_flow_api: Test Case test_fdir_for_nvgre Begin
01/09/2020 05:33:03             dut.10.240.183.141: 
01/09/2020 05:33:03                         tester: 
01/09/2020 05:33:03             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 05:33:03             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_3154_20200901053245   -- -i --pkt-filter-mode=perfect-tunnel --disable-rss --rxq=16 --txq=16
01/09/2020 05:33:05             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3154_20200901053245/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 05:33:15             dut.10.240.183.141: set fwd rxonly
01/09/2020 05:33:15             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 05:33:15             dut.10.240.183.141: set verbose 1
01/09/2020 05:33:15             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 05:33:15             dut.10.240.183.141: start
01/09/2020 05:33:16             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 05:33:18             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 1823 / eth dst is 00:11:22:33:44:66 / vlan tci is 960  / end actions pf / queue index 5 /  end
01/09/2020 05:33:18             dut.10.240.183.141: 
01/09/2020 05:33:18                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598938398.089394 root@10.240.183.89:/tmp/tester/
01/09/2020 05:33:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598938398.089394 root@10.240.183.89:/tmp/tester/
01/09/2020 05:33:21                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598938398.089394
01/09/2020 05:33:22                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=466688, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=960, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 05:33:24             dut.10.240.183.141: 
testpmd> port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x5
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 05:33:24             dut.10.240.183.141: stop
01/09/2020 05:33:24             dut.10.240.183.141: 
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.
01/09/2020 05:33:24           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x5
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 05:33:26             dut.10.240.183.141: start
01/09/2020 05:33:26             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 05:33:26             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 859 / eth dst is 00:11:22:33:44:66 / vlan tci is 1466  / end actions pf / drop /  end
01/09/2020 05:33:26             dut.10.240.183.141: 
01/09/2020 05:33:26                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598938406.8110929 root@10.240.183.89:/tmp/tester/
01/09/2020 05:33:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598938406.8110929 root@10.240.183.89:/tmp/tester/
01/09/2020 05:33:30                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598938406.8110929
01/09/2020 05:33:31                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=219904, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=1466, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 05:33:33             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 05:33:33             dut.10.240.183.141: stop
01/09/2020 05:33:33             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 05:33:33           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 05:33:35           TestGeneric_flow_api: Test Case test_fdir_for_nvgre Result FAILED: 'the packet is not dropped.'
01/09/2020 05:33:35             dut.10.240.183.141: quit
01/09/2020 05:33:37             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 05:33:39             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 05:33:39                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
01/09/2020 05:36:39                            dts: 
TEST SUITE : TestGeneric_flow_api
01/09/2020 05:36:39                            dts: NIC :        fortville_spirit
01/09/2020 05:36:39             dut.10.240.183.141: 
01/09/2020 05:36:39                         tester: 
01/09/2020 05:36:42           TestGeneric_flow_api: Test Case test_fdir_for_nvgre Begin
01/09/2020 05:36:42             dut.10.240.183.141: 
01/09/2020 05:36:42                         tester: 
01/09/2020 05:36:42             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 05:36:43             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_3896_20200901053624   -- -i --pkt-filter-mode=perfect-tunnel --disable-rss --rxq=16 --txq=16
01/09/2020 05:36:44             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3896_20200901053624/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 05:36:54             dut.10.240.183.141: set fwd rxonly
01/09/2020 05:36:54             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 05:36:54             dut.10.240.183.141: set verbose 1
01/09/2020 05:36:55             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 05:36:55             dut.10.240.183.141: start
01/09/2020 05:36:55             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 05:36:57             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 3373 / eth dst is 00:11:22:33:44:66 / vlan tci is 2840  / end actions pf / queue index 4 /  end
01/09/2020 05:36:57             dut.10.240.183.141: 
01/09/2020 05:36:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598938617.1759794 root@10.240.183.89:/tmp/tester/
01/09/2020 05:36:58                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598938617.1759794 root@10.240.183.89:/tmp/tester/
01/09/2020 05:37:00                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598938617.1759794
01/09/2020 05:37:01                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=863488, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=2840, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 05:37:03             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 05:37:03             dut.10.240.183.141: stop
01/09/2020 05:37:03             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 1/Queue= 4 -------
  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.
01/09/2020 05:37:03           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 05:37:05             dut.10.240.183.141: start
01/09/2020 05:37:05             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 05:37:05             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 1266 / eth dst is 00:11:22:33:44:66 / vlan tci is 1371  / end actions drop /  end
01/09/2020 05:37:20           TestGeneric_flow_api: Test Case test_fdir_for_nvgre Result FAILED: TIMEOUT on flow create 0 ingress pattern eth / ipv4 / nvgre tni is 1266 / eth dst is 00:11:22:33:44:66 / vlan tci is 1371  / end actions drop /  end
01/09/2020 05:37:20           TestGeneric_flow_api: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 1266 / eth dst is 00:11:22:33:44:66 / vlan tci is 1371  / end actions drop /  end
port_flow_complain(): Caught PMD error type 16 (specific action): cause: 0x7fff90948a28, Not supported action.: Invalid argument
testpmd> 
01/09/2020 05:37:20             dut.10.240.183.141: quit
01/09/2020 05:37:22             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 05:37:24             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 05:37:25                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
01/09/2020 05:50:03                            dts: 
TEST SUITE : TestGeneric_flow_api
01/09/2020 05:50:03                            dts: NIC :        fortville_spirit
01/09/2020 05:50:03             dut.10.240.183.141: 
01/09/2020 05:50:03                         tester: 
01/09/2020 05:50:06           TestGeneric_flow_api: Test Case test_fdir_for_nvgre Begin
01/09/2020 05:50:06             dut.10.240.183.141: 
01/09/2020 05:50:06                         tester: 
01/09/2020 05:50:06             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 05:50:06             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_4399_20200901054948   -- -i --pkt-filter-mode=perfect-tunnel --disable-rss --rxq=16 --txq=16
01/09/2020 05:50:08             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_4399_20200901054948/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 05:50:18             dut.10.240.183.141: set fwd rxonly
01/09/2020 05:50:18             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 05:50:18             dut.10.240.183.141: set verbose 1
01/09/2020 05:50:18             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 05:50:18             dut.10.240.183.141: start
01/09/2020 05:50:18             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 05:50:20             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 2015 / eth dst is 00:11:22:33:44:66 / vlan tci is 1396  / end actions pf / queue index 10 /  end
01/09/2020 05:50:21             dut.10.240.183.141: 
01/09/2020 05:50:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598939421.05605 root@10.240.183.89:/tmp/tester/
01/09/2020 05:50:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598939421.05605 root@10.240.183.89:/tmp/tester/
01/09/2020 05:50:24                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598939421.05605
01/09/2020 05:50:25                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=515840, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=1396, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 05:50:27             dut.10.240.183.141: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0xa
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 05:50:27             dut.10.240.183.141: stop
01/09/2020 05:50:27             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 1/Queue=10 -------
  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.
01/09/2020 05:50:27           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0xa
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 05:54:12             dut.10.240.183.141: start
01/09/2020 05:54:12             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 05:54:24             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 3854 / eth dst is 00:11:22:33:44:66 / vlan tci is 1138  / end actions pf / drop /  end
01/09/2020 05:54:24             dut.10.240.183.141: 
01/09/2020 05:54:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598939664.4612477 root@10.240.183.89:/tmp/tester/
01/09/2020 05:54:26                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598939664.4612477 root@10.240.183.89:/tmp/tester/
01/09/2020 05:54:28                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598939664.4612477
01/09/2020 05:54:28                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=986624, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=1138, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 05:54:30             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 05:54:30             dut.10.240.183.141: stop
01/09/2020 05:54:31             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 05:54:31           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:04:09           TestGeneric_flow_api: Test Case test_fdir_for_nvgre Result FAILED: 'the packet is not dropped.'
01/09/2020 06:04:09             dut.10.240.183.141: quit
01/09/2020 06:04:11             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 06:04:13             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 06:04:13                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
01/09/2020 06:18:56                            dts: 
TEST SUITE : TestGeneric_flow_api
01/09/2020 06:18:56                            dts: NIC :        fortville_spirit
01/09/2020 06:18:56             dut.10.240.183.141: 
01/09/2020 06:18:56                         tester: 
01/09/2020 06:18:59           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
01/09/2020 06:18:59             dut.10.240.183.141: 
01/09/2020 06:18:59                         tester: 
01/09/2020 06:18:59             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 06:19:00             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_5420_20200901061841   -- -i --disable-rss --rxq=16 --txq=16
01/09/2020 06:19:02             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_5420_20200901061841/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 06:19:12             dut.10.240.183.141: set fwd rxonly
01/09/2020 06:19:12             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 06:19:12             dut.10.240.183.141: set verbose 1
01/09/2020 06:19:12             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 06:19:12             dut.10.240.183.141: start
01/09/2020 06:19:12             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:19:14             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 34.153.175.103 src is 32.72.159.164  / end actions queue index 15 /  end
01/09/2020 06:19:14             dut.10.240.183.141: 
01/09/2020 06:19:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941154.4313257 root@10.240.183.89:/tmp/tester/
01/09/2020 06:19:16                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941154.4313257 root@10.240.183.89:/tmp/tester/
01/09/2020 06:19:18                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941154.4313257
01/09/2020 06:19:18                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=59624, src='32.72.159.164', dst='34.153.175.103')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:19:20             dut.10.240.183.141: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:19:20             dut.10.240.183.141: stop
01/09/2020 06:19:20             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 1/Queue=15 -------
  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.
01/09/2020 06:19:20           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:19:22             dut.10.240.183.141: start
01/09/2020 06:19:23             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:19:23             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 12.94.137.3 src is 192.202.141.130 / udp dst is 31319 src is 37214  / end actions queue index 11 /  end
01/09/2020 06:19:23             dut.10.240.183.141: 
01/09/2020 06:19:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941163.112386 root@10.240.183.89:/tmp/tester/
01/09/2020 06:19:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941163.112386 root@10.240.183.89:/tmp/tester/
01/09/2020 06:19:26                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941163.112386
01/09/2020 06:19:27                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=38670, src='192.202.141.130', dst='12.94.137.3')/UDP(sport=37214, dport=31319, len=28, chksum=23453)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:19:29             dut.10.240.183.141: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:19:29             dut.10.240.183.141: stop
01/09/2020 06:19:29             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 1/Queue=11 -------
  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.
01/09/2020 06:19:29           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:19:31             dut.10.240.183.141: start
01/09/2020 06:19:31             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:19:31             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 252.204.194.58 src is 117.137.232.166 / tcp dst is 38346 src is 31837  / end actions queue index 1 /  end
01/09/2020 06:19:31             dut.10.240.183.141: 
01/09/2020 06:19:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941171.811643 root@10.240.183.89:/tmp/tester/
01/09/2020 06:19:33                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941171.811643 root@10.240.183.89:/tmp/tester/
01/09/2020 06:19:35                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941171.811643
01/09/2020 06:19:36                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=23940, src='117.137.232.166', dst='252.204.194.58')/TCP(sport=31837, dport=38346, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=43962, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:19:38             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:19:38             dut.10.240.183.141: stop
01/09/2020 06:19:38             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 1/Queue= 1 -------
  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.
01/09/2020 06:19:38           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:19:40             dut.10.240.183.141: start
01/09/2020 06:19:40             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:19:40             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 80.41.174.248 src is 241.241.178.82 / sctp dst is 45989 src is 24707  / end actions queue index 14 /  end
01/09/2020 06:19:40             dut.10.240.183.141: 
01/09/2020 06:19:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941180.4928927 root@10.240.183.89:/tmp/tester/
01/09/2020 06:19:42                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941180.4928927 root@10.240.183.89:/tmp/tester/
01/09/2020 06:19:44                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941180.4928927
01/09/2020 06:19:45                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=55007, src='241.241.178.82', dst='80.41.174.248')/SCTP(sport=24707, dport=45989, tag=0, chksum=2348646688)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:19:47             dut.10.240.183.141: 
testpmd> port 0/queue 14: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xe
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:19:47             dut.10.240.183.141: stop
01/09/2020 06:19:47             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 1/Queue=14 -------
  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.
01/09/2020 06:19:47           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 14: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xe
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:19:49             dut.10.240.183.141: start
01/09/2020 06:19:49             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:19:49                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941189.155195 root@10.240.183.89:/tmp/tester/
01/09/2020 06:19:51                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941189.155195 root@10.240.183.89:/tmp/tester/
01/09/2020 06:19:52                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941189.155195
01/09/2020 06:19:53                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=59624, src='34.153.175.103', dst='32.72.159.164')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:19:55             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

01/09/2020 06:19:55             dut.10.240.183.141: stop
01/09/2020 06:19:55             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 06:19:55           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

01/09/2020 06:19:57             dut.10.240.183.141: start
01/09/2020 06:19:57             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:19:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941197.813648 root@10.240.183.89:/tmp/tester/
01/09/2020 06:19:59                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941197.813648 root@10.240.183.89:/tmp/tester/
01/09/2020 06:20:01                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941197.813648
01/09/2020 06:20:02                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=55007, src='80.41.174.248', dst='241.241.178.82')/SCTP(sport=24707, dport=45989, tag=0, chksum=2348646688)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:20:04             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

01/09/2020 06:20:04             dut.10.240.183.141: stop
01/09/2020 06:20:04             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 06:20:04           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

01/09/2020 06:20:06             dut.10.240.183.141: start
01/09/2020 06:20:06             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:20:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941206.4393709 root@10.240.183.89:/tmp/tester/
01/09/2020 06:20:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941206.4393709 root@10.240.183.89:/tmp/tester/
01/09/2020 06:20:10                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941206.4393709
01/09/2020 06:20:10                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=59480, src='32.72.159.164', dst='34.153.175.103')/SCTP(sport=24707, dport=45989, tag=0, chksum=2348646688)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:20:12             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

01/09/2020 06:20:12             dut.10.240.183.141: stop
01/09/2020 06:20:13             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 06:20:13           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

01/09/2020 06:20:15           TestGeneric_flow_api: Test Case test_n_tuple_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
01/09/2020 06:20:15             dut.10.240.183.141: quit
01/09/2020 06:20:16             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 06:20:18             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 06:20:19                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
01/09/2020 06:28:45                            dts: 
TEST SUITE : TestGeneric_flow_api
01/09/2020 06:28:45                            dts: NIC :        fortville_spirit
01/09/2020 06:28:45             dut.10.240.183.141: 
01/09/2020 06:28:45                         tester: 
01/09/2020 06:28:48           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
01/09/2020 06:28:48             dut.10.240.183.141: 
01/09/2020 06:28:48                         tester: 
01/09/2020 06:28:48             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 06:28:49             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_7207_20200901062830   -- -i --disable-rss --rxq=16 --txq=16
01/09/2020 06:28:51             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_7207_20200901062830/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 06:29:01             dut.10.240.183.141: set fwd rxonly
01/09/2020 06:29:01             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 06:29:01             dut.10.240.183.141: set verbose 1
01/09/2020 06:29:01             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 06:29:01             dut.10.240.183.141: start
01/09/2020 06:29:01             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:29:03             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 244.113.231.117 src is 48.19.57.8  / end actions queue index 9 /  end
01/09/2020 06:29:03             dut.10.240.183.141: 
01/09/2020 06:29:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941743.3742802 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941743.3742802 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:07                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941743.3742802
01/09/2020 06:29:07                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=13779, src='48.19.57.8', dst='244.113.231.117')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:29:09             dut.10.240.183.141: 
testpmd> port 0/queue 9: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x9
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:29:09             dut.10.240.183.141: stop
01/09/2020 06:29:09             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 9 -> TX Port= 1/Queue= 9 -------
  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.
01/09/2020 06:29:09           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 9: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x9
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:29:11             dut.10.240.183.141: start
01/09/2020 06:29:12             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:29:12             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 66.201.162.56 src is 27.191.212.229 / udp dst is 10559 src is 63062  / end actions queue index 12 /  end
01/09/2020 06:29:12             dut.10.240.183.141: 
01/09/2020 06:29:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941752.111516 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:13                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941752.111516 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:15                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941752.111516
01/09/2020 06:29:16                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=42262, src='27.191.212.229', dst='66.201.162.56')/UDP(sport=63062, dport=10559, len=28, chksum=21957)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:29:18             dut.10.240.183.141: 
testpmd> port 0/queue 12: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:29:18             dut.10.240.183.141: stop
01/09/2020 06:29:18             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 1/Queue=12 -------
  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.
01/09/2020 06:29:18           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 12: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:29:20             dut.10.240.183.141: start
01/09/2020 06:29:20             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:29:20             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 197.27.75.130 src is 156.33.138.245 / tcp dst is 38177 src is 13931  / end actions queue index 11 /  end
01/09/2020 06:29:20             dut.10.240.183.141: 
01/09/2020 06:29:20                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941760.7787356 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941760.7787356 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:24                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941760.7787356
01/09/2020 06:29:25                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=17159, src='156.33.138.245', dst='197.27.75.130')/TCP(sport=13931, dport=38177, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=55256, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:29:27             dut.10.240.183.141: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:29:27             dut.10.240.183.141: stop
01/09/2020 06:29:27             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 1/Queue=11 -------
  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.
01/09/2020 06:29:27           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:29:29             dut.10.240.183.141: start
01/09/2020 06:29:29             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:29:29             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 188.170.210.152 src is 173.32.111.248 / sctp dst is 32920 src is 5227  / end actions queue index 1 /  end
01/09/2020 06:29:29             dut.10.240.183.141: 
01/09/2020 06:29:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941769.4426672 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941769.4426672 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:33                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941769.4426672
01/09/2020 06:29:33                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=52713, src='173.32.111.248', dst='188.170.210.152')/SCTP(sport=5227, dport=32920, tag=0, chksum=1582916949)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:29:35             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:29:35             dut.10.240.183.141: stop
01/09/2020 06:29:35             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 1/Queue= 1 -------
  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.
01/09/2020 06:29:35           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:29:37             dut.10.240.183.141: start
01/09/2020 06:29:38             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:29:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941778.0637772 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941778.0637772 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:41                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941778.0637772
01/09/2020 06:29:42                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=13779, src='244.113.231.117', dst='48.19.57.8')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:29:44             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

01/09/2020 06:29:44             dut.10.240.183.141: stop
01/09/2020 06:29:44             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 06:29:44           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

01/09/2020 06:29:46             dut.10.240.183.141: start
01/09/2020 06:29:46             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:29:46                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941786.689707 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941786.689707 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:50                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941786.689707
01/09/2020 06:29:51                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=52713, src='188.170.210.152', dst='173.32.111.248')/SCTP(sport=5227, dport=32920, tag=0, chksum=1582916949)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:29:53             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

01/09/2020 06:29:53             dut.10.240.183.141: stop
01/09/2020 06:29:53             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 06:29:53           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

01/09/2020 06:29:55             dut.10.240.183.141: start
01/09/2020 06:29:55             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:29:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598941795.386431 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598941795.386431 root@10.240.183.89:/tmp/tester/
01/09/2020 06:29:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598941795.386431
01/09/2020 06:29:59                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=13635, src='48.19.57.8', dst='244.113.231.117')/SCTP(sport=5227, dport=32920, tag=0, chksum=1582916949)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:30:01             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

01/09/2020 06:30:01             dut.10.240.183.141: stop
01/09/2020 06:30:01             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 06:30:01           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

01/09/2020 06:30:03           TestGeneric_flow_api: Test Case test_n_tuple_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
01/09/2020 06:30:03             dut.10.240.183.141: quit
01/09/2020 06:30:05             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 06:30:07             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 06:30:08                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
01/09/2020 06:34:34                            dts: 
TEST SUITE : TestGeneric_flow_api
01/09/2020 06:34:34                            dts: NIC :        fortville_spirit
01/09/2020 06:34:34             dut.10.240.183.141: 
01/09/2020 06:34:34                         tester: 
01/09/2020 06:34:36           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
01/09/2020 06:34:37             dut.10.240.183.141: 
01/09/2020 06:34:37                         tester: 
01/09/2020 06:34:37             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 06:34:37             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_8841_20200901063419   -- -i --disable-rss --rxq=16 --txq=16
01/09/2020 06:34:39             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_8841_20200901063419/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 06:34:49             dut.10.240.183.141: set fwd rxonly
01/09/2020 06:34:49             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 06:34:49             dut.10.240.183.141: set verbose 1
01/09/2020 06:34:49             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 06:34:49             dut.10.240.183.141: start
01/09/2020 06:34:49             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:34:51             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 217.14.224.113 src is 51.25.226.93  / end actions queue index 4 /  end
01/09/2020 06:34:51             dut.10.240.183.141: 
01/09/2020 06:34:51                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598942091.90301 root@10.240.183.89:/tmp/tester/
01/09/2020 06:34:53                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598942091.90301 root@10.240.183.89:/tmp/tester/
01/09/2020 06:34:55                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598942091.90301
01/09/2020 06:34:56                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=43998, src='51.25.226.93', dst='217.14.224.113')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:34:58             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:34:58             dut.10.240.183.141: stop
01/09/2020 06:34:58             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 1/Queue= 4 -------
  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.
01/09/2020 06:34:58           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:35:02             dut.10.240.183.141: start
01/09/2020 06:35:02             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:35:02             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 98.79.120.204 src is 234.44.221.167 / udp dst is 56177 src is 8459  / end actions queue index 15 /  end
01/09/2020 06:35:02             dut.10.240.183.141: 
01/09/2020 06:35:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598942102.581499 root@10.240.183.89:/tmp/tester/
01/09/2020 06:35:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598942102.581499 root@10.240.183.89:/tmp/tester/
01/09/2020 06:35:06                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598942102.581499
01/09/2020 06:35:07                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=55244, src='234.44.221.167', dst='98.79.120.204')/UDP(sport=8459, dport=56177, len=28, chksum=43924)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:35:09             dut.10.240.183.141: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:35:09             dut.10.240.183.141: stop
01/09/2020 06:35:09             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 1/Queue=15 -------
  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.
01/09/2020 06:35:09           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:35:12             dut.10.240.183.141: start
01/09/2020 06:35:12             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:35:12             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 228.125.186.118 src is 130.173.233.129 / tcp dst is 25465 src is 9800  / end actions queue index 0 /  end
01/09/2020 06:35:12             dut.10.240.183.141: 
01/09/2020 06:35:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598942112.5320039 root@10.240.183.89:/tmp/tester/
01/09/2020 06:35:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598942112.5320039 root@10.240.183.89:/tmp/tester/
01/09/2020 06:35:16                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598942112.5320039
01/09/2020 06:35:17                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=28568, src='130.173.233.129', dst='228.125.186.118')/TCP(sport=9800, dport=25465, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=17973, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:35:19             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:35:19             dut.10.240.183.141: stop
01/09/2020 06:35:19             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 06:35:19           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:35:22             dut.10.240.183.141: start
01/09/2020 06:35:22             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:35:22             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 194.100.232.209 src is 173.38.219.215 / sctp dst is 42495 src is 15579  / end actions queue index 6 /  end
01/09/2020 06:35:22             dut.10.240.183.141: 
01/09/2020 06:35:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598942122.3159811 root@10.240.183.89:/tmp/tester/
01/09/2020 06:35:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598942122.3159811 root@10.240.183.89:/tmp/tester/
01/09/2020 06:35:25                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598942122.3159811
01/09/2020 06:35:26                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=17937, src='173.38.219.215', dst='194.100.232.209')/SCTP(sport=15579, dport=42495, tag=0, chksum=1631076004)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:35:28             dut.10.240.183.141: 
testpmd> port 0/queue 6: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:35:28             dut.10.240.183.141: stop
01/09/2020 06:35:28             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 1/Queue= 6 -------
  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.
01/09/2020 06:35:28           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 6: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

01/09/2020 06:35:36             dut.10.240.183.141: start
01/09/2020 06:35:36             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:35:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598942136.6549616 root@10.240.183.89:/tmp/tester/
01/09/2020 06:35:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598942136.6549616 root@10.240.183.89:/tmp/tester/
01/09/2020 06:35:40                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598942136.6549616
01/09/2020 06:35:41                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=43998, src='217.14.224.113', dst='51.25.226.93')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:35:43             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

01/09/2020 06:35:43             dut.10.240.183.141: stop
01/09/2020 06:35:43             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 06:35:43           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

01/09/2020 06:35:51             dut.10.240.183.141: start
01/09/2020 06:35:52             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:35:52                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598942152.067159 root@10.240.183.89:/tmp/tester/
01/09/2020 06:35:53                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598942152.067159 root@10.240.183.89:/tmp/tester/
01/09/2020 06:35:55                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598942152.067159
01/09/2020 06:35:56                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=17937, src='194.100.232.209', dst='173.38.219.215')/SCTP(sport=15579, dport=42495, tag=0, chksum=1631076004)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:35:58             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

01/09/2020 06:35:58             dut.10.240.183.141: stop
01/09/2020 06:35:58             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 06:35:58           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

01/09/2020 06:36:01             dut.10.240.183.141: start
01/09/2020 06:36:01             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 06:36:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598942161.626267 root@10.240.183.89:/tmp/tester/
01/09/2020 06:36:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598942161.626267 root@10.240.183.89:/tmp/tester/
01/09/2020 06:36:05                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598942161.626267
01/09/2020 06:36:06                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=43854, src='51.25.226.93', dst='217.14.224.113')/SCTP(sport=15579, dport=42495, tag=0, chksum=1631076004)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 06:36:08             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

01/09/2020 06:36:08             dut.10.240.183.141: stop
01/09/2020 06:36:08             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 06:36:08           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

01/09/2020 06:56:53           TestGeneric_flow_api: Test Case test_n_tuple_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
01/09/2020 06:56:53             dut.10.240.183.141: quit
01/09/2020 06:56:55             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 06:56:57             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 06:56:58                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
01/09/2020 07:04:12                            dts: 
TEST SUITE : TestGeneric_flow_api
01/09/2020 07:04:12                            dts: NIC :        fortville_spirit
01/09/2020 07:04:12             dut.10.240.183.141: 
01/09/2020 07:04:12                         tester: 
01/09/2020 07:04:14           TestGeneric_flow_api: Test Case test_syn_filter Begin
01/09/2020 07:04:15             dut.10.240.183.141: 
01/09/2020 07:04:15                         tester: 
01/09/2020 07:04:15             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
01/09/2020 07:04:15             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_10582_20200901070357   -- -i --disable-rss --rxq=16 --txq=16
01/09/2020 07:04:17             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_10582_20200901070357/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
01/09/2020 07:04:27             dut.10.240.183.141: set fwd rxonly
01/09/2020 07:04:27             dut.10.240.183.141: 
Set rxonly packet forwarding mode
01/09/2020 07:04:27             dut.10.240.183.141: set verbose 1
01/09/2020 07:04:27             dut.10.240.183.141: 
Change verbose level from 0 to 1
01/09/2020 07:04:27             dut.10.240.183.141: start
01/09/2020 07:04:27             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
01/09/2020 07:04:29             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / tcp flags spec 0x02 flags mask 0x02 / end actions pf / queue index 3 / end
01/09/2020 07:04:29             dut.10.240.183.141: 
i40e_replace_port_l1_filter(): i40e device 0000:84:00.0 changed cloud l1 type. original: 0xb, new: 0x11
i40e_replace_port_cloud_filter(): i40e device 0000:84:00.0 changed cloud filter type. original: 0xc, new: 0x11
01/09/2020 07:04:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1598943869.9479527 root@10.240.183.89:/tmp/tester/
01/09/2020 07:04:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1598943869.9479527 root@10.240.183.89:/tmp/tester/
01/09/2020 07:04:33                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1598943869.9479527
01/09/2020 07:04:34                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=63847, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22882, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
01/09/2020 07:04:36             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

01/09/2020 07:04:36             dut.10.240.183.141: stop
01/09/2020 07:04:36             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
01/09/2020 07:04:36           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

01/09/2020 07:04:50           TestGeneric_flow_api: Test Case test_syn_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
01/09/2020 07:04:50             dut.10.240.183.141: quit
01/09/2020 07:04:52             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
01/09/2020 07:04:54             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
01/09/2020 07:04:55                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
03/09/2020 08:37:16                            dts: 
TEST SUITE : TestGeneric_flow_api
03/09/2020 08:37:16                            dts: NIC :        fortville_spirit
03/09/2020 08:37:16             dut.10.240.183.141: 
03/09/2020 08:37:17                         tester: 
03/09/2020 08:37:19           TestGeneric_flow_api: Test Case test_syn_filter Begin
03/09/2020 08:37:19             dut.10.240.183.141: 
03/09/2020 08:37:20                         tester: 
03/09/2020 08:37:20             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
03/09/2020 08:37:20             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_11721_20200903083518   -- -i --disable-rss --rxq=16 --txq=16
03/09/2020 08:37:22             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_11721_20200903083518/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
03/09/2020 08:37:32             dut.10.240.183.141: set fwd rxonly
03/09/2020 08:37:32             dut.10.240.183.141: 
Set rxonly packet forwarding mode
03/09/2020 08:37:32             dut.10.240.183.141: set verbose 1
03/09/2020 08:37:32             dut.10.240.183.141: 
Change verbose level from 0 to 1
03/09/2020 08:37:32             dut.10.240.183.141: start
03/09/2020 08:37:32             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 08:37:34             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / tcp flags spec 0x02 / end actions queue index 3 / end
03/09/2020 08:37:34             dut.10.240.183.141: 
03/09/2020 08:37:34                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599122254.4364867 root@10.240.183.89:/tmp/tester/
03/09/2020 08:37:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599122254.4364867 root@10.240.183.89:/tmp/tester/
03/09/2020 08:37:38                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599122254.4364867
03/09/2020 08:37:38                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=63847, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22882, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 08:37:40             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 08:37:40             dut.10.240.183.141: stop
03/09/2020 08:37:40             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
03/09/2020 08:37:40           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 08:39:02             dut.10.240.183.141: start
03/09/2020 08:39:02             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 08:39:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599122342.38078 root@10.240.183.89:/tmp/tester/
03/09/2020 08:39:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599122342.38078 root@10.240.183.89:/tmp/tester/
03/09/2020 08:39:06                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599122342.38078
03/09/2020 08:39:06                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=63847, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=24, window=8192, chksum=22860, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 08:39:08             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 08:39:08             dut.10.240.183.141: stop
03/09/2020 08:39:08             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
03/09/2020 08:39:08           TestGeneric_flow_api: pf: port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 08:39:18           TestGeneric_flow_api: Test Case test_syn_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
03/09/2020 08:39:18             dut.10.240.183.141: quit
03/09/2020 08:39:20             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
03/09/2020 08:39:22             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
03/09/2020 08:39:22                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
03/09/2020 08:40:55                            dts: 
TEST SUITE : TestGeneric_flow_api
03/09/2020 08:40:55                            dts: NIC :        fortville_spirit
03/09/2020 08:40:55             dut.10.240.183.141: 
03/09/2020 08:40:55                         tester: 
03/09/2020 08:40:58           TestGeneric_flow_api: Test Case test_syn_filter Begin
03/09/2020 08:40:58             dut.10.240.183.141: 
03/09/2020 08:40:58                         tester: 
03/09/2020 08:40:58             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
03/09/2020 08:40:59             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_12730_20200903084040   -- -i --disable-rss --rxq=16 --txq=16
03/09/2020 08:41:00             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_12730_20200903084040/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
03/09/2020 08:41:10             dut.10.240.183.141: set fwd rxonly
03/09/2020 08:41:11             dut.10.240.183.141: 
Set rxonly packet forwarding mode
03/09/2020 08:41:11             dut.10.240.183.141: set verbose 1
03/09/2020 08:41:11             dut.10.240.183.141: 
Change verbose level from 0 to 1
03/09/2020 08:41:11             dut.10.240.183.141: start
03/09/2020 08:41:11             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 08:41:13             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / tcp flags spec 0x02 / end actions queue index 3 / end
03/09/2020 08:41:13             dut.10.240.183.141: 
03/09/2020 08:41:13                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599122473.2704525 root@10.240.183.89:/tmp/tester/
03/09/2020 08:41:15                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599122473.2704525 root@10.240.183.89:/tmp/tester/
03/09/2020 08:41:16                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599122473.2704525
03/09/2020 08:41:17                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=63847, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22882, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 08:41:19             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 08:41:19             dut.10.240.183.141: stop
03/09/2020 08:41:19             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
03/09/2020 08:41:19           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 08:43:09             dut.10.240.183.141: start
03/09/2020 08:43:09             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 08:43:09                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599122589.2561076 root@10.240.183.89:/tmp/tester/
03/09/2020 08:43:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599122589.2561076 root@10.240.183.89:/tmp/tester/
03/09/2020 08:43:12                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599122589.2561076
03/09/2020 08:43:13                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=63847, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=24, window=8192, chksum=22860, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 08:43:15             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 08:43:15             dut.10.240.183.141: stop
03/09/2020 08:43:15             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
03/09/2020 08:43:15           TestGeneric_flow_api: pf: port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 08:47:11           TestGeneric_flow_api: Test Case test_syn_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
03/09/2020 08:47:11             dut.10.240.183.141: quit
03/09/2020 08:47:13             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
03/09/2020 08:47:15             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
03/09/2020 08:47:15                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
03/09/2020 09:00:46                            dts: 
TEST SUITE : TestGeneric_flow_api
03/09/2020 09:00:46                            dts: NIC :        fortville_spirit
03/09/2020 09:00:46             dut.10.240.183.141: 
03/09/2020 09:00:47                         tester: 
03/09/2020 09:00:49           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
03/09/2020 09:00:49             dut.10.240.183.141: 
03/09/2020 09:00:49                         tester: 
03/09/2020 09:00:49             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
03/09/2020 09:00:50             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_13626_20200903090027   -- -i --disable-rss --rxq=16 --txq=16
03/09/2020 09:00:52             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_13626_20200903090027/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
03/09/2020 09:01:02             dut.10.240.183.141: set fwd rxonly
03/09/2020 09:01:02             dut.10.240.183.141: 
Set rxonly packet forwarding mode
03/09/2020 09:01:02             dut.10.240.183.141: set verbose 1
03/09/2020 09:01:02             dut.10.240.183.141: 
Change verbose level from 0 to 1
03/09/2020 09:01:02             dut.10.240.183.141: start
03/09/2020 09:01:02             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:01:04             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 82.3.57.233 src is 169.20.81.105  / end actions queue index 14 /  end
03/09/2020 09:01:04             dut.10.240.183.141: 
03/09/2020 09:01:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599123664.4001646 root@10.240.183.89:/tmp/tester/
03/09/2020 09:01:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599123664.4001646 root@10.240.183.89:/tmp/tester/
03/09/2020 09:01:08                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599123664.4001646
03/09/2020 09:01:08                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=62571, src='169.20.81.105', dst='82.3.57.233')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:01:10             dut.10.240.183.141: 
testpmd> port 0/queue 14: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xe
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:01:10             dut.10.240.183.141: stop
03/09/2020 09:01:10             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 1/Queue=14 -------
  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.
03/09/2020 09:01:10           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 14: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xe
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:03:06             dut.10.240.183.141: start
03/09/2020 09:03:06             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:03:06             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 56.230.246.76 src is 226.79.103.179 / udp dst is 46776 src is 34921  / end actions queue index 10 /  end
03/09/2020 09:03:06             dut.10.240.183.141: 
03/09/2020 09:03:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599123786.9466696 root@10.240.183.89:/tmp/tester/
03/09/2020 09:03:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599123786.9466696 root@10.240.183.89:/tmp/tester/
03/09/2020 09:03:10                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599123786.9466696
03/09/2020 09:03:11                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=391, src='226.79.103.179', dst='56.230.246.76')/UDP(sport=34921, dport=46776, len=28, chksum=37545)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:03:13             dut.10.240.183.141: 
testpmd> port 0/queue 10: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:03:13             dut.10.240.183.141: stop
03/09/2020 09:03:13             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 1/Queue=10 -------
  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.
03/09/2020 09:03:13           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 10: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:03:16             dut.10.240.183.141: start
03/09/2020 09:03:16             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:03:16             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 59.8.133.63 src is 146.1.186.64 / tcp dst is 30818 src is 59893  / end actions queue index 4 /  end
03/09/2020 09:03:16             dut.10.240.183.141: 
03/09/2020 09:03:16                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599123796.7107658 root@10.240.183.89:/tmp/tester/
03/09/2020 09:03:18                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599123796.7107658 root@10.240.183.89:/tmp/tester/
03/09/2020 09:03:20                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599123796.7107658
03/09/2020 09:03:21                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=28210, src='146.1.186.64', dst='59.8.133.63')/TCP(sport=59893, dport=30818, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=27704, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:03:23             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:03:23             dut.10.240.183.141: stop
03/09/2020 09:03:23             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 1/Queue= 4 -------
  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.
03/09/2020 09:03:23           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:03:29             dut.10.240.183.141: start
03/09/2020 09:03:29             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:03:29             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 219.75.195.33 src is 64.141.81.154 / sctp dst is 60135 src is 60184  / end actions queue index 1 /  end
03/09/2020 09:03:29             dut.10.240.183.141: 
03/09/2020 09:03:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599123809.910937 root@10.240.183.89:/tmp/tester/
03/09/2020 09:03:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599123809.910937 root@10.240.183.89:/tmp/tester/
03/09/2020 09:03:33                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599123809.910937
03/09/2020 09:03:34                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=18865, src='64.141.81.154', dst='219.75.195.33')/SCTP(sport=60184, dport=60135, tag=0, chksum=1968718129)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:03:36             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:03:36             dut.10.240.183.141: stop
03/09/2020 09:03:36             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 1/Queue= 1 -------
  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.
03/09/2020 09:03:36           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:03:41             dut.10.240.183.141: start
03/09/2020 09:03:41             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:03:41                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599123821.9868045 root@10.240.183.89:/tmp/tester/
03/09/2020 09:03:43                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599123821.9868045 root@10.240.183.89:/tmp/tester/
03/09/2020 09:03:45                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599123821.9868045
03/09/2020 09:03:46                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=62571, src='82.3.57.233', dst='169.20.81.105')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:03:48             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

03/09/2020 09:03:48             dut.10.240.183.141: stop
03/09/2020 09:03:48             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 09:03:48           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

03/09/2020 09:03:55             dut.10.240.183.141: start
03/09/2020 09:03:55             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:03:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599123835.591589 root@10.240.183.89:/tmp/tester/
03/09/2020 09:03:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599123835.591589 root@10.240.183.89:/tmp/tester/
03/09/2020 09:03:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599123835.591589
03/09/2020 09:04:00                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=18865, src='219.75.195.33', dst='64.141.81.154')/SCTP(sport=60184, dport=60135, tag=0, chksum=1968718129)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:04:02             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:04:02             dut.10.240.183.141: stop
03/09/2020 09:04:02             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 09:04:02           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:04:05             dut.10.240.183.141: start
03/09/2020 09:04:05             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:04:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599123845.1194081 root@10.240.183.89:/tmp/tester/
03/09/2020 09:04:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599123845.1194081 root@10.240.183.89:/tmp/tester/
03/09/2020 09:04:08                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599123845.1194081
03/09/2020 09:04:09                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=62427, src='169.20.81.105', dst='82.3.57.233')/SCTP(sport=60184, dport=60135, tag=0, chksum=1968718129)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:04:11             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:04:11             dut.10.240.183.141: stop
03/09/2020 09:04:11             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 09:04:11           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:04:14           TestGeneric_flow_api: Test Case test_n_tuple_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
03/09/2020 09:04:14             dut.10.240.183.141: quit
03/09/2020 09:04:16             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
03/09/2020 09:04:18             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
03/09/2020 09:04:18                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
03/09/2020 09:08:51                            dts: 
TEST SUITE : TestGeneric_flow_api
03/09/2020 09:08:51                            dts: NIC :        fortville_spirit
03/09/2020 09:08:51             dut.10.240.183.141: 
03/09/2020 09:08:51                         tester: 
03/09/2020 09:08:53           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
03/09/2020 09:08:54             dut.10.240.183.141: 
03/09/2020 09:08:54                         tester: 
03/09/2020 09:08:54             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
03/09/2020 09:08:54             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_15244_20200903090835   -- -i --disable-rss --rxq=16 --txq=16
03/09/2020 09:08:56             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_15244_20200903090835/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
03/09/2020 09:09:06             dut.10.240.183.141: set fwd rxonly
03/09/2020 09:09:06             dut.10.240.183.141: 
Set rxonly packet forwarding mode
03/09/2020 09:09:06             dut.10.240.183.141: set verbose 1
03/09/2020 09:09:06             dut.10.240.183.141: 
Change verbose level from 0 to 1
03/09/2020 09:09:06             dut.10.240.183.141: start
03/09/2020 09:09:06             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:09:08             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 249.74.116.224 src is 66.101.11.135  / end actions queue index 14 /  end
03/09/2020 09:09:08             dut.10.240.183.141: 
03/09/2020 09:09:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599124148.5825124 root@10.240.183.89:/tmp/tester/
03/09/2020 09:09:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599124148.5825124 root@10.240.183.89:/tmp/tester/
03/09/2020 09:09:12                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599124148.5825124
03/09/2020 09:09:13                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=48830, src='66.101.11.135', dst='249.74.116.224')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:09:15             dut.10.240.183.141: 
testpmd> port 0/queue 14: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xe
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:09:15             dut.10.240.183.141: stop
03/09/2020 09:09:15             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 1/Queue=14 -------
  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.
03/09/2020 09:09:15           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 14: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xe
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:11:25             dut.10.240.183.141: start
03/09/2020 09:11:25             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:11:25             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 207.242.162.244 src is 105.69.23.8 / udp dst is 52266 src is 55329  / end actions queue index 15 /  end
03/09/2020 09:11:25             dut.10.240.183.141: 
03/09/2020 09:11:25                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599124285.4569128 root@10.240.183.89:/tmp/tester/
03/09/2020 09:11:27                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599124285.4569128 root@10.240.183.89:/tmp/tester/
03/09/2020 09:11:29                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599124285.4569128
03/09/2020 09:11:29                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=34696, src='105.69.23.8', dst='207.242.162.244')/UDP(sport=55329, dport=52266, len=28, chksum=45952)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:11:31             dut.10.240.183.141: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:11:31             dut.10.240.183.141: stop
03/09/2020 09:11:31             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 1/Queue=15 -------
  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.
03/09/2020 09:11:31           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:11:43             dut.10.240.183.141: start
03/09/2020 09:11:43             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:11:43             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 108.164.27.182 src is 69.220.18.99 / tcp dst is 56615 src is 30780  / end actions queue index 11 /  end
03/09/2020 09:11:44             dut.10.240.183.141: 
03/09/2020 09:11:44                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599124304.046859 root@10.240.183.89:/tmp/tester/
03/09/2020 09:11:45                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599124304.046859 root@10.240.183.89:/tmp/tester/
03/09/2020 09:11:47                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599124304.046859
03/09/2020 09:11:48                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=39458, src='69.220.18.99', dst='108.164.27.182')/TCP(sport=30780, dport=56615, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=42268, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:11:50             dut.10.240.183.141: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:11:50             dut.10.240.183.141: stop
03/09/2020 09:11:50             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 1/Queue=11 -------
  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.
03/09/2020 09:11:50           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:11:59             dut.10.240.183.141: start
03/09/2020 09:11:59             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:11:59             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 215.34.28.63 src is 212.189.34.124 / sctp dst is 61978 src is 11595  / end actions queue index 6 /  end
03/09/2020 09:11:59             dut.10.240.183.141: 
03/09/2020 09:11:59                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599124319.71077 root@10.240.183.89:/tmp/tester/
03/09/2020 09:12:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599124319.71077 root@10.240.183.89:/tmp/tester/
03/09/2020 09:12:03                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599124319.71077
03/09/2020 09:12:04                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=36778, src='212.189.34.124', dst='215.34.28.63')/SCTP(sport=11595, dport=61978, tag=0, chksum=850614229)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:12:06             dut.10.240.183.141: 
testpmd> port 0/queue 6: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:12:06             dut.10.240.183.141: stop
03/09/2020 09:12:06             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 1/Queue= 6 -------
  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.
03/09/2020 09:12:06           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 6: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:12:18             dut.10.240.183.141: start
03/09/2020 09:12:18             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:12:18                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599124338.1751404 root@10.240.183.89:/tmp/tester/
03/09/2020 09:12:20                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599124338.1751404 root@10.240.183.89:/tmp/tester/
03/09/2020 09:12:21                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599124338.1751404
03/09/2020 09:12:22                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=48830, src='249.74.116.224', dst='66.101.11.135')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:12:24             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

03/09/2020 09:12:24             dut.10.240.183.141: stop
03/09/2020 09:12:24             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 09:12:24           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

03/09/2020 09:12:28             dut.10.240.183.141: start
03/09/2020 09:12:28             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:12:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599124348.7510371 root@10.240.183.89:/tmp/tester/
03/09/2020 09:12:30                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599124348.7510371 root@10.240.183.89:/tmp/tester/
03/09/2020 09:12:32                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599124348.7510371
03/09/2020 09:12:33                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=36778, src='215.34.28.63', dst='212.189.34.124')/SCTP(sport=11595, dport=61978, tag=0, chksum=850614229)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:12:35             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:12:35             dut.10.240.183.141: stop
03/09/2020 09:12:35             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 09:12:35           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:12:45             dut.10.240.183.141: start
03/09/2020 09:12:45             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:12:45                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599124365.7562144 root@10.240.183.89:/tmp/tester/
03/09/2020 09:12:47                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599124365.7562144 root@10.240.183.89:/tmp/tester/
03/09/2020 09:12:49                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599124365.7562144
03/09/2020 09:12:50                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=48686, src='66.101.11.135', dst='249.74.116.224')/SCTP(sport=11595, dport=61978, tag=0, chksum=850614229)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:12:52             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:12:52             dut.10.240.183.141: stop
03/09/2020 09:12:52             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 09:12:52           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:21:50           TestGeneric_flow_api: Test Case test_n_tuple_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
03/09/2020 09:21:50             dut.10.240.183.141: quit
03/09/2020 09:21:52             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
03/09/2020 09:21:54             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
03/09/2020 09:21:54                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
03/09/2020 09:26:50                            dts: 
TEST SUITE : TestGeneric_flow_api
03/09/2020 09:26:50                            dts: NIC :        fortville_spirit
03/09/2020 09:26:50             dut.10.240.183.141: 
03/09/2020 09:26:50                         tester: 
03/09/2020 09:26:53           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
03/09/2020 09:26:53             dut.10.240.183.141: 
03/09/2020 09:26:53                         tester: 
03/09/2020 09:26:53             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
03/09/2020 09:26:54             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_16941_20200903092635   -- -i --disable-rss --rxq=16 --txq=16
03/09/2020 09:26:55             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_16941_20200903092635/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
03/09/2020 09:27:05             dut.10.240.183.141: set fwd rxonly
03/09/2020 09:27:05             dut.10.240.183.141: 
Set rxonly packet forwarding mode
03/09/2020 09:27:05             dut.10.240.183.141: set verbose 1
03/09/2020 09:27:05             dut.10.240.183.141: 
Change verbose level from 0 to 1
03/09/2020 09:27:05             dut.10.240.183.141: start
03/09/2020 09:27:05             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:29:27             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 93.126.23.33 src is 246.63.63.19  / end actions queue index 11 /  end
03/09/2020 09:29:27             dut.10.240.183.141: 
03/09/2020 09:29:27                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599125367.091155 root@10.240.183.89:/tmp/tester/
03/09/2020 09:29:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599125367.091155 root@10.240.183.89:/tmp/tester/
03/09/2020 09:29:30                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599125367.091155
03/09/2020 09:29:31                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=53475, src='246.63.63.19', dst='93.126.23.33')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:29:33             dut.10.240.183.141: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:29:33             dut.10.240.183.141: stop
03/09/2020 09:29:33             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 1/Queue=11 -------
  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.
03/09/2020 09:29:33           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:29:45             dut.10.240.183.141: start
03/09/2020 09:29:45             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:29:45             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 27.219.78.118 src is 28.16.228.153 / udp dst is 48377 src is 15559  / end actions queue index 4 /  end
03/09/2020 09:29:46             dut.10.240.183.141: 
03/09/2020 09:29:46                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599125386.0114489 root@10.240.183.89:/tmp/tester/
03/09/2020 09:29:47                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599125386.0114489 root@10.240.183.89:/tmp/tester/
03/09/2020 09:29:49                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599125386.0114489
03/09/2020 09:29:50                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=4034, src='28.16.228.153', dst='27.219.78.118')/UDP(sport=15559, dport=48377, len=28, chksum=58949)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:29:52             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:29:52             dut.10.240.183.141: stop
03/09/2020 09:29:52             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 1/Queue= 4 -------
  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.
03/09/2020 09:29:52           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:29:58             dut.10.240.183.141: start
03/09/2020 09:29:58             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:29:58             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 219.36.10.10 src is 128.233.198.123 / tcp dst is 50595 src is 6580  / end actions queue index 12 /  end
03/09/2020 09:29:58             dut.10.240.183.141: 
03/09/2020 09:29:58                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599125398.3882525 root@10.240.183.89:/tmp/tester/
03/09/2020 09:30:00                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599125398.3882525 root@10.240.183.89:/tmp/tester/
03/09/2020 09:30:02                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599125398.3882525
03/09/2020 09:30:02                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=20008, src='128.233.198.123', dst='219.36.10.10')/TCP(sport=6580, dport=50595, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=53038, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:30:04             dut.10.240.183.141: 
testpmd> port 0/queue 12: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:30:04             dut.10.240.183.141: stop
03/09/2020 09:30:04             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 1/Queue=12 -------
  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.
03/09/2020 09:30:04           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 12: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:30:35             dut.10.240.183.141: start
03/09/2020 09:30:35             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:30:35             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 219.89.172.68 src is 110.109.181.88 / sctp dst is 25283 src is 48010  / end actions queue index 3 /  end
03/09/2020 09:30:36             dut.10.240.183.141: 
03/09/2020 09:30:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599125436.0195878 root@10.240.183.89:/tmp/tester/
03/09/2020 09:30:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599125436.0195878 root@10.240.183.89:/tmp/tester/
03/09/2020 09:30:39                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599125436.0195878
03/09/2020 09:30:40                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=52961, src='110.109.181.88', dst='219.89.172.68')/SCTP(sport=48010, dport=25283, tag=0, chksum=2482238019)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:30:42             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:30:42             dut.10.240.183.141: stop
03/09/2020 09:30:42             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
03/09/2020 09:30:42           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:32:02             dut.10.240.183.141: start
03/09/2020 09:32:02             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:32:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599125522.2817252 root@10.240.183.89:/tmp/tester/
03/09/2020 09:32:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599125522.2817252 root@10.240.183.89:/tmp/tester/
03/09/2020 09:32:05                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599125522.2817252
03/09/2020 09:32:06                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=53475, src='93.126.23.33', dst='246.63.63.19')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:32:08             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

03/09/2020 09:32:08             dut.10.240.183.141: stop
03/09/2020 09:32:08             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 09:32:08           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

03/09/2020 09:32:11             dut.10.240.183.141: start
03/09/2020 09:32:11             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:32:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599125531.8256223 root@10.240.183.89:/tmp/tester/
03/09/2020 09:32:13                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599125531.8256223 root@10.240.183.89:/tmp/tester/
03/09/2020 09:32:15                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599125531.8256223
03/09/2020 09:32:16                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=52961, src='219.89.172.68', dst='110.109.181.88')/SCTP(sport=48010, dport=25283, tag=0, chksum=2482238019)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:32:18             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:32:18             dut.10.240.183.141: stop
03/09/2020 09:32:18             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 09:32:18           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:32:21             dut.10.240.183.141: start
03/09/2020 09:32:21             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:32:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599125541.6552613 root@10.240.183.89:/tmp/tester/
03/09/2020 09:32:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599125541.6552613 root@10.240.183.89:/tmp/tester/
03/09/2020 09:32:25                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599125541.6552613
03/09/2020 09:32:26                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=53331, src='246.63.63.19', dst='93.126.23.33')/SCTP(sport=48010, dport=25283, tag=0, chksum=2482238019)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:32:28             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:32:28             dut.10.240.183.141: stop
03/09/2020 09:32:28             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 09:32:28           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:32:46           TestGeneric_flow_api: Test Case test_n_tuple_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
03/09/2020 09:32:46             dut.10.240.183.141: quit
03/09/2020 09:32:48             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
03/09/2020 09:32:50             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
03/09/2020 09:32:50                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
03/09/2020 09:33:22                            dts: 
TEST SUITE : TestGeneric_flow_api
03/09/2020 09:33:22                            dts: NIC :        fortville_spirit
03/09/2020 09:33:22             dut.10.240.183.141: 
03/09/2020 09:33:22                         tester: 
03/09/2020 09:33:25           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
03/09/2020 09:33:25             dut.10.240.183.141: 
03/09/2020 09:33:25                         tester: 
03/09/2020 09:33:25             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
03/09/2020 09:33:25             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_18644_20200903093306   -- -i --disable-rss --rxq=16 --txq=16
03/09/2020 09:33:27             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_18644_20200903093306/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
03/09/2020 09:33:37             dut.10.240.183.141: set fwd rxonly
03/09/2020 09:33:37             dut.10.240.183.141: 
Set rxonly packet forwarding mode
03/09/2020 09:33:37             dut.10.240.183.141: set verbose 1
03/09/2020 09:33:37             dut.10.240.183.141: 
Change verbose level from 0 to 1
03/09/2020 09:33:37             dut.10.240.183.141: start
03/09/2020 09:33:37             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:34:35             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 158.4.25.149 src is 223.251.32.61  / end actions queue index 12 /  end
03/09/2020 09:34:35             dut.10.240.183.141: 
03/09/2020 09:34:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599125675.794681 root@10.240.183.89:/tmp/tester/
03/09/2020 09:34:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599125675.794681 root@10.240.183.89:/tmp/tester/
03/09/2020 09:34:39                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599125675.794681
03/09/2020 09:34:40                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=49923, src='223.251.32.61', dst='158.4.25.149')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:34:42             dut.10.240.183.141: 
testpmd> port 0/queue 12: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:34:42             dut.10.240.183.141: stop
03/09/2020 09:34:42             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 1/Queue=12 -------
  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.
03/09/2020 09:34:42           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 12: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:36:41             dut.10.240.183.141: start
03/09/2020 09:36:41             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:37:39             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 38.15.37.40 src is 35.48.23.247 / udp dst is 33050 src is 26878  / end actions queue index 4 /  end
03/09/2020 09:37:39             dut.10.240.183.141: 
03/09/2020 09:37:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599125859.0921602 root@10.240.183.89:/tmp/tester/
03/09/2020 09:37:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599125859.0921602 root@10.240.183.89:/tmp/tester/
03/09/2020 09:37:42                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599125859.0921602
03/09/2020 09:37:43                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=62558, src='35.48.23.247', dst='38.15.37.40')/UDP(sport=26878, dport=33050, len=28, chksum=55946)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:37:45             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:37:45             dut.10.240.183.141: stop
03/09/2020 09:37:45             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 1/Queue= 4 -------
  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.
03/09/2020 09:37:45           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:38:04             dut.10.240.183.141: start
03/09/2020 09:38:04             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:38:17             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 41.206.0.20 src is 161.62.133.163 / tcp dst is 50205 src is 52863  / end actions queue index 7 /  end
03/09/2020 09:38:18             dut.10.240.183.141: 
03/09/2020 09:38:18                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599125898.0677679 root@10.240.183.89:/tmp/tester/
03/09/2020 09:38:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599125898.0677679 root@10.240.183.89:/tmp/tester/
03/09/2020 09:38:21                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599125898.0677679
03/09/2020 09:38:22                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=10744, src='161.62.133.163', dst='41.206.0.20')/TCP(sport=52863, dport=50205, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=63416, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:38:24             dut.10.240.183.141: 
testpmd> port 0/queue 7: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x7
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:38:24             dut.10.240.183.141: stop
03/09/2020 09:38:24             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 7 -> TX Port= 1/Queue= 7 -------
  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.
03/09/2020 09:38:24           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 7: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x7
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:38:41             dut.10.240.183.141: start
03/09/2020 09:38:41             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:39:19             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 110.199.34.154 src is 86.34.72.196 / sctp dst is 3764 src is 607  / end actions queue index 12 /  end
03/09/2020 09:39:19             dut.10.240.183.141: 
03/09/2020 09:39:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599125959.4735749 root@10.240.183.89:/tmp/tester/
03/09/2020 09:39:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599125959.4735749 root@10.240.183.89:/tmp/tester/
03/09/2020 09:39:23                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599125959.4735749
03/09/2020 09:39:23                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=18942, src='86.34.72.196', dst='110.199.34.154')/SCTP(sport=607, dport=3764, tag=0, chksum=2281868435)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:39:25             dut.10.240.183.141: 
testpmd> port 0/queue 12: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:39:25             dut.10.240.183.141: stop
03/09/2020 09:39:26             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 1/Queue=12 -------
  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.
03/09/2020 09:39:26           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 12: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 09:39:40             dut.10.240.183.141: start
03/09/2020 09:39:40             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:41:17                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599126077.5323133 root@10.240.183.89:/tmp/tester/
03/09/2020 09:41:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599126077.5323133 root@10.240.183.89:/tmp/tester/
03/09/2020 09:41:21                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599126077.5323133
03/09/2020 09:41:22                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=49923, src='158.4.25.149', dst='223.251.32.61')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:41:24             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

03/09/2020 09:41:24             dut.10.240.183.141: stop
03/09/2020 09:41:24             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 09:41:24           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

03/09/2020 09:41:49             dut.10.240.183.141: start
03/09/2020 09:41:49             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:41:49                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599126109.93636 root@10.240.183.89:/tmp/tester/
03/09/2020 09:41:51                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599126109.93636 root@10.240.183.89:/tmp/tester/
03/09/2020 09:41:53                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599126109.93636
03/09/2020 09:41:54                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=18942, src='110.199.34.154', dst='86.34.72.196')/SCTP(sport=607, dport=3764, tag=0, chksum=2281868435)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:41:56             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:41:56             dut.10.240.183.141: stop
03/09/2020 09:41:56             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 09:41:56           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:42:01             dut.10.240.183.141: start
03/09/2020 09:42:01             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 09:42:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599126121.1416326 root@10.240.183.89:/tmp/tester/
03/09/2020 09:42:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599126121.1416326 root@10.240.183.89:/tmp/tester/
03/09/2020 09:42:04                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599126121.1416326
03/09/2020 09:42:05                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=49779, src='223.251.32.61', dst='158.4.25.149')/SCTP(sport=607, dport=3764, tag=0, chksum=2281868435)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 09:42:07             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:42:07             dut.10.240.183.141: stop
03/09/2020 09:42:07             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 09:42:07           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 09:54:26           TestGeneric_flow_api: Test Case test_n_tuple_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
03/09/2020 09:54:26             dut.10.240.183.141: quit
03/09/2020 09:54:27             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
03/09/2020 09:54:29             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
03/09/2020 09:54:30                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
03/09/2020 10:03:10                            dts: 
TEST SUITE : TestGeneric_flow_api
03/09/2020 10:03:10                            dts: NIC :        fortville_spirit
03/09/2020 10:03:10             dut.10.240.183.141: 
03/09/2020 10:03:10                         tester: 
03/09/2020 10:03:13           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
03/09/2020 10:03:13             dut.10.240.183.141: 
03/09/2020 10:03:13                         tester: 
03/09/2020 10:03:13             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
03/09/2020 10:03:14             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_20341_20200903100255   -- -i --disable-rss --rxq=16 --txq=16
03/09/2020 10:03:15             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_20341_20200903100255/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
03/09/2020 10:03:25             dut.10.240.183.141: set fwd rxonly
03/09/2020 10:03:25             dut.10.240.183.141: 
Set rxonly packet forwarding mode
03/09/2020 10:03:25             dut.10.240.183.141: set verbose 1
03/09/2020 10:03:25             dut.10.240.183.141: 
Change verbose level from 0 to 1
03/09/2020 10:03:25             dut.10.240.183.141: start
03/09/2020 10:03:26             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:04:33             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 10.217.145.254 src is 222.116.161.5  / end actions queue index 13 /  end
03/09/2020 10:04:33             dut.10.240.183.141: 
03/09/2020 10:04:33                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599127473.117355 root@10.240.183.89:/tmp/tester/
03/09/2020 10:04:34                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599127473.117355 root@10.240.183.89:/tmp/tester/
03/09/2020 10:04:36                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599127473.117355
03/09/2020 10:04:37                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=24196, src='222.116.161.5', dst='10.217.145.254')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:04:39             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:04:39             dut.10.240.183.141: stop
03/09/2020 10:04:39             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 1/Queue=13 -------
  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.
03/09/2020 10:04:39           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:06:18             dut.10.240.183.141: start
03/09/2020 10:06:18             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:06:18             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 92.165.83.32 src is 237.254.219.132 / udp dst is 40462 src is 19561  / end actions queue index 14 /  end
03/09/2020 10:06:18             dut.10.240.183.141: 
03/09/2020 10:06:18                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599127578.4059925 root@10.240.183.89:/tmp/tester/
03/09/2020 10:06:20                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599127578.4059925 root@10.240.183.89:/tmp/tester/
03/09/2020 10:06:22                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599127578.4059925
03/09/2020 10:06:22                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=372, src='237.254.219.132', dst='92.165.83.32')/UDP(sport=19561, dport=40462, len=28, chksum=59200)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:06:24             dut.10.240.183.141: 
testpmd> port 0/queue 14: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xe
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:06:24             dut.10.240.183.141: stop
03/09/2020 10:06:25             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 1/Queue=14 -------
  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.
03/09/2020 10:06:25           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 14: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xe
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:08:25             dut.10.240.183.141: start
03/09/2020 10:08:25             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:08:25             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 24.147.7.235 src is 104.7.123.19 / tcp dst is 46401 src is 27079  / end actions queue index 15 /  end
03/09/2020 10:08:25             dut.10.240.183.141: 
03/09/2020 10:08:25                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599127705.4833634 root@10.240.183.89:/tmp/tester/
03/09/2020 10:08:27                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599127705.4833634 root@10.240.183.89:/tmp/tester/
03/09/2020 10:08:29                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599127705.4833634
03/09/2020 10:08:30                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=30499, src='104.7.123.19', dst='24.147.7.235')/TCP(sport=27079, dport=46401, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=47224, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:08:32             dut.10.240.183.141: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:08:32             dut.10.240.183.141: stop
03/09/2020 10:08:32             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 1/Queue=15 -------
  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.
03/09/2020 10:08:32           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:09:08             dut.10.240.183.141: start
03/09/2020 10:09:08             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:09:08             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 61.204.33.42 src is 222.41.224.153 / sctp dst is 18832 src is 64050  / end actions queue index 3 /  end
03/09/2020 10:09:08             dut.10.240.183.141: 
03/09/2020 10:09:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599127748.8585052 root@10.240.183.89:/tmp/tester/
03/09/2020 10:09:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599127748.8585052 root@10.240.183.89:/tmp/tester/
03/09/2020 10:09:12                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599127748.8585052
03/09/2020 10:09:13                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=23692, src='222.41.224.153', dst='61.204.33.42')/SCTP(sport=64050, dport=18832, tag=0, chksum=1967596418)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:09:15             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:09:15             dut.10.240.183.141: stop
03/09/2020 10:09:15             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
03/09/2020 10:09:15           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:11:21             dut.10.240.183.141: start
03/09/2020 10:11:21             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:11:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599127881.5269856 root@10.240.183.89:/tmp/tester/
03/09/2020 10:11:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599127881.5269856 root@10.240.183.89:/tmp/tester/
03/09/2020 10:11:25                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599127881.5269856
03/09/2020 10:11:26                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=24196, src='10.217.145.254', dst='222.116.161.5')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:11:28             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

03/09/2020 10:11:28             dut.10.240.183.141: stop
03/09/2020 10:11:28             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 10:11:28           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

03/09/2020 10:13:31             dut.10.240.183.141: start
03/09/2020 10:13:31             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:13:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599128011.8449342 root@10.240.183.89:/tmp/tester/
03/09/2020 10:13:33                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599128011.8449342 root@10.240.183.89:/tmp/tester/
03/09/2020 10:13:35                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599128011.8449342
03/09/2020 10:13:36                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=23692, src='61.204.33.42', dst='222.41.224.153')/SCTP(sport=64050, dport=18832, tag=0, chksum=1967596418)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:13:38             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 10:13:38             dut.10.240.183.141: stop
03/09/2020 10:13:38             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 10:13:38           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 10:14:00             dut.10.240.183.141: start
03/09/2020 10:14:00             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:14:00                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599128040.6527271 root@10.240.183.89:/tmp/tester/
03/09/2020 10:14:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599128040.6527271 root@10.240.183.89:/tmp/tester/
03/09/2020 10:14:04                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599128040.6527271
03/09/2020 10:14:05                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=24052, src='222.116.161.5', dst='10.217.145.254')/SCTP(sport=64050, dport=18832, tag=0, chksum=1967596418)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:14:07             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 10:14:07             dut.10.240.183.141: stop
03/09/2020 10:14:07             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 10:14:07           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 10:14:36           TestGeneric_flow_api: Test Case test_n_tuple_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
03/09/2020 10:14:36             dut.10.240.183.141: quit
03/09/2020 10:14:38             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
03/09/2020 10:14:40             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
03/09/2020 10:14:40                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
03/09/2020 10:30:23                            dts: 
TEST SUITE : TestGeneric_flow_api
03/09/2020 10:30:23                            dts: NIC :        fortville_spirit
03/09/2020 10:30:23             dut.10.240.183.141: 
03/09/2020 10:30:23                         tester: 
03/09/2020 10:30:25           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
03/09/2020 10:30:26             dut.10.240.183.141: 
03/09/2020 10:30:26                         tester: 
03/09/2020 10:30:26             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
03/09/2020 10:30:26             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_22346_20200903103004   -- -i --disable-rss --rxq=16 --txq=16
03/09/2020 10:30:28             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_22346_20200903103004/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
03/09/2020 10:30:38             dut.10.240.183.141: set fwd rxonly
03/09/2020 10:30:38             dut.10.240.183.141: 
Set rxonly packet forwarding mode
03/09/2020 10:30:38             dut.10.240.183.141: set verbose 1
03/09/2020 10:30:38             dut.10.240.183.141: 
Change verbose level from 0 to 1
03/09/2020 10:30:38             dut.10.240.183.141: start
03/09/2020 10:30:38             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:31:20             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 88.66.58.172 src is 117.20.45.34  / end actions queue index 15 /  end
03/09/2020 10:31:20             dut.10.240.183.141: 
03/09/2020 10:31:20                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599129080.3528214 root@10.240.183.89:/tmp/tester/
03/09/2020 10:31:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599129080.3528214 root@10.240.183.89:/tmp/tester/
03/09/2020 10:31:24                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599129080.3528214
03/09/2020 10:31:24                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=17841, src='117.20.45.34', dst='88.66.58.172')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:31:26             dut.10.240.183.141: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:31:26             dut.10.240.183.141: stop
03/09/2020 10:31:26             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 1/Queue=15 -------
  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.
03/09/2020 10:31:26           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:31:32             dut.10.240.183.141: start
03/09/2020 10:31:32             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:31:32             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 201.58.108.206 src is 47.64.243.250 / sctp  / end actions queue index 0 /  end
03/09/2020 10:31:32             dut.10.240.183.141: 
03/09/2020 10:31:32                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599129092.4817035 root@10.240.183.89:/tmp/tester/
03/09/2020 10:31:34                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599129092.4817035 root@10.240.183.89:/tmp/tester/
03/09/2020 10:31:36                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599129092.4817035
03/09/2020 10:31:36                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=8450, src='47.64.243.250', dst='201.58.108.206')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:31:38             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:31:38             dut.10.240.183.141: stop
03/09/2020 10:31:38             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 10:31:38           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:31:45             dut.10.240.183.141: start
03/09/2020 10:31:45             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:31:45             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 230.160.147.90 src is 145.242.235.9 / udp dst is 63070 src is 50332  / end actions queue index 5 /  end
03/09/2020 10:31:45             dut.10.240.183.141: 
03/09/2020 10:31:45                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599129105.5134554 root@10.240.183.89:/tmp/tester/
03/09/2020 10:31:47                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599129105.5134554 root@10.240.183.89:/tmp/tester/
03/09/2020 10:31:49                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599129105.5134554
03/09/2020 10:31:50                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=33733, src='145.242.235.9', dst='230.160.147.90')/UDP(sport=50332, dport=63070, len=28, chksum=39182)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:31:52             dut.10.240.183.141: 
testpmd> port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:31:52             dut.10.240.183.141: stop
03/09/2020 10:31:52             dut.10.240.183.141: 
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.
03/09/2020 10:31:52           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:33:04             dut.10.240.183.141: start
03/09/2020 10:33:04             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:33:04             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 181.14.52.32 src is 60.58.127.196 / tcp dst is 1483 src is 51297  / end actions queue index 1 /  end
03/09/2020 10:33:04             dut.10.240.183.141: 
03/09/2020 10:33:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599129184.5603878 root@10.240.183.89:/tmp/tester/
03/09/2020 10:33:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599129184.5603878 root@10.240.183.89:/tmp/tester/
03/09/2020 10:33:08                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599129184.5603878
03/09/2020 10:33:09                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=54670, src='60.58.127.196', dst='181.14.52.32')/TCP(sport=51297, dport=1483, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=26560, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:33:11             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:33:11             dut.10.240.183.141: stop
03/09/2020 10:33:11             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 1/Queue= 1 -------
  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.
03/09/2020 10:33:11           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:33:43             dut.10.240.183.141: start
03/09/2020 10:33:43             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:33:43             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 172.194.204.188 src is 162.144.235.66 / sctp dst is 20294 src is 56104  / end actions queue index 1 /  end
03/09/2020 10:33:58           TestGeneric_flow_api: Test Case test_n_tuple_filter Result FAILED: TIMEOUT on flow create 0 ingress pattern eth / ipv4 dst is 172.194.204.188 src is 162.144.235.66 / sctp dst is 20294 src is 56104  / end actions queue index 1 /  end
03/09/2020 10:33:58           TestGeneric_flow_api: flow create 0 ingress pattern eth / ipv4 dst is 172.194.204.188 src is 162.144.235.66 / sctp dst is 20294 src is 56104  / end actions queue index 1 /  end
port_flow_complain(): Caught PMD error type 13 (specific pattern item): cause: 0x1666400, Invalid IPv4 item: Invalid argument
testpmd> 
03/09/2020 10:33:58             dut.10.240.183.141: quit
03/09/2020 10:34:00             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
03/09/2020 10:34:02             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
03/09/2020 10:34:03                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
03/09/2020 10:36:20                            dts: 
TEST SUITE : TestGeneric_flow_api
03/09/2020 10:36:20                            dts: NIC :        fortville_spirit
03/09/2020 10:36:20             dut.10.240.183.141: 
03/09/2020 10:36:20                         tester: 
03/09/2020 10:36:23           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
03/09/2020 10:36:23             dut.10.240.183.141: 
03/09/2020 10:36:23                         tester: 
03/09/2020 10:36:23             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
03/09/2020 10:36:24             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_23400_20200903103605   -- -i --disable-rss --rxq=16 --txq=16
03/09/2020 10:36:25             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_23400_20200903103605/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
03/09/2020 10:36:35             dut.10.240.183.141: set fwd rxonly
03/09/2020 10:36:35             dut.10.240.183.141: 
Set rxonly packet forwarding mode
03/09/2020 10:36:35             dut.10.240.183.141: set verbose 1
03/09/2020 10:36:35             dut.10.240.183.141: 
Change verbose level from 0 to 1
03/09/2020 10:36:35             dut.10.240.183.141: start
03/09/2020 10:36:35             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:37:25             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 216.247.26.186 src is 23.212.92.194  / end actions queue index 15 /  end
03/09/2020 10:37:25             dut.10.240.183.141: 
03/09/2020 10:37:25                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599129445.1143868 root@10.240.183.89:/tmp/tester/
03/09/2020 10:37:26                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599129445.1143868 root@10.240.183.89:/tmp/tester/
03/09/2020 10:37:28                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599129445.1143868
03/09/2020 10:37:29                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=4750, src='23.212.92.194', dst='216.247.26.186')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:37:31             dut.10.240.183.141: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:37:31             dut.10.240.183.141: stop
03/09/2020 10:37:31             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 1/Queue=15 -------
  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.
03/09/2020 10:37:31           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:39:26             dut.10.240.183.141: start
03/09/2020 10:39:26             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:39:26             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 119.241.0.233 src is 255.72.144.26 / udp dst is 40143 src is 65194  / end actions queue index 15 /  end
03/09/2020 10:39:26             dut.10.240.183.141: 
03/09/2020 10:39:26                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599129566.5122998 root@10.240.183.89:/tmp/tester/
03/09/2020 10:39:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599129566.5122998 root@10.240.183.89:/tmp/tester/
03/09/2020 10:39:30                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599129566.5122998
03/09/2020 10:39:31                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=29311, src='255.72.144.26', dst='119.241.0.233')/UDP(sport=65194, dport=40143, len=28, chksum=42825)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:39:33             dut.10.240.183.141: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:39:33             dut.10.240.183.141: stop
03/09/2020 10:39:33             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 1/Queue=15 -------
  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.
03/09/2020 10:39:33           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:39:36             dut.10.240.183.141: start
03/09/2020 10:39:36             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:39:36             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 0.200.251.8 src is 207.114.151.94 / tcp dst is 22453 src is 38570  / end actions queue index 13 /  end
03/09/2020 10:39:36             dut.10.240.183.141: 
03/09/2020 10:39:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599129576.8649065 root@10.240.183.89:/tmp/tester/
03/09/2020 10:39:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599129576.8649065 root@10.240.183.89:/tmp/tester/
03/09/2020 10:39:40                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599129576.8649065
03/09/2020 10:39:41                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=6170, src='207.114.151.94', dst='0.200.251.8')/TCP(sport=38570, dport=22453, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=35352, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:39:43             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:39:43             dut.10.240.183.141: stop
03/09/2020 10:39:43             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 1/Queue=13 -------
  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.
03/09/2020 10:39:43           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:41:19             dut.10.240.183.141: start
03/09/2020 10:41:19             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:41:19             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 96.148.107.28 src is 158.160.252.222 / sctp dst is 60814 src is 17882  / end actions queue index 9 /  end
03/09/2020 10:41:19             dut.10.240.183.141: 
03/09/2020 10:41:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599129679.5163713 root@10.240.183.89:/tmp/tester/
03/09/2020 10:41:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599129679.5163713 root@10.240.183.89:/tmp/tester/
03/09/2020 10:41:23                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599129679.5163713
03/09/2020 10:41:23                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=4886, src='158.160.252.222', dst='96.148.107.28')/SCTP(sport=17882, dport=60814, tag=0, chksum=3253884668)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:41:25             dut.10.240.183.141: 
testpmd> port 0/queue 9: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x9
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:41:25             dut.10.240.183.141: stop
03/09/2020 10:41:26             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 9 -> TX Port= 1/Queue= 9 -------
  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.
03/09/2020 10:41:26           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 9: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x9
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/09/2020 10:45:17             dut.10.240.183.141: start
03/09/2020 10:45:17             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:45:17                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599129917.4180741 root@10.240.183.89:/tmp/tester/
03/09/2020 10:45:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599129917.4180741 root@10.240.183.89:/tmp/tester/
03/09/2020 10:45:21                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599129917.4180741
03/09/2020 10:45:21                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=4750, src='216.247.26.186', dst='23.212.92.194')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:45:23             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

03/09/2020 10:45:23             dut.10.240.183.141: stop
03/09/2020 10:45:24             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 10:45:24           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

03/09/2020 10:45:38             dut.10.240.183.141: start
03/09/2020 10:45:38             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:45:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599129938.583431 root@10.240.183.89:/tmp/tester/
03/09/2020 10:45:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599129938.583431 root@10.240.183.89:/tmp/tester/
03/09/2020 10:45:42                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599129938.583431
03/09/2020 10:45:43                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=4886, src='96.148.107.28', dst='158.160.252.222')/SCTP(sport=17882, dport=60814, tag=0, chksum=3253884668)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:45:45             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 10:45:45             dut.10.240.183.141: stop
03/09/2020 10:45:45             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 10:45:45           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 10:46:10             dut.10.240.183.141: start
03/09/2020 10:46:11             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
03/09/2020 10:46:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599129971.042096 root@10.240.183.89:/tmp/tester/
03/09/2020 10:46:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599129971.042096 root@10.240.183.89:/tmp/tester/
03/09/2020 10:46:14                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599129971.042096
03/09/2020 10:46:15                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=4606, src='23.212.92.194', dst='216.247.26.186')/SCTP(sport=17882, dport=60814, tag=0, chksum=3253884668)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
03/09/2020 10:46:17             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 10:46:17             dut.10.240.183.141: stop
03/09/2020 10:46:17             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
03/09/2020 10:46:17           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

03/09/2020 10:46:31           TestGeneric_flow_api: Test Case test_n_tuple_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
03/09/2020 10:46:31             dut.10.240.183.141: quit
03/09/2020 10:46:33             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
03/09/2020 10:46:35             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
03/09/2020 10:46:35                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
04/09/2020 06:33:06                            dts: 
TEST SUITE : TestGeneric_flow_api
04/09/2020 06:33:06                            dts: NIC :        fortville_spirit
04/09/2020 06:33:06             dut.10.240.183.141: 
04/09/2020 06:33:06                         tester: 
04/09/2020 06:33:09           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
04/09/2020 06:33:09             dut.10.240.183.141: 
04/09/2020 06:33:09                         tester: 
04/09/2020 06:33:09             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 06:33:10             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_3185_20200904063107   -- -i --disable-rss --rxq=16 --txq=16
04/09/2020 06:33:11             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3185_20200904063107/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
i40e_GLQF_reg_init(): i40e device 0000:84:00.0 changed global register [0x002689a0]. original: 0x00000000, new: 0x00000029 
i40e_GLQF_reg_init(): i40e device 0000:84:00.0 changed global register [0x00268ca4]. original: 0x00001840, new: 0x00009420 
i40e_aq_debug_write_global_register(): i40e device 0000:84:00.0 changed global register [0x0026c7a0]. original: 0xa8, after: 0x28
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
04/09/2020 06:33:21             dut.10.240.183.141: set fwd rxonly
04/09/2020 06:33:21             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 06:33:21             dut.10.240.183.141: set verbose 1
04/09/2020 06:33:21             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 06:33:21             dut.10.240.183.141: start
04/09/2020 06:33:21             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:33:39             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 15.29.236.58 src is 216.118.26.31  / end actions queue index 5 /  end
04/09/2020 06:33:39             dut.10.240.183.141: 
04/09/2020 06:33:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201219.7807307 root@10.240.183.89:/tmp/tester/
04/09/2020 06:33:41                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201219.7807307 root@10.240.183.89:/tmp/tester/
04/09/2020 06:33:43                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201219.7807307
04/09/2020 06:33:44                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=36072, src='216.118.26.31', dst='15.29.236.58')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:33:46             dut.10.240.183.141: 
testpmd> port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:33:46             dut.10.240.183.141: stop
04/09/2020 06:33:46             dut.10.240.183.141: 
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.
04/09/2020 06:33:46           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:33:50             dut.10.240.183.141: start
04/09/2020 06:33:50             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:33:50             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 168.202.54.166 src is 237.25.159.173 / sctp  / end actions queue index 1 /  end
04/09/2020 06:33:50             dut.10.240.183.141: 
04/09/2020 06:33:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201230.9597056 root@10.240.183.89:/tmp/tester/
04/09/2020 06:33:52                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201230.9597056 root@10.240.183.89:/tmp/tester/
04/09/2020 06:33:54                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201230.9597056
04/09/2020 06:33:55                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=3598, src='237.25.159.173', dst='168.202.54.166')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:33:57             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:33:57             dut.10.240.183.141: stop
04/09/2020 06:33:57             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 1/Queue= 1 -------
  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.
04/09/2020 06:33:57           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:34:35             dut.10.240.183.141: start
04/09/2020 06:34:35             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:34:35             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 136.72.83.234 src is 206.248.81.153 / udp dst is 7698 src is 60261  / end actions queue index 5 /  end
04/09/2020 06:34:35             dut.10.240.183.141: 
04/09/2020 06:34:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201275.4770954 root@10.240.183.89:/tmp/tester/
04/09/2020 06:34:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201275.4770954 root@10.240.183.89:/tmp/tester/
04/09/2020 06:34:39                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201275.4770954
04/09/2020 06:34:39                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=32248, src='206.248.81.153', dst='136.72.83.234')/UDP(sport=60261, dport=7698, len=28, chksum=17605)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:34:41             dut.10.240.183.141: 
testpmd> port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:34:41             dut.10.240.183.141: stop
04/09/2020 06:34:42             dut.10.240.183.141: 
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.
04/09/2020 06:34:42           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:34:48             dut.10.240.183.141: start
04/09/2020 06:34:48             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:34:48             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 194.125.36.187 src is 139.46.159.120 / tcp dst is 58635 src is 2025  / end actions queue index 1 /  end
04/09/2020 06:34:48             dut.10.240.183.141: 
04/09/2020 06:34:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201288.525459 root@10.240.183.89:/tmp/tester/
04/09/2020 06:34:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201288.525459 root@10.240.183.89:/tmp/tester/
04/09/2020 06:34:52                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201288.525459
04/09/2020 06:34:52                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=26844, src='139.46.159.120', dst='194.125.36.187')/TCP(sport=2025, dport=58635, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56389, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:34:54             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:34:54             dut.10.240.183.141: stop
04/09/2020 06:34:55             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 1/Queue= 1 -------
  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.
04/09/2020 06:34:55           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:34:59             dut.10.240.183.141: start
04/09/2020 06:34:59             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:34:59                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201299.9805076 root@10.240.183.89:/tmp/tester/
04/09/2020 06:35:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201299.9805076 root@10.240.183.89:/tmp/tester/
04/09/2020 06:35:03                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201299.9805076
04/09/2020 06:35:04                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=36072, src='15.29.236.58', dst='216.118.26.31')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:35:06             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

04/09/2020 06:35:06             dut.10.240.183.141: stop
04/09/2020 06:35:06             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
04/09/2020 06:35:06           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

04/09/2020 06:35:09             dut.10.240.183.141: start
04/09/2020 06:35:09             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:35:09                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201309.6953323 root@10.240.183.89:/tmp/tester/
04/09/2020 06:35:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201309.6953323 root@10.240.183.89:/tmp/tester/
04/09/2020 06:35:13                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201309.6953323
04/09/2020 06:35:14                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=26726, src='194.125.36.187', dst='139.46.159.120')/SCTP(sport=2025, dport=58635, tag=0, chksum=3609725242)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:35:16             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

04/09/2020 06:35:16             dut.10.240.183.141: stop
04/09/2020 06:35:16             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
04/09/2020 06:35:16           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

04/09/2020 06:35:23             dut.10.240.183.141: start
04/09/2020 06:35:23             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:35:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201323.7637417 root@10.240.183.89:/tmp/tester/
04/09/2020 06:35:25                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201323.7637417 root@10.240.183.89:/tmp/tester/
04/09/2020 06:35:27                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201323.7637417
04/09/2020 06:35:28                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=35928, src='216.118.26.31', dst='15.29.236.58')/SCTP(sport=2025, dport=58635, tag=0, chksum=3609725242)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:35:30             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

04/09/2020 06:35:30             dut.10.240.183.141: stop
04/09/2020 06:35:30             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
04/09/2020 06:35:30           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

04/09/2020 06:35:36           TestGeneric_flow_api: Test Case test_n_tuple_filter Result FAILED: "the actual queue doesn't equal to the expected queue."
04/09/2020 06:35:36             dut.10.240.183.141: quit
04/09/2020 06:35:37             dut.10.240.183.141: 

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

Stopping port 1...
Stopping ports...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
04/09/2020 06:35:39             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 06:35:40                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
04/09/2020 06:38:11                            dts: 
TEST SUITE : TestGeneric_flow_api
04/09/2020 06:38:11                            dts: NIC :        fortville_spirit
04/09/2020 06:38:11             dut.10.240.183.141: 
04/09/2020 06:38:11                         tester: 
04/09/2020 06:38:13           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
04/09/2020 06:38:14             dut.10.240.183.141: 
04/09/2020 06:38:14                         tester: 
04/09/2020 06:38:14             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 06:38:14             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_5093_20200904063755   -- -i --disable-rss --rxq=16 --txq=16
04/09/2020 06:38:16             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_5093_20200904063755/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
04/09/2020 06:38:26             dut.10.240.183.141: set fwd rxonly
04/09/2020 06:38:26             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 06:38:26             dut.10.240.183.141: set verbose 1
04/09/2020 06:38:26             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 06:38:26             dut.10.240.183.141: start
04/09/2020 06:38:26             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:38:29             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 205.9.74.74 src is 12.196.38.122  / end actions queue index 15 /  end
04/09/2020 06:38:29             dut.10.240.183.141: 
04/09/2020 06:38:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201509.518911 root@10.240.183.89:/tmp/tester/
04/09/2020 06:38:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201509.518911 root@10.240.183.89:/tmp/tester/
04/09/2020 06:38:33                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201509.518911
04/09/2020 06:38:33                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=12356, src='12.196.38.122', dst='205.9.74.74')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:38:35             dut.10.240.183.141: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:38:35             dut.10.240.183.141: stop
04/09/2020 06:38:36             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 1/Queue=15 -------
  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.
04/09/2020 06:38:36           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xf
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:38:38             dut.10.240.183.141: start
04/09/2020 06:38:39             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:38:39             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 42.184.133.110 src is 103.198.5.22 / sctp  / end actions queue index 0 /  end
04/09/2020 06:38:39             dut.10.240.183.141: 
04/09/2020 06:38:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201519.0846925 root@10.240.183.89:/tmp/tester/
04/09/2020 06:38:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201519.0846925 root@10.240.183.89:/tmp/tester/
04/09/2020 06:38:42                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201519.0846925
04/09/2020 06:38:43                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=23875, src='103.198.5.22', dst='42.184.133.110')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:38:45             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:38:45             dut.10.240.183.141: stop
04/09/2020 06:38:45             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
04/09/2020 06:38:45           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:38:53             dut.10.240.183.141: start
04/09/2020 06:38:53             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:38:53             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 125.8.85.134 src is 178.40.180.243 / udp dst is 1307 src is 19827  / end actions queue index 13 /  end
04/09/2020 06:38:53             dut.10.240.183.141: 
04/09/2020 06:38:53                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201533.4315865 root@10.240.183.89:/tmp/tester/
04/09/2020 06:38:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201533.4315865 root@10.240.183.89:/tmp/tester/
04/09/2020 06:38:57                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201533.4315865
04/09/2020 06:38:57                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=16658, src='178.40.180.243', dst='125.8.85.134')/UDP(sport=19827, dport=1307, len=28, chksum=48840)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:38:59             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:38:59             dut.10.240.183.141: stop
04/09/2020 06:38:59             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 1/Queue=13 -------
  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.
04/09/2020 06:38:59           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:39:03             dut.10.240.183.141: start
04/09/2020 06:39:03             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:39:03             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 153.79.76.78 src is 113.40.206.191 / tcp dst is 63904 src is 33185  / end actions queue index 4 /  end
04/09/2020 06:39:04             dut.10.240.183.141: 
04/09/2020 06:39:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201544.064733 root@10.240.183.89:/tmp/tester/
04/09/2020 06:39:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201544.064733 root@10.240.183.89:/tmp/tester/
04/09/2020 06:39:07                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201544.064733
04/09/2020 06:39:08                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=21814, src='113.40.206.191', dst='153.79.76.78')/TCP(sport=33185, dport=63904, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=14930, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:39:10             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:39:10             dut.10.240.183.141: stop
04/09/2020 06:39:10             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 1/Queue= 4 -------
  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.
04/09/2020 06:39:10           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:39:13             dut.10.240.183.141: start
04/09/2020 06:39:13             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:39:13                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201553.2558582 root@10.240.183.89:/tmp/tester/
04/09/2020 06:39:15                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201553.2558582 root@10.240.183.89:/tmp/tester/
04/09/2020 06:39:16                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201553.2558582
04/09/2020 06:39:17                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=12356, src='205.9.74.74', dst='12.196.38.122')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:39:19             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

04/09/2020 06:39:19             dut.10.240.183.141: stop
04/09/2020 06:39:19             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
04/09/2020 06:39:19           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

04/09/2020 06:39:22             dut.10.240.183.141: start
04/09/2020 06:39:22             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:39:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201562.5767293 root@10.240.183.89:/tmp/tester/
04/09/2020 06:39:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201562.5767293 root@10.240.183.89:/tmp/tester/
04/09/2020 06:39:26                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201562.5767293
04/09/2020 06:39:27                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=21696, src='153.79.76.78', dst='113.40.206.191')/SCTP(sport=33185, dport=63904, tag=0, chksum=1040476766)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:39:29             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

04/09/2020 06:39:29             dut.10.240.183.141: stop
04/09/2020 06:39:29             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
04/09/2020 06:39:29           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - 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 

04/09/2020 06:39:32             dut.10.240.183.141: start
04/09/2020 06:39:32             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:39:32                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201572.1378882 root@10.240.183.89:/tmp/tester/
04/09/2020 06:39:33                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201572.1378882 root@10.240.183.89:/tmp/tester/
04/09/2020 06:39:35                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201572.1378882
04/09/2020 06:39:36                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=23875, src='103.198.5.22', dst='42.184.133.110')/SCTP(sport=33185, dport=63904, tag=0, chksum=1040476766)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:39:38             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:39:38             dut.10.240.183.141: stop
04/09/2020 06:39:38             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
04/09/2020 06:39:38           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:39:46             dut.10.240.183.141: start
04/09/2020 06:39:47             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:39:47             dut.10.240.183.141: flow list 0
04/09/2020 06:39:47             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => QUEUE
1	0	0	i--	ETH IPV4 SCTP => QUEUE
2	0	0	i--	ETH IPV4 UDP => QUEUE
3	0	0	i--	ETH IPV4 TCP => QUEUE
04/09/2020 06:39:47             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 06:39:47             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 06:39:47             dut.10.240.183.141: flow list 0
04/09/2020 06:39:47             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 SCTP => QUEUE
2	0	0	i--	ETH IPV4 UDP => QUEUE
3	0	0	i--	ETH IPV4 TCP => QUEUE
04/09/2020 06:39:47             dut.10.240.183.141: flow flush 0
04/09/2020 06:39:47             dut.10.240.183.141: 
04/09/2020 06:39:47             dut.10.240.183.141: flow list 0
04/09/2020 06:39:47             dut.10.240.183.141: 
04/09/2020 06:39:47           TestGeneric_flow_api: Test Case test_n_tuple_filter Result PASSED:
04/09/2020 06:39:47             dut.10.240.183.141: quit
04/09/2020 06:39:48             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
04/09/2020 06:39:50             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 06:39:51                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
04/09/2020 06:40:33                            dts: 
TEST SUITE : TestGeneric_flow_api
04/09/2020 06:40:33                            dts: NIC :        fortville_spirit
04/09/2020 06:40:33             dut.10.240.183.141: 
04/09/2020 06:40:33                         tester: 
04/09/2020 06:40:36           TestGeneric_flow_api: Test Case test_n_tuple_filter Begin
04/09/2020 06:40:36             dut.10.240.183.141: 
04/09/2020 06:40:36                         tester: 
04/09/2020 06:40:36             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 06:40:36             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_6712_20200904064018   -- -i --disable-rss --rxq=16 --txq=16
04/09/2020 06:40:38             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6712_20200904064018/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
04/09/2020 06:40:48             dut.10.240.183.141: set fwd rxonly
04/09/2020 06:40:48             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 06:40:48             dut.10.240.183.141: set verbose 1
04/09/2020 06:40:48             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 06:40:48             dut.10.240.183.141: start
04/09/2020 06:40:48             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:40:51             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 146.55.224.174 src is 74.200.142.171  / end actions queue index 1 /  end
04/09/2020 06:40:51             dut.10.240.183.141: 
04/09/2020 06:40:51                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201651.8130424 root@10.240.183.89:/tmp/tester/
04/09/2020 06:40:53                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201651.8130424 root@10.240.183.89:/tmp/tester/
04/09/2020 06:40:55                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201651.8130424
04/09/2020 06:40:56                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=11900, src='74.200.142.171', dst='146.55.224.174')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:40:58             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:40:58             dut.10.240.183.141: stop
04/09/2020 06:40:58             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 1/Queue= 1 -------
  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.
04/09/2020 06:40:58           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:41:03             dut.10.240.183.141: start
04/09/2020 06:41:03             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:41:03             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 215.45.220.238 src is 191.177.113.161 / sctp  / end actions queue index 4 /  end
04/09/2020 06:41:03             dut.10.240.183.141: 
04/09/2020 06:41:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201663.63051 root@10.240.183.89:/tmp/tester/
04/09/2020 06:41:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201663.63051 root@10.240.183.89:/tmp/tester/
04/09/2020 06:41:07                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201663.63051
04/09/2020 06:41:08                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=38102, src='191.177.113.161', dst='215.45.220.238')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:41:10             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:41:10             dut.10.240.183.141: stop
04/09/2020 06:41:10             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 1/Queue= 4 -------
  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.
04/09/2020 06:41:10           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:41:12             dut.10.240.183.141: start
04/09/2020 06:41:12             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:41:12             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 19.136.170.3 src is 223.124.127.11 / udp dst is 49752 src is 61966  / end actions queue index 2 /  end
04/09/2020 06:41:12             dut.10.240.183.141: 
04/09/2020 06:41:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201672.9012666 root@10.240.183.89:/tmp/tester/
04/09/2020 06:41:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201672.9012666 root@10.240.183.89:/tmp/tester/
04/09/2020 06:41:16                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201672.9012666
04/09/2020 06:41:17                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=24233, src='223.124.127.11', dst='19.136.170.3')/UDP(sport=61966, dport=49752, len=28, chksum=31366)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:41:19             dut.10.240.183.141: 
testpmd> port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:41:19             dut.10.240.183.141: stop
04/09/2020 06:41:19             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 1/Queue= 2 -------
  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.
04/09/2020 06:41:19           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:41:22             dut.10.240.183.141: start
04/09/2020 06:41:22             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:41:22             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 18.201.169.98 src is 5.5.193.181 / tcp dst is 48270 src is 55337  / end actions queue index 8 /  end
04/09/2020 06:41:22             dut.10.240.183.141: 
04/09/2020 06:41:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599201682.3991728 root@10.240.183.89:/tmp/tester/
04/09/2020 06:41:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599201682.3991728 root@10.240.183.89:/tmp/tester/
04/09/2020 06:41:26                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599201682.3991728
04/09/2020 06:41:26                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=63445, src='5.5.193.181', dst='18.201.169.98')/TCP(sport=55337, dport=48270, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=50043, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 06:41:28             dut.10.240.183.141: 
testpmd> port 0/queue 8: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x8
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:41:28             dut.10.240.183.141: stop
04/09/2020 06:41:28             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 1/Queue= 8 -------
  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.
04/09/2020 06:41:28           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 8: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x8
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 06:41:31             dut.10.240.183.141: start
04/09/2020 06:41:31             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 06:41:31             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 33.120.117.16 src is 167.215.185.122 / sctp dst is 4137 src is 5960  / end actions queue index 1 /  end
04/09/2020 06:41:46           TestGeneric_flow_api: Test Case test_n_tuple_filter Result FAILED: TIMEOUT on flow create 0 ingress pattern eth / ipv4 dst is 33.120.117.16 src is 167.215.185.122 / sctp dst is 4137 src is 5960  / end actions queue index 1 /  end
04/09/2020 06:41:46           TestGeneric_flow_api: flow create 0 ingress pattern eth / ipv4 dst is 33.120.117.16 src is 167.215.185.122 / sctp dst is 4137 src is 5960  / end actions queue index 1 /  end
port_flow_complain(): Caught PMD error type 13 (specific pattern item): cause: 0x1666400, Invalid IPv4 item: Invalid argument
testpmd> 
04/09/2020 06:41:46             dut.10.240.183.141: quit
04/09/2020 06:41:48             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
04/09/2020 06:41:50             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 06:41:50                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api
04/09/2020 07:02:22                            dts: 
TEST SUITE : TestGeneric_flow_api
04/09/2020 07:02:22                            dts: NIC :        fortville_spirit
04/09/2020 07:02:22             dut.10.240.183.141: 
04/09/2020 07:02:22                         tester: 
04/09/2020 07:02:24           TestGeneric_flow_api: Test Case test_2_tuple_filter Begin
04/09/2020 07:02:25             dut.10.240.183.141: 
04/09/2020 07:02:25                         tester: 
04/09/2020 07:02:25             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:02:25             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_8435_20200904065301   -- -i --disable-rss --rxq=16 --txq=16
04/09/2020 07:02:27             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
04/09/2020 07:02:37             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:02:37             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:02:37             dut.10.240.183.141: set verbose 1
04/09/2020 07:02:37             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:02:37             dut.10.240.183.141: start
04/09/2020 07:02:37             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:02:39             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp dst is 10122  / end actions queue index 11 /  end
04/09/2020 07:02:39             dut.10.240.183.141: 
04/09/2020 07:02:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599202959.5758493 root@10.240.183.89:/tmp/tester/
04/09/2020 07:02:41                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599202959.5758493 root@10.240.183.89:/tmp/tester/
04/09/2020 07:02:43                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599202959.5758493
04/09/2020 07:02:44                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31930, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=10122, len=28, chksum=9536)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
04/09/2020 07:02:46             dut.10.240.183.141: 
testpmd> port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:02:46             dut.10.240.183.141: stop
04/09/2020 07:02:46             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 1/Queue=11 -------
  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.
04/09/2020 07:02:46           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:02:48             dut.10.240.183.141: start
04/09/2020 07:02:48             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:02:48             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / tcp dst is 28825  / end actions queue index 2 /  end
04/09/2020 07:02:48             dut.10.240.183.141: 
04/09/2020 07:02:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599202968.2588356 root@10.240.183.89:/tmp/tester/
04/09/2020 07:02:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599202968.2588356 root@10.240.183.89:/tmp/tester/
04/09/2020 07:02:51                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599202968.2588356
04/09/2020 07:02:52                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=28825, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=27754, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:02:54             dut.10.240.183.141: 
testpmd> port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:02:54             dut.10.240.183.141: stop
04/09/2020 07:02:54             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 1/Queue= 2 -------
  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.
04/09/2020 07:02:54           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:02:56             dut.10.240.183.141: start
04/09/2020 07:02:56             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:02:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599202976.9231372 root@10.240.183.89:/tmp/tester/
04/09/2020 07:02:58                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599202976.9231372 root@10.240.183.89:/tmp/tester/
04/09/2020 07:03:00                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599202976.9231372
04/09/2020 07:03:01                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=63848, src='192.168.0.1', dst='192.168.0.2')/UDP(sport=22, dport=24, len=28, chksum=51583)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:03:03             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - 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 

04/09/2020 07:03:03             dut.10.240.183.141: stop
04/09/2020 07:03:03             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
04/09/2020 07:03:03           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - 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 

04/09/2020 07:03:05             dut.10.240.183.141: start
04/09/2020 07:03:05             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:03:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599202985.5876076 root@10.240.183.89:/tmp/tester/
04/09/2020 07:03:07                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599202985.5876076 root@10.240.183.89:/tmp/tester/
04/09/2020 07:03:09                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599202985.5876076
04/09/2020 07:03:10                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=63847, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=32, dport=34, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22916, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:03:12             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

04/09/2020 07:03:12             dut.10.240.183.141: stop
04/09/2020 07:03:12             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
  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.
04/09/2020 07:03:12           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - 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 

04/09/2020 07:03:14             dut.10.240.183.141: start
04/09/2020 07:03:14             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:03:14             dut.10.240.183.141: flow list 0
04/09/2020 07:03:14             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP => QUEUE
1	0	0	i--	ETH IPV4 TCP => QUEUE
04/09/2020 07:03:14             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:03:14             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:03:14             dut.10.240.183.141: flow list 0
04/09/2020 07:03:14             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 TCP => QUEUE
04/09/2020 07:03:14             dut.10.240.183.141: flow flush 0
04/09/2020 07:03:14             dut.10.240.183.141: 
04/09/2020 07:03:14             dut.10.240.183.141: flow list 0
04/09/2020 07:03:14             dut.10.240.183.141: 
04/09/2020 07:03:14           TestGeneric_flow_api: Test Case test_2_tuple_filter Result PASSED:
04/09/2020 07:03:14             dut.10.240.183.141: quit
04/09/2020 07:03:15             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
04/09/2020 07:03:17             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:03:18           TestGeneric_flow_api: Test Case test_L2_tunnel_filter Result SKIPPED:
04/09/2020 07:03:18           TestGeneric_flow_api: Test Case test_ethertype_filter Begin
04/09/2020 07:03:18             dut.10.240.183.141: 
04/09/2020 07:03:18                         tester: 
04/09/2020 07:03:18             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:03:19             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_8435_20200904065301    -- -i --disable-rss --rxq=16 --txq=16
04/09/2020 07:03:20             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:03:30             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:03:30             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:03:30             dut.10.240.183.141: set verbose 1
04/09/2020 07:03:30             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:03:30             dut.10.240.183.141: start
04/09/2020 07:03:30             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:03:32             dut.10.240.183.141: flow validate 0 ingress pattern eth type is 0x0806  / end actions queue index 13 /  end
04/09/2020 07:03:32             dut.10.240.183.141: 
04/09/2020 07:03:32             dut.10.240.183.141: flow validate 0 ingress pattern eth type is 0x0806  / end actions queue index 16 /  end
04/09/2020 07:03:32             dut.10.240.183.141: 
04/09/2020 07:03:32             dut.10.240.183.141: flow validate 0 ingress pattern eth type is 0x88cc  / end actions queue index 16 /  end
04/09/2020 07:03:33             dut.10.240.183.141: 
04/09/2020 07:03:33             dut.10.240.183.141: flow validate 0 ingress pattern eth type is 0x86dd  / end actions queue index 3 /  end
04/09/2020 07:03:33             dut.10.240.183.141: 
04/09/2020 07:03:33             dut.10.240.183.141: flow validate 0 ingress pattern eth type is 0x0800  / end actions queue index 6 /  end
04/09/2020 07:03:33             dut.10.240.183.141: 
04/09/2020 07:03:33             dut.10.240.183.141: flow validate 0 ingress pattern eth type is 0x8100  / end actions queue index 15 /  end
04/09/2020 07:03:33             dut.10.240.183.141: 
04/09/2020 07:03:33             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x0806  / end actions queue index 16 /  end
04/09/2020 07:03:33             dut.10.240.183.141: 
04/09/2020 07:03:33             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x0806  / end actions queue index 3 /  end
04/09/2020 07:03:33             dut.10.240.183.141: 
04/09/2020 07:03:33                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203013.358398 root@10.240.183.89:/tmp/tester/
04/09/2020 07:03:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203013.358398 root@10.240.183.89:/tmp/tester/
04/09/2020 07:03:37                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203013.358398
04/09/2020 07:03:37                         tester: packet ready for sending...
Ether(dst='ff:ff:ff:ff:ff:ff', src='00:0c:29:67:ac:3e', type=2054)/ARP(hwtype=1, ptype=2048, hwlen=6, plen=4, op=1, hwsrc='00:0c:29:67:ac:3e', psrc='10.240.183.89', hwdst='00:00:00:00:00:00', pdst='192.168.1.1')/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:03:39             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=FF:FF:FF:FF:FF:FF - type=0x0806 - length=62 - nb_segs=1 - hw ptype: L2_ETHER_ARP  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:03:39             dut.10.240.183.141: stop
04/09/2020 07:03:39             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
04/09/2020 07:03:39           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=FF:FF:FF:FF:FF:FF - type=0x0806 - length=62 - nb_segs=1 - hw ptype: L2_ETHER_ARP  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:03:41             dut.10.240.183.141: start
04/09/2020 07:03:42             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:03:42             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x86bb  / end actions queue index 15 /  end
04/09/2020 07:03:42             dut.10.240.183.141: 
04/09/2020 07:03:42                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203022.0968902 root@10.240.183.89:/tmp/tester/
04/09/2020 07:03:43                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203022.0968902 root@10.240.183.89:/tmp/tester/
04/09/2020 07:03:45                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203022.0968902
04/09/2020 07:03:46                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=34491)/Raw(load=b'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:03:48             dut.10.240.183.141: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x86bb - length=60 - nb_segs=1 - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0xf
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:03:48             dut.10.240.183.141: stop
04/09/2020 07:03:48             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 0/Queue=15 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:03:48           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 15: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x86bb - length=60 - nb_segs=1 - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0xf
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:03:50             dut.10.240.183.141: start
04/09/2020 07:03:50             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:03:50             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x8864  / end actions drop /  end
04/09/2020 07:03:50             dut.10.240.183.141: 
04/09/2020 07:03:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203030.8077497 root@10.240.183.89:/tmp/tester/
04/09/2020 07:03:52                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203030.8077497 root@10.240.183.89:/tmp/tester/
04/09/2020 07:03:54                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203030.8077497
04/09/2020 07:03:55                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=34916)/PPPoE(version=7, type=8, code=120, sessionid=30840, len=30840)/Raw(load=b'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:03:57             dut.10.240.183.141: 
testpmd> 
04/09/2020 07:03:57             dut.10.240.183.141: stop
04/09/2020 07:03:57             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

Done.
04/09/2020 07:03:57           TestGeneric_flow_api: pf: 
testpmd> 
04/09/2020 07:03:59             dut.10.240.183.141: start
04/09/2020 07:03:59             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:03:59             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 type is 0x8847  / end actions queue index 10 /  end
04/09/2020 07:03:59             dut.10.240.183.141: 
04/09/2020 07:03:59                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203039.506731 root@10.240.183.89:/tmp/tester/
04/09/2020 07:04:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203039.506731 root@10.240.183.89:/tmp/tester/
04/09/2020 07:04:03                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203039.506731
04/09/2020 07:04:04                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:0c:29:67:ac:3e', type=34887)/Raw(load=b'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:04:06             dut.10.240.183.141: 
testpmd> port 0/queue 10: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x8847 - length=60 - nb_segs=1 - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0xa
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:04:06             dut.10.240.183.141: stop
04/09/2020 07:04:06             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:04:06           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 10: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x8847 - length=60 - nb_segs=1 - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0xa
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:04:08             dut.10.240.183.141: start
04/09/2020 07:04:08             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:04:08             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x88cc  / end actions queue index 11 /  end
04/09/2020 07:04:08             dut.10.240.183.141: 
04/09/2020 07:04:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203048.2302217 root@10.240.183.89:/tmp/tester/
04/09/2020 07:04:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203048.2302217 root@10.240.183.89:/tmp/tester/
04/09/2020 07:04:11                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203048.2302217
04/09/2020 07:04:12                         tester: packet ready for sending...
Raw(load=b'h\x05\xca0j\x80\x00\x0c)g\xac>\x88\xccxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:04:14             dut.10.240.183.141: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x88cc - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER_LLDP  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:04:14             dut.10.240.183.141: stop
04/09/2020 07:04:14             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 0/Queue=11 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:04:14           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x88cc - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER_LLDP  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:04:16             dut.10.240.183.141: start
04/09/2020 07:04:16             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:04:16             dut.10.240.183.141: flow list 0
04/09/2020 07:04:17             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH => QUEUE
1	0	0	i--	ETH => QUEUE
2	0	0	i--	ETH => DROP
3	0	0	i--	ETH => QUEUE
4	0	0	i--	ETH => QUEUE
04/09/2020 07:04:17             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:04:17             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:04:17             dut.10.240.183.141: flow list 0
04/09/2020 07:04:17             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH => QUEUE
2	0	0	i--	ETH => DROP
3	0	0	i--	ETH => QUEUE
4	0	0	i--	ETH => QUEUE
04/09/2020 07:04:17             dut.10.240.183.141: flow flush 0
04/09/2020 07:04:17             dut.10.240.183.141: 
04/09/2020 07:04:17             dut.10.240.183.141: flow list 0
04/09/2020 07:04:17             dut.10.240.183.141: 
04/09/2020 07:04:17           TestGeneric_flow_api: Test Case test_ethertype_filter Result PASSED:
04/09/2020 07:04:17             dut.10.240.183.141: quit
04/09/2020 07:04:18             dut.10.240.183.141: 
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...
Done

Bye...
04/09/2020 07:04:20             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:04:21           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_basic_for_ipv4_other Begin
04/09/2020 07:04:21             dut.10.240.183.141: 
04/09/2020 07:04:21                         tester: 
04/09/2020 07:04:21             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:04:21             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_8435_20200904065301    -- -i --rxq=16 --txq=16
04/09/2020 07:04:23             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:04:33             dut.10.240.183.141: port config all rss all
04/09/2020 07:04:33             dut.10.240.183.141: 
Port 0 modified RSS hash function based on hardware support,requested:0x7f83fffc configured:0x7ef8
rss_hf 0x7f83fffc
04/09/2020 07:04:33             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:04:33             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:04:33             dut.10.240.183.141: set verbose 1
04/09/2020 07:04:33             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:04:33             dut.10.240.183.141: start
04/09/2020 07:04:33             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:04:35             dut.10.240.183.141: flow validate 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
04/09/2020 07:04:35             dut.10.240.183.141: 
04/09/2020 07:04:35             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
04/09/2020 07:04:35             dut.10.240.183.141: 
04/09/2020 07:04:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203075.5648882 root@10.240.183.89:/tmp/tester/
04/09/2020 07:04:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203075.5648882 root@10.240.183.89:/tmp/tester/
04/09/2020 07:04:39                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203075.5648882
04/09/2020 07:04:40                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:04:42             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

04/09/2020 07:04:42                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203082.0131478 root@10.240.183.89:/tmp/tester/
04/09/2020 07:04:43                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203082.0131478 root@10.240.183.89:/tmp/tester/
04/09/2020 07:04:45                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203082.0131478
04/09/2020 07:04:46                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:04:48             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:04:48             dut.10.240.183.141: flow list 0
04/09/2020 07:04:48             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => MARK RSS
04/09/2020 07:04:48             dut.10.240.183.141: flow flush 0
04/09/2020 07:04:48             dut.10.240.183.141: 
04/09/2020 07:04:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203088.6285698 root@10.240.183.89:/tmp/tester/
04/09/2020 07:04:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203088.6285698 root@10.240.183.89:/tmp/tester/
04/09/2020 07:04:52                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203088.6285698
04/09/2020 07:04:53                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:04:55             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:04:55             dut.10.240.183.141: flow list 0
04/09/2020 07:04:55             dut.10.240.183.141: 
04/09/2020 07:04:55             dut.10.240.183.141: flow validate 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / end actions mark id 1 / rss / end
04/09/2020 07:04:55             dut.10.240.183.141: 
04/09/2020 07:04:55             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / end actions mark id 1 / rss / end
04/09/2020 07:04:55             dut.10.240.183.141: 
04/09/2020 07:04:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203095.341249 root@10.240.183.89:/tmp/tester/
04/09/2020 07:04:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203095.341249 root@10.240.183.89:/tmp/tester/
04/09/2020 07:04:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203095.341249
04/09/2020 07:04:59                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:05:01             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

04/09/2020 07:05:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203101.917984 root@10.240.183.89:/tmp/tester/
04/09/2020 07:05:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203101.917984 root@10.240.183.89:/tmp/tester/
04/09/2020 07:05:05                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203101.917984
04/09/2020 07:05:06                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:05:08             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=88:88:88:88:88:88 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:05:08             dut.10.240.183.141: flow list 0
04/09/2020 07:05:08             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => MARK RSS
04/09/2020 07:05:08             dut.10.240.183.141: flow flush 0
04/09/2020 07:05:08             dut.10.240.183.141: 
04/09/2020 07:05:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203108.548228 root@10.240.183.89:/tmp/tester/
04/09/2020 07:05:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203108.548228 root@10.240.183.89:/tmp/tester/
04/09/2020 07:05:12                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203108.548228
04/09/2020 07:05:13                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:05:15             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:05:15             dut.10.240.183.141: flow list 0
04/09/2020 07:05:15             dut.10.240.183.141: 
04/09/2020 07:05:15             dut.10.240.183.141: flow validate 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
04/09/2020 07:05:15             dut.10.240.183.141: 
04/09/2020 07:05:15             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
04/09/2020 07:05:15             dut.10.240.183.141: 
04/09/2020 07:05:15                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203115.215464 root@10.240.183.89:/tmp/tester/
04/09/2020 07:05:17                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203115.215464 root@10.240.183.89:/tmp/tester/
04/09/2020 07:05:18                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203115.215464
04/09/2020 07:05:19                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:05:21             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

04/09/2020 07:05:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203121.726865 root@10.240.183.89:/tmp/tester/
04/09/2020 07:05:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203121.726865 root@10.240.183.89:/tmp/tester/
04/09/2020 07:05:25                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203121.726865
04/09/2020 07:05:26                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:05:28             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=88:88:88:88:88:88 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:05:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203128.2046182 root@10.240.183.89:/tmp/tester/
04/09/2020 07:05:30                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203128.2046182 root@10.240.183.89:/tmp/tester/
04/09/2020 07:05:31                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203128.2046182
04/09/2020 07:05:32                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:05:34             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:05:34                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203134.7645934 root@10.240.183.89:/tmp/tester/
04/09/2020 07:05:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203134.7645934 root@10.240.183.89:/tmp/tester/
04/09/2020 07:05:38                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203134.7645934
04/09/2020 07:05:39                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:05:41             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=88:88:88:88:88:88 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:05:41             dut.10.240.183.141: flow list 0
04/09/2020 07:05:41             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => MARK RSS
04/09/2020 07:05:41             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:05:41             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:05:43             dut.10.240.183.141: 
04/09/2020 07:05:43             dut.10.240.183.141: flow list 0
04/09/2020 07:05:43             dut.10.240.183.141: 
04/09/2020 07:05:43           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_basic_for_ipv4_other Result PASSED:
04/09/2020 07:05:43             dut.10.240.183.141: quit
04/09/2020 07:05:44             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 10             TX-packets: 0              TX-dropped: 0             

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
04/09/2020 07:05:46             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:05:47           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_basic_for_ipv4_tcp Begin
04/09/2020 07:05:47             dut.10.240.183.141: 
04/09/2020 07:05:47                         tester: 
04/09/2020 07:05:47             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:05:48             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_8435_20200904065301    -- -i --rxq=16 --txq=16
04/09/2020 07:05:49             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:05:59             dut.10.240.183.141: port config all rss all
04/09/2020 07:05:59             dut.10.240.183.141: 
Port 0 modified RSS hash function based on hardware support,requested:0x7f83fffc configured:0x7ef8
rss_hf 0x7f83fffc
04/09/2020 07:05:59             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:05:59             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:05:59             dut.10.240.183.141: set verbose 1
04/09/2020 07:05:59             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:05:59             dut.10.240.183.141: start
04/09/2020 07:05:59             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:06:01             dut.10.240.183.141: flow validate 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / tcp / end actions mark id 1 / rss / end
04/09/2020 07:06:01             dut.10.240.183.141: 
04/09/2020 07:06:01             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / tcp / end actions mark id 1 / rss / end
04/09/2020 07:06:01             dut.10.240.183.141: 
04/09/2020 07:06:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203161.7776363 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203161.7776363 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:05                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203161.7776363
04/09/2020 07:06:06                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
04/09/2020 07:06:08             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - FDIR matched ID=0x1 - 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=0x1
  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 

04/09/2020 07:06:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203168.2926068 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203168.2926068 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:12                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203168.2926068
04/09/2020 07:06:12                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
04/09/2020 07:06:14             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:06:14             dut.10.240.183.141: flow list 0
04/09/2020 07:06:14             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 TCP => MARK RSS
04/09/2020 07:06:14             dut.10.240.183.141: flow flush 0
04/09/2020 07:06:14             dut.10.240.183.141: 
04/09/2020 07:06:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203174.9880037 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:16                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203174.9880037 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:18                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203174.9880037
04/09/2020 07:06:19                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
04/09/2020 07:06:21             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:06:21             dut.10.240.183.141: flow list 0
04/09/2020 07:06:21             dut.10.240.183.141: 
04/09/2020 07:06:21             dut.10.240.183.141: flow validate 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / tcp / end actions mark id 1 / rss / end
04/09/2020 07:06:21             dut.10.240.183.141: 
04/09/2020 07:06:21             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / tcp / end actions mark id 1 / rss / end
04/09/2020 07:06:21             dut.10.240.183.141: 
04/09/2020 07:06:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203181.743358 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203181.743358 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:25                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203181.743358
04/09/2020 07:06:26                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
04/09/2020 07:06:28             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - FDIR matched ID=0x1 - 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=0x1
  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 

04/09/2020 07:06:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203188.2366652 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:30                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203188.2366652 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:31                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203188.2366652
04/09/2020 07:06:32                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
04/09/2020 07:06:34             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=88:88:88:88:88:88 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:06:34             dut.10.240.183.141: flow list 0
04/09/2020 07:06:34             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 TCP => MARK RSS
04/09/2020 07:06:34             dut.10.240.183.141: flow flush 0
04/09/2020 07:06:34             dut.10.240.183.141: 
04/09/2020 07:06:34                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203194.8593385 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203194.8593385 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:38                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203194.8593385
04/09/2020 07:06:39                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
04/09/2020 07:06:41             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:06:41             dut.10.240.183.141: flow list 0
04/09/2020 07:06:41             dut.10.240.183.141: 
04/09/2020 07:06:41             dut.10.240.183.141: flow validate 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / tcp / end actions mark id 1 / rss / end
04/09/2020 07:06:41             dut.10.240.183.141: 
04/09/2020 07:06:41             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / tcp / end actions mark id 1 / rss / end
04/09/2020 07:06:41             dut.10.240.183.141: 
04/09/2020 07:06:41                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203201.478614 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:43                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203201.478614 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:45                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203201.478614
04/09/2020 07:06:46                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
04/09/2020 07:06:48             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - FDIR matched ID=0x1 - 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=0x1
  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 

04/09/2020 07:06:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203208.0211148 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:49                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203208.0211148 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:51                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203208.0211148
04/09/2020 07:06:52                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
04/09/2020 07:06:54             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=88:88:88:88:88:88 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:06:54                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203214.5317004 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203214.5317004 root@10.240.183.89:/tmp/tester/
04/09/2020 07:06:58                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203214.5317004
04/09/2020 07:06:58                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
04/09/2020 07:07:00             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:07:00                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203220.9506955 root@10.240.183.89:/tmp/tester/
04/09/2020 07:07:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203220.9506955 root@10.240.183.89:/tmp/tester/
04/09/2020 07:07:04                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203220.9506955
04/09/2020 07:07:05                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
04/09/2020 07:07:07             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=88:88:88:88:88:88 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:07:07             dut.10.240.183.141: flow list 0
04/09/2020 07:07:07             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 TCP => MARK RSS
04/09/2020 07:07:07             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:07:07             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:07:07                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203227.6277113 root@10.240.183.89:/tmp/tester/
04/09/2020 07:07:09                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203227.6277113 root@10.240.183.89:/tmp/tester/
04/09/2020 07:07:11                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203227.6277113
04/09/2020 07:07:12                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31949, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=37244, urgptr=0)
04/09/2020 07:07:14             dut.10.240.183.141: port 0/queue 1: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xf8d7251 - RSS queue=0x1 - 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=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:07:14             dut.10.240.183.141: flow list 0
04/09/2020 07:07:14             dut.10.240.183.141: 
04/09/2020 07:07:14           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_basic_for_ipv4_tcp Result PASSED:
04/09/2020 07:07:14             dut.10.240.183.141: quit
04/09/2020 07:07:15             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
04/09/2020 07:07:17             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:07:18           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_basic_for_ipv4_udp Begin
04/09/2020 07:07:18             dut.10.240.183.141: 
04/09/2020 07:07:18                         tester: 
04/09/2020 07:07:18             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:07:18             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_8435_20200904065301    -- -i --rxq=16 --txq=16
04/09/2020 07:07:20             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:07:30             dut.10.240.183.141: port config all rss all
04/09/2020 07:07:30             dut.10.240.183.141: 
Port 0 modified RSS hash function based on hardware support,requested:0x7f83fffc configured:0x7ef8
rss_hf 0x7f83fffc
04/09/2020 07:07:30             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:07:30             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:07:30             dut.10.240.183.141: set verbose 1
04/09/2020 07:07:30             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:07:30             dut.10.240.183.141: start
04/09/2020 07:07:30             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:07:32             dut.10.240.183.141: flow validate 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / udp / end actions mark id 1 / rss / end
04/09/2020 07:07:32             dut.10.240.183.141: 
04/09/2020 07:07:32             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / udp / end actions mark id 1 / rss / end
04/09/2020 07:07:32             dut.10.240.183.141: 
04/09/2020 07:07:32                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203252.485977 root@10.240.183.89:/tmp/tester/
04/09/2020 07:07:34                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203252.485977 root@10.240.183.89:/tmp/tester/
04/09/2020 07:07:36                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203252.485977
04/09/2020 07:07:37                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
04/09/2020 07:07:39             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - FDIR matched ID=0x1 - 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=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 

04/09/2020 07:07:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203259.0058577 root@10.240.183.89:/tmp/tester/
04/09/2020 07:07:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203259.0058577 root@10.240.183.89:/tmp/tester/
04/09/2020 07:07:42                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203259.0058577
04/09/2020 07:07:43                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
04/09/2020 07:07:45             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:07:45             dut.10.240.183.141: flow list 0
04/09/2020 07:07:45             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP => MARK RSS
04/09/2020 07:07:45             dut.10.240.183.141: flow flush 0
04/09/2020 07:07:45             dut.10.240.183.141: 
04/09/2020 07:07:45                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203265.6914194 root@10.240.183.89:/tmp/tester/
04/09/2020 07:07:47                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203265.6914194 root@10.240.183.89:/tmp/tester/
04/09/2020 07:07:49                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203265.6914194
04/09/2020 07:07:50                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
04/09/2020 07:07:52             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:07:52             dut.10.240.183.141: flow list 0
04/09/2020 07:07:52             dut.10.240.183.141: 
04/09/2020 07:07:52             dut.10.240.183.141: flow validate 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / udp / end actions mark id 1 / rss / end
04/09/2020 07:07:52             dut.10.240.183.141: 
04/09/2020 07:07:52             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / udp / end actions mark id 1 / rss / end
04/09/2020 07:07:52             dut.10.240.183.141: 
04/09/2020 07:07:52                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203272.4044414 root@10.240.183.89:/tmp/tester/
04/09/2020 07:07:54                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203272.4044414 root@10.240.183.89:/tmp/tester/
04/09/2020 07:07:56                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203272.4044414
04/09/2020 07:07:56                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
04/09/2020 07:07:58             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - FDIR matched ID=0x1 - 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=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 

04/09/2020 07:07:58                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203278.9422781 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:00                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203278.9422781 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:02                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203278.9422781
04/09/2020 07:08:03                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
04/09/2020 07:08:05             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=88:88:88:88:88:88 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:08:05             dut.10.240.183.141: flow list 0
04/09/2020 07:08:05             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP => MARK RSS
04/09/2020 07:08:05             dut.10.240.183.141: flow flush 0
04/09/2020 07:08:05             dut.10.240.183.141: 
04/09/2020 07:08:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203285.6459544 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:07                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203285.6459544 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:09                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203285.6459544
04/09/2020 07:08:10                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
04/09/2020 07:08:12             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:08:12             dut.10.240.183.141: flow list 0
04/09/2020 07:08:12             dut.10.240.183.141: 
04/09/2020 07:08:12             dut.10.240.183.141: flow validate 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / udp / end actions mark id 1 / rss / end
04/09/2020 07:08:12             dut.10.240.183.141: 
04/09/2020 07:08:12             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / udp / end actions mark id 1 / rss / end
04/09/2020 07:08:12             dut.10.240.183.141: 
04/09/2020 07:08:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203292.350521 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203292.350521 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:16                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203292.350521
04/09/2020 07:08:16                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
04/09/2020 07:08:18             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - FDIR matched ID=0x1 - 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=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 

04/09/2020 07:08:18                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203298.9163134 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:20                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203298.9163134 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:22                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203298.9163134
04/09/2020 07:08:23                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
04/09/2020 07:08:25             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=88:88:88:88:88:88 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:08:25                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203305.4720423 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:27                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203305.4720423 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:29                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203305.4720423
04/09/2020 07:08:29                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
04/09/2020 07:08:32             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:08:32                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203312.0037 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:33                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203312.0037 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:35                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203312.0037
04/09/2020 07:08:36                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='88:88:88:88:88:88', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
04/09/2020 07:08:38             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=88:88:88:88:88:88 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:08:38             dut.10.240.183.141: flow list 0
04/09/2020 07:08:38             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP => MARK RSS
04/09/2020 07:08:38             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:08:38             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:08:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203318.6374092 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203318.6374092 root@10.240.183.89:/tmp/tester/
04/09/2020 07:08:42                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203318.6374092
04/09/2020 07:08:43                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=28, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31950, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=8, chksum=370)
04/09/2020 07:08:45             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x1c0a0a03 - RSS queue=0x3 - 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=0x3
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:08:45             dut.10.240.183.141: flow list 0
04/09/2020 07:08:45             dut.10.240.183.141: 
04/09/2020 07:08:45           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_basic_for_ipv4_udp Result PASSED:
04/09/2020 07:08:45             dut.10.240.183.141: quit
04/09/2020 07:08:46             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
04/09/2020 07:08:48             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:08:49           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_complex Begin
04/09/2020 07:08:49             dut.10.240.183.141: 
04/09/2020 07:08:49                         tester: 
04/09/2020 07:08:49             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:08:49             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_8435_20200904065301    -- -i --rxq=16 --txq=16
04/09/2020 07:08:51             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:09:01             dut.10.240.183.141: port config all rss all
04/09/2020 07:09:01             dut.10.240.183.141: 
Port 0 modified RSS hash function based on hardware support,requested:0x7f83fffc configured:0x7ef8
rss_hf 0x7f83fffc
04/09/2020 07:09:01             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:09:01             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:09:01             dut.10.240.183.141: set verbose 1
04/09/2020 07:09:01             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:09:01             dut.10.240.183.141: start
04/09/2020 07:09:01             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:09:03             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
04/09/2020 07:09:03             dut.10.240.183.141: 
04/09/2020 07:09:03             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 22:22:22:22:22:22 / ipv4 / end actions mark id 2 / rss / end
04/09/2020 07:09:03             dut.10.240.183.141: 
04/09/2020 07:09:03             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 33:33:33:33:33:33 / ipv4 / end actions mark id 3 / rss / end
04/09/2020 07:09:03             dut.10.240.183.141: 
04/09/2020 07:09:03             dut.10.240.183.141: flow list 0
04/09/2020 07:09:03             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => MARK RSS
1	0	0	i--	ETH IPV4 => MARK RSS
2	0	0	i--	ETH IPV4 => MARK RSS
04/09/2020 07:09:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203343.6665843 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203343.6665843 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:07                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203343.6665843
04/09/2020 07:09:08                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:09:10             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

04/09/2020 07:09:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203350.1578057 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203350.1578057 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:13                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203350.1578057
04/09/2020 07:09:14                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:09:16             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

04/09/2020 07:09:16                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203356.6268141 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:18                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203356.6268141 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:20                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203356.6268141
04/09/2020 07:09:21                         tester: packet ready for sending...
Ether(dst='33:33:33:33:33:33', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:09:23             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=33:33:33:33:33:33 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

04/09/2020 07:09:23             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:09:23             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:09:23             dut.10.240.183.141: flow list 0
04/09/2020 07:09:23             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 => MARK RSS
2	0	0	i--	ETH IPV4 => MARK RSS
04/09/2020 07:09:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203363.2743719 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:25                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203363.2743719 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:26                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203363.2743719
04/09/2020 07:09:27                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:09:29             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:09:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203369.715443 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203369.715443 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:33                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203369.715443
04/09/2020 07:09:34                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:09:36             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

04/09/2020 07:09:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203376.2558243 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203376.2558243 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:39                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203376.2558243
04/09/2020 07:09:40                         tester: packet ready for sending...
Ether(dst='33:33:33:33:33:33', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:09:42             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=33:33:33:33:33:33 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

04/09/2020 07:09:42             dut.10.240.183.141: flow flush 0
04/09/2020 07:09:42             dut.10.240.183.141: 
04/09/2020 07:09:42                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203382.771519 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:44                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203382.771519 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:46                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203382.771519
04/09/2020 07:09:47                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:09:49             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:09:49                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203389.2339537 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:51                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203389.2339537 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:52                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203389.2339537
04/09/2020 07:09:53                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:09:55             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:09:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203395.7670944 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203395.7670944 root@10.240.183.89:/tmp/tester/
04/09/2020 07:09:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203395.7670944
04/09/2020 07:10:00                         tester: packet ready for sending...
Ether(dst='33:33:33:33:33:33', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:10:02             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=33:33:33:33:33:33 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:10:02             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
04/09/2020 07:10:02             dut.10.240.183.141: 
04/09/2020 07:10:02             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 22:22:22:22:22:22 / ipv4 / end actions mark id 2 / rss / end
04/09/2020 07:10:02             dut.10.240.183.141: 
04/09/2020 07:10:02             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 33:33:33:33:33:33 / ipv4 / end actions mark id 3 / rss / end
04/09/2020 07:10:02             dut.10.240.183.141: 
04/09/2020 07:10:02             dut.10.240.183.141: flow destroy 0 rule 1
04/09/2020 07:10:02             dut.10.240.183.141: 
Flow rule #1 destroyed
04/09/2020 07:10:02             dut.10.240.183.141: flow list 0
04/09/2020 07:10:02             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => MARK RSS
2	0	0	i--	ETH IPV4 => MARK RSS
04/09/2020 07:10:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203402.6281877 root@10.240.183.89:/tmp/tester/
04/09/2020 07:10:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203402.6281877 root@10.240.183.89:/tmp/tester/
04/09/2020 07:10:06                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203402.6281877
04/09/2020 07:10:07                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:10:09             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

04/09/2020 07:10:09                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203409.1234114 root@10.240.183.89:/tmp/tester/
04/09/2020 07:10:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203409.1234114 root@10.240.183.89:/tmp/tester/
04/09/2020 07:10:12                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203409.1234114
04/09/2020 07:10:13                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:10:15             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:10:15                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203415.62666 root@10.240.183.89:/tmp/tester/
04/09/2020 07:10:17                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203415.62666 root@10.240.183.89:/tmp/tester/
04/09/2020 07:10:19                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203415.62666
04/09/2020 07:10:20                         tester: packet ready for sending...
Ether(dst='33:33:33:33:33:33', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:10:22             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=33:33:33:33:33:33 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

04/09/2020 07:10:22             dut.10.240.183.141: flow flush 0
04/09/2020 07:10:22             dut.10.240.183.141: 
04/09/2020 07:10:22             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
04/09/2020 07:10:22             dut.10.240.183.141: 
04/09/2020 07:10:22             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 22:22:22:22:22:22 / ipv4 / end actions mark id 2 / rss / end
04/09/2020 07:10:22             dut.10.240.183.141: 
04/09/2020 07:10:22             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 33:33:33:33:33:33 / ipv4 / end actions mark id 3 / rss / end
04/09/2020 07:10:22             dut.10.240.183.141: 
04/09/2020 07:10:22             dut.10.240.183.141: flow destroy 0 rule 2
04/09/2020 07:10:22             dut.10.240.183.141: 
Flow rule #2 destroyed
04/09/2020 07:10:22             dut.10.240.183.141: flow list 0
04/09/2020 07:10:22             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => MARK RSS
1	0	0	i--	ETH IPV4 => MARK RSS
04/09/2020 07:10:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203422.5244708 root@10.240.183.89:/tmp/tester/
04/09/2020 07:10:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203422.5244708 root@10.240.183.89:/tmp/tester/
04/09/2020 07:10:26                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203422.5244708
04/09/2020 07:10:27                         tester: packet ready for sending...
Ether(dst='11:11:11:11:11:11', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:10:29             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=11:11:11:11:11:11 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

04/09/2020 07:10:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203429.103839 root@10.240.183.89:/tmp/tester/
04/09/2020 07:10:30                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203429.103839 root@10.240.183.89:/tmp/tester/
04/09/2020 07:10:32                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203429.103839
04/09/2020 07:10:33                         tester: packet ready for sending...
Ether(dst='22:22:22:22:22:22', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:10:35             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=22:22:22:22:22:22 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - FDIR matched ID=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  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 

04/09/2020 07:10:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203435.6122699 root@10.240.183.89:/tmp/tester/
04/09/2020 07:10:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203435.6122699 root@10.240.183.89:/tmp/tester/
04/09/2020 07:10:39                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203435.6122699
04/09/2020 07:10:40                         tester: packet ready for sending...
Ether(dst='33:33:33:33:33:33', src='99:99:99:99:99:99', type=2048)/IP(version=4, ihl=5, tos=0, len=20, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31975, src='127.0.0.1', dst='127.0.0.1')
04/09/2020 07:10:42             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=99:99:99:99:99:99 - dst=33:33:33:33:33:33 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x73222b4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:10:42             dut.10.240.183.141: flow flush 0
04/09/2020 07:10:42             dut.10.240.183.141: 
04/09/2020 07:10:42           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_complex Result PASSED:
04/09/2020 07:10:42             dut.10.240.183.141: quit
04/09/2020 07:10:43             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 15             TX-packets: 0              TX-dropped: 0             

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
04/09/2020 07:10:45             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:10:46           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_negative Begin
04/09/2020 07:10:46             dut.10.240.183.141: 
04/09/2020 07:10:46                         tester: 
04/09/2020 07:10:46             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:10:46             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_8435_20200904065301    -- -i --rxq=16 --txq=16
04/09/2020 07:10:48             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:10:58             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:10:58             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:10:58             dut.10.240.183.141: set verbose 1
04/09/2020 07:10:58             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:10:58             dut.10.240.183.141: start
04/09/2020 07:10:58             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:11:00             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 dst is 1.1.1.1 / end actions mark id 2 / rss / end
04/09/2020 07:11:00             dut.10.240.183.141: 
04/09/2020 07:11:00             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / udp dst is 111 / end actions mark id 2 / rss / end
04/09/2020 07:11:00             dut.10.240.183.141: 
04/09/2020 07:11:00             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / tcp dst is 111 / end actions mark id 2 / rss / end
04/09/2020 07:11:00             dut.10.240.183.141: 
04/09/2020 07:11:00             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 3 / rss / end
04/09/2020 07:11:00             dut.10.240.183.141: 
04/09/2020 07:11:00             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / end actions mark id 1 / rss / end
04/09/2020 07:11:00             dut.10.240.183.141: 
04/09/2020 07:11:00             dut.10.240.183.141: flow flush 0
04/09/2020 07:11:00             dut.10.240.183.141: 
04/09/2020 07:11:00             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 / ipv4 / end actions mark id 1 / rss / end
04/09/2020 07:11:00             dut.10.240.183.141: 
04/09/2020 07:11:00             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
04/09/2020 07:11:00             dut.10.240.183.141: 
04/09/2020 07:11:00             dut.10.240.183.141: flow flush 0
04/09/2020 07:11:00             dut.10.240.183.141: 
04/09/2020 07:11:00             dut.10.240.183.141: flow create 0 ingress pattern eth src is 99:99:99:99:99:99 dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 1 / rss / end
04/09/2020 07:11:00             dut.10.240.183.141: 
04/09/2020 07:11:00             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 11:11:11:11:11:11 / ipv4 / end actions mark id 3 / rss / end
04/09/2020 07:11:00             dut.10.240.183.141: 
04/09/2020 07:11:00           TestGeneric_flow_api: Test Case test_fdir_L2_mac_filter_negative Result PASSED:
04/09/2020 07:11:01             dut.10.240.183.141: quit
04/09/2020 07:11:02             dut.10.240.183.141: 
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: link state change event
Done

Bye...
04/09/2020 07:11:04             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:11:04           TestGeneric_flow_api: Test Case test_fdir_for_L2_payload Begin
04/09/2020 07:11:04             dut.10.240.183.141: 
04/09/2020 07:11:05                         tester: 
04/09/2020 07:11:05             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:11:05             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=test1_8435_20200904065301    -- -i --pkt-filter-mode=perfect --rxq=16 --txq=16
04/09/2020 07:11:06             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/test1_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:11:16             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:11:16             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:11:16             dut.10.240.183.141: set verbose 1
04/09/2020 07:11:17             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:11:17             dut.10.240.183.141: start
04/09/2020 07:11:17             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:11:19             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 1916  / end actions queue index 3 /  end
04/09/2020 07:11:19             dut.10.240.183.141: 
04/09/2020 07:11:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203479.1720397 root@10.240.183.89:/tmp/tester/
04/09/2020 07:11:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203479.1720397 root@10.240.183.89:/tmp/tester/
04/09/2020 07:11:22                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203479.1720397
04/09/2020 07:11:23                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=1916, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:11:25             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:11:25             dut.10.240.183.141: stop
04/09/2020 07:11:25             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
04/09/2020 07:11:25           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:11:27             dut.10.240.183.141: start
04/09/2020 07:11:27             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:11:27             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x8864  / end actions queue index 5 /  end
04/09/2020 07:11:27             dut.10.240.183.141: 
04/09/2020 07:11:27                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203487.9261217 root@10.240.183.89:/tmp/tester/
04/09/2020 07:11:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203487.9261217 root@10.240.183.89:/tmp/tester/
04/09/2020 07:11:31                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203487.9261217
04/09/2020 07:11:32                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=34916)/PPPoE(version=7, type=8, code=120, sessionid=30840, len=30840)/Raw(load=b'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:11:34             dut.10.240.183.141: 
testpmd> port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8864 - length=60 - nb_segs=1 - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x5
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:11:34             dut.10.240.183.141: stop
04/09/2020 07:11:34             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:11:34           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8864 - length=60 - nb_segs=1 - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x5
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:11:36             dut.10.240.183.141: start
04/09/2020 07:11:36             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:11:36             dut.10.240.183.141: flow list 0
04/09/2020 07:11:36             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH VLAN => QUEUE
1	0	0	i--	ETH => QUEUE
04/09/2020 07:11:36             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:11:36             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:11:36             dut.10.240.183.141: flow list 0
04/09/2020 07:11:36             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH => QUEUE
04/09/2020 07:11:36             dut.10.240.183.141: flow flush 0
04/09/2020 07:11:36             dut.10.240.183.141: 
04/09/2020 07:11:36             dut.10.240.183.141: flow list 0
04/09/2020 07:11:36             dut.10.240.183.141: 
04/09/2020 07:11:36           TestGeneric_flow_api: Test Case test_fdir_for_L2_payload Result PASSED:
04/09/2020 07:11:36             dut.10.240.183.141: quit
04/09/2020 07:11:38             dut.10.240.183.141: 
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...
Done

Bye...
04/09/2020 07:11:40             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:11:40           TestGeneric_flow_api: Test Case test_fdir_for_flexbytes Begin
04/09/2020 07:11:40             dut.10.240.183.141: 
04/09/2020 07:11:40                         tester: 
04/09/2020 07:11:40             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:11:41             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_8435_20200904065301    -- -i --pkt-filter-mode=perfect --disable-rss --rxq=16 --txq=16
04/09/2020 07:11:42             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:11:52             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:11:52             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:11:52             dut.10.240.183.141: set verbose 1
04/09/2020 07:11:52             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:11:52             dut.10.240.183.141: start
04/09/2020 07:11:52             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:11:54             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x0807 / raw relative is 1 pattern is abcdefghijklmnopq / end actions queue index 1 / end
04/09/2020 07:11:55             dut.10.240.183.141: 
04/09/2020 07:11:55             dut.10.240.183.141: flow create 0 ingress pattern eth type is 0x0807 / raw relative is 1 pattern is abcdefghijklmnop / end actions queue index 1 / end
04/09/2020 07:11:55             dut.10.240.183.141: 
i40e_flow_set_fdir_flex_pit(): i40e device 0000:84:00.0 changed global register [0x00268984]. original: 0x00000000, new: 0x000000a0 
04/09/2020 07:11:55             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 4095 / ipv4 proto is 255 ttl is 40 / raw relative is 1 offset is 2 pattern is ab / raw relative is 1 offset is 10 pattern is abcdefghij / raw relative is 1 offset is 0 pattern is abcd / end actions queue index 2 / end
04/09/2020 07:11:55             dut.10.240.183.141: 
i40e_flow_set_fdir_flex_pit(): i40e device 0000:84:00.0 changed global register [0x00268988]. original: 0x00000000, new: 0x000000e3 
04/09/2020 07:11:55             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 src is 2.2.2.4 dst is 2.2.2.5 / udp src is 22 dst is 23 / raw relative is 1 offset is 2 pattern is fhds / end actions queue index 3 / end
04/09/2020 07:11:55             dut.10.240.183.141: 
i40e_flow_set_fdir_flex_pit(): i40e device 0000:84:00.0 changed global register [0x0026898c]. original: 0x00000000, new: 0x000000a6 
04/09/2020 07:11:55             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 src is 2.2.2.4 dst is 2.2.2.5 tos is 4 ttl is 3 / tcp src is 32 dst is 33 / raw relative is 1 offset is 2 pattern is hijk / end actions queue index 4 / end
04/09/2020 07:11:55             dut.10.240.183.141: 
04/09/2020 07:11:55             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 src is 2.2.2.4 dst is 2.2.2.5 / sctp src is 42 / raw relative is 1 offset is 2 pattern is abcd / end actions queue index 5 / end
04/09/2020 07:11:55             dut.10.240.183.141: 
04/09/2020 07:11:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203515.3677373 root@10.240.183.89:/tmp/tester/
04/09/2020 07:11:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203515.3677373 root@10.240.183.89:/tmp/tester/
04/09/2020 07:11:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203515.3677373
04/09/2020 07:11:59                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2055)/Raw(load=b'abcdefghijklmnop')
04/09/2020 07:12:01             dut.10.240.183.141: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0807 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:12:01             dut.10.240.183.141: stop
04/09/2020 07:12:01             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 0/Queue= 1 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:12:01           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 1: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0807 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER  - l2_len=14 - Receive queue=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:12:03             dut.10.240.183.141: start
04/09/2020 07:12:03             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:12:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203523.9827406 root@10.240.183.89:/tmp/tester/
04/09/2020 07:12:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203523.9827406 root@10.240.183.89:/tmp/tester/
04/09/2020 07:12:07                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203523.9827406
04/09/2020 07:12:08                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=4095, type=2048)/IP(version=4, ihl=5, tos=0, len=51, id=1, flags=0, frag=0, ttl=40, proto=255, chksum=4216, src='192.168.0.1', dst='192.168.0.2')/Raw(load=b'xxabxxxxxxxxxxabcdefghijabcdefg')
04/09/2020 07:12:10             dut.10.240.183.141: port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=69 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:12:10             dut.10.240.183.141: stop
04/09/2020 07:12:10             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:12:10           TestGeneric_flow_api: pf: port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=69 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:12:12             dut.10.240.183.141: start
04/09/2020 07:12:12             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:12:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203532.6411006 root@10.240.183.89:/tmp/tester/
04/09/2020 07:12:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203532.6411006 root@10.240.183.89:/tmp/tester/
04/09/2020 07:12:16                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203532.6411006
04/09/2020 07:12:17                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=29368, src='2.2.2.4', dst='2.2.2.5')/UDP(sport=22, dport=23, len=20, chksum=38391)/Raw(load=b'fhfhdsdsfwef')
04/09/2020 07:12:19             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:12:19             dut.10.240.183.141: stop
04/09/2020 07:12:19             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
04/09/2020 07:12:19           TestGeneric_flow_api: pf: port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:12:21             dut.10.240.183.141: start
04/09/2020 07:12:21             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:12:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203541.2870476 root@10.240.183.89:/tmp/tester/
04/09/2020 07:12:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203541.2870476 root@10.240.183.89:/tmp/tester/
04/09/2020 07:12:24                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203541.2870476
04/09/2020 07:12:25                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=4, len=46, id=1, flags=0, frag=0, ttl=3, proto=6, chksum=44985, src='2.2.2.4', dst='2.2.2.5')/TCP(sport=32, dport=33, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=20050, urgptr=0)/Raw(load=b'fhhijk')
04/09/2020 07:12:27             dut.10.240.183.141: port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:12:27             dut.10.240.183.141: stop
04/09/2020 07:12:27             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:12:27           TestGeneric_flow_api: pf: port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:12:29             dut.10.240.183.141: start
04/09/2020 07:12:29             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:12:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203549.9568298 root@10.240.183.89:/tmp/tester/
04/09/2020 07:12:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203549.9568298 root@10.240.183.89:/tmp/tester/
04/09/2020 07:12:33                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203549.9568298
04/09/2020 07:12:34                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=54, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=29239, src='2.2.2.4', dst='2.2.2.5')/SCTP(sport=42, dport=43, tag=1, chksum=2658454541)/Raw(load=b'xxabcdefghijklmnopqrst')
04/09/2020 07:12:36             dut.10.240.183.141: port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=68 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:12:36             dut.10.240.183.141: stop
04/09/2020 07:12:36             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:12:36           TestGeneric_flow_api: pf: port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=68 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:12:38             dut.10.240.183.141: start
04/09/2020 07:12:38             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:12:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203558.6137176 root@10.240.183.89:/tmp/tester/
04/09/2020 07:12:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203558.6137176 root@10.240.183.89:/tmp/tester/
04/09/2020 07:12:42                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203558.6137176
04/09/2020 07:12:43                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=29233, src='2.2.2.4', dst='2.2.2.5')/SCTP(sport=42, dport=43, tag=1, chksum=1347706896)/Raw(load=b'xxabxxxabcddxxabcdefghijklmn')
04/09/2020 07:12:45             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x0800 - length=74 - 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 

04/09/2020 07:12:45             dut.10.240.183.141: stop
04/09/2020 07:12:45             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:12:45           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x0800 - length=74 - 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 

04/09/2020 07:12:47             dut.10.240.183.141: start
04/09/2020 07:12:47             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:12:47             dut.10.240.183.141: flow list 0
04/09/2020 07:12:47             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH RAW => QUEUE
1	0	0	i--	ETH VLAN IPV4 RAW RAW RAW => QUEUE
2	0	0	i--	ETH IPV4 UDP RAW => QUEUE
3	0	0	i--	ETH IPV4 TCP RAW => QUEUE
4	0	0	i--	ETH IPV4 SCTP RAW => QUEUE
04/09/2020 07:12:47             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:12:47             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:12:47             dut.10.240.183.141: flow list 0
04/09/2020 07:12:47             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH VLAN IPV4 RAW RAW RAW => QUEUE
2	0	0	i--	ETH IPV4 UDP RAW => QUEUE
3	0	0	i--	ETH IPV4 TCP RAW => QUEUE
4	0	0	i--	ETH IPV4 SCTP RAW => QUEUE
04/09/2020 07:12:47             dut.10.240.183.141: flow flush 0
04/09/2020 07:12:47             dut.10.240.183.141: 
04/09/2020 07:12:47             dut.10.240.183.141: flow list 0
04/09/2020 07:12:47             dut.10.240.183.141: 
04/09/2020 07:12:47             dut.10.240.183.141: quit
04/09/2020 07:12:48             dut.10.240.183.141: 
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...
i40e_flex_payload_reg_set_default(): i40e device 0000:84:00.0 changed global register [0x00268984]. original: 0x000000a0, new: 0x00000000 
i40e_flex_payload_reg_set_default(): i40e device 0000:84:00.0 changed global register [0x00268988]. original: 0x000000e3, new: 0x00000000 
i40e_flex_payload_reg_set_default(): i40e device 0000:84:00.0 changed global register [0x0026898c]. original: 0x000000a6, new: 0x00000000 
Done

Bye...
04/09/2020 07:12:50             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_8435_20200904065301   --socket-mem 1024,1024  -- -i --pkt-filter-mode=perfect --disable-rss --rxq=16 --txq=16
04/09/2020 07:12:52             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267308]. original: 0x0009ff00, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x0026730c]. original: 0x000d00ff, new: 0x00000000
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:13:02             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:13:02             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:13:02             dut.10.240.183.141: set verbose 1
04/09/2020 07:13:02             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:13:02             dut.10.240.183.141: start
04/09/2020 07:13:02             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:13:04             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 1 / ipv6 src is 2001::1 dst is 2001::2 tc is 3 hop is 30 / tcp src is 32 dst is 33 / raw relative is 1 offset is 0 pattern is hijk / raw relative is 1 offset is 8 pattern is abcdefgh / end actions queue index 6 / end
04/09/2020 07:13:04             dut.10.240.183.141: 
i40e_flow_set_fdir_flex_pit(): i40e device 0000:84:00.0 changed global register [0x0026898c]. original: 0x00000000, new: 0x000000c6 
04/09/2020 07:13:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203584.7747903 root@10.240.183.89:/tmp/tester/
04/09/2020 07:13:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203584.7747903 root@10.240.183.89:/tmp/tester/
04/09/2020 07:13:08                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203584.7747903
04/09/2020 07:13:09                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=1, type=34525)/IPv6(version=6, tc=3, fl=0, plen=46, nh=6, hlim=30, src='2001::1', dst='2001::2')/TCP(sport=32, dport=33, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=5950, urgptr=0)/Raw(load=b'hijkabcdefghabcdefghijklmn')
04/09/2020 07:13:11             dut.10.240.183.141: 
testpmd> port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=104 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:13:11             dut.10.240.183.141: stop
04/09/2020 07:13:11             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:13:11           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=104 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:13:13             dut.10.240.183.141: start
04/09/2020 07:13:13             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:13:13           TestGeneric_flow_api: Test Case test_fdir_for_flexbytes Result PASSED:
04/09/2020 07:13:13             dut.10.240.183.141: quit
04/09/2020 07:13:14             dut.10.240.183.141: 
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: link state change event
i40e_flex_payload_reg_set_default(): i40e device 0000:84:00.0 changed global register [0x0026898c]. original: 0x000000c6, new: 0x00000000 
Done

Bye...
04/09/2020 07:13:16             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:13:17           TestGeneric_flow_api: Test Case test_fdir_for_ipv4 Begin
04/09/2020 07:13:17             dut.10.240.183.141: 
04/09/2020 07:13:17                         tester: 
04/09/2020 07:13:17             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:13:18             dut.10.240.183.141: modprobe uio
04/09/2020 07:13:18             dut.10.240.183.141: 
04/09/2020 07:13:18             dut.10.240.183.141: insmod ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko
04/09/2020 07:13:18             dut.10.240.183.141: 
04/09/2020 07:13:18             dut.10.240.183.141: modprobe vfio-pci
04/09/2020 07:13:18             dut.10.240.183.141: 
04/09/2020 07:13:21             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.0/vendor
04/09/2020 07:13:21             dut.10.240.183.141: 0x8086
04/09/2020 07:13:21             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.0/device
04/09/2020 07:13:21             dut.10.240.183.141: 0x154c
04/09/2020 07:13:21             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.0/vendor
04/09/2020 07:13:22             dut.10.240.183.141: 0x8086
04/09/2020 07:13:22             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.0/device
04/09/2020 07:13:22             dut.10.240.183.141: 0x154c
04/09/2020 07:13:22             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.1/vendor
04/09/2020 07:13:22             dut.10.240.183.141: 0x8086
04/09/2020 07:13:22             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.1/device
04/09/2020 07:13:22             dut.10.240.183.141: 0x154c
04/09/2020 07:13:22             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.1/vendor
04/09/2020 07:13:22             dut.10.240.183.141: 0x8086
04/09/2020 07:13:22             dut.10.240.183.141: cat /sys/bus/pci/devices/0000\:84\:02.1/device
04/09/2020 07:13:22             dut.10.240.183.141: 0x154c
04/09/2020 07:13:25             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_8435_20200904065301   --socket-mem 1024,1024 --legacy-mem  -- -i --pkt-filter-mode=perfect --disable-rss --rxq=16 --txq=16
04/09/2020 07:13:31             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267358]. original: 0x0009f00f, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x0026735c]. original: 0x000cff00, new: 0x00000000
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:13:41             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:13:41             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:13:41             dut.10.240.183.141: set verbose 1
04/09/2020 07:13:41             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:13:41             dut.10.240.183.141: start
04/09/2020 07:13:41             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:13:59             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 238.154.121.236 src is 145.14.52.227 proto is 255  / end actions queue index 8 /  end
04/09/2020 07:13:59             dut.10.240.183.141: 
04/09/2020 07:13:59                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203639.960684 root@10.240.183.89:/tmp/tester/
04/09/2020 07:14:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203639.960684 root@10.240.183.89:/tmp/tester/
04/09/2020 07:14:03                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203639.960684
04/09/2020 07:14:04                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=255, chksum=19294, src='145.14.52.227', dst='238.154.121.236')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:14:08           TestGeneric_flow_api: vf0:  
04/09/2020 07:14:08           TestGeneric_flow_api: vf1:  
04/09/2020 07:14:10             dut.10.240.183.141: 
testpmd> port 0/queue 8: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x8
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:14:10             dut.10.240.183.141: stop
04/09/2020 07:14:10             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:14:10           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 8: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x8
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:14:12             dut.10.240.183.141: start
04/09/2020 07:14:12             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:14:13             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 216.74.95.162 src is 153.8.220.21 ttl is 39 / udp dst is 39383 src is 26222  / end actions queue index 4 /  end
04/09/2020 07:14:13             dut.10.240.183.141: 
04/09/2020 07:14:13                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203653.2257376 root@10.240.183.89:/tmp/tester/
04/09/2020 07:14:15                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203653.2257376 root@10.240.183.89:/tmp/tester/
04/09/2020 07:14:16                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203653.2257376
04/09/2020 07:14:17                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=39, proto=17, chksum=59057, src='153.8.220.21', dst='216.74.95.162')/UDP(sport=26222, dport=39383, len=28, chksum=40368)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:14:21           TestGeneric_flow_api: vf0: 
04/09/2020 07:14:21           TestGeneric_flow_api: vf1: 
04/09/2020 07:14:23             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:14:23             dut.10.240.183.141: stop
04/09/2020 07:14:24             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:14:24           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x4
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:14:26             dut.10.240.183.141: start
04/09/2020 07:14:26             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:14:26             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 94.4.64.218 src is 111.189.36.250 tos is 1 / tcp dst is 40890 src is 61006  / end actions queue index 11 /  end
04/09/2020 07:14:26             dut.10.240.183.141: 
04/09/2020 07:14:26                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203666.446263 root@10.240.183.89:/tmp/tester/
04/09/2020 07:14:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203666.446263 root@10.240.183.89:/tmp/tester/
04/09/2020 07:14:30                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203666.446263
04/09/2020 07:14:30                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=1, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=18213, src='111.189.36.250', dst='94.4.64.218')/TCP(sport=61006, dport=40890, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=6523, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:14:35           TestGeneric_flow_api: vf0: 
04/09/2020 07:14:35           TestGeneric_flow_api: vf1: 
04/09/2020 07:14:37             dut.10.240.183.141: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:14:37             dut.10.240.183.141: stop
04/09/2020 07:14:37             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 0/Queue=11 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:14:37           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 11: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched hash=0x0 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=0xb
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:14:39             dut.10.240.183.141: start
04/09/2020 07:14:39             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:14:39             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3937 / ipv4 dst is 40.174.131.140 src is 12.226.51.102 tos is 212 ttl is 149 / sctp dst is 32827 src is 49745 tag is 1  / end actions queue index 2 /  end
04/09/2020 07:14:39             dut.10.240.183.141: 
04/09/2020 07:14:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203679.6683853 root@10.240.183.89:/tmp/tester/
04/09/2020 07:14:41                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203679.6683853 root@10.240.183.89:/tmp/tester/
04/09/2020 07:14:43                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203679.6683853
04/09/2020 07:14:44                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3937, type=2048)/IP(version=4, ihl=5, tos=212, len=52, id=1, flags=0, frag=0, ttl=149, proto=132, chksum=14319, src='12.226.51.102', dst='40.174.131.140')/SCTP(sport=49745, dport=32827, tag=1, chksum=4164792210)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:14:48           TestGeneric_flow_api: vf0: 
04/09/2020 07:14:48           TestGeneric_flow_api: vf1: 
04/09/2020 07:14:50             dut.10.240.183.141: 
testpmd> port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:14:50             dut.10.240.183.141: stop
04/09/2020 07:14:50             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:14:50           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:14:52             dut.10.240.183.141: start
04/09/2020 07:14:52             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:14:52             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 781 / ipv4 dst is 160.40.7.63 src is 205.19.208.99 tos is 216 ttl is 24 / sctp dst is 43804 src is 52575 tag is 1  / end actions drop /  end
04/09/2020 07:14:52             dut.10.240.183.141: 
04/09/2020 07:14:52                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203692.8381 root@10.240.183.89:/tmp/tester/
04/09/2020 07:14:54                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203692.8381 root@10.240.183.89:/tmp/tester/
04/09/2020 07:14:56                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203692.8381
04/09/2020 07:14:57                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=781, type=2048)/IP(version=4, ihl=5, tos=216, len=52, id=1, flags=0, frag=0, ttl=24, proto=132, chksum=23695, src='205.19.208.99', dst='160.40.7.63')/SCTP(sport=52575, dport=43804, tag=1, chksum=306511202)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:15:01           TestGeneric_flow_api: vf0: 
04/09/2020 07:15:01           TestGeneric_flow_api: vf1: 
04/09/2020 07:15:03             dut.10.240.183.141: 
testpmd> 
04/09/2020 07:15:03             dut.10.240.183.141: stop
04/09/2020 07:15:03             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:15:03           TestGeneric_flow_api: pf: 
testpmd> 
04/09/2020 07:15:05             dut.10.240.183.141: start
04/09/2020 07:15:05             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:15:05             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / ipv4 dst is 147.134.238.104 src is 186.237.225.238 proto is 255 / vf id is 0 / end actions queue index 4 /  end
04/09/2020 07:15:06             dut.10.240.183.141: 
04/09/2020 07:15:06             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / ipv4 dst is 232.157.1.108 src is 30.86.117.166 proto is 255 / vf id is 0 / end actions queue index 2 /  end
04/09/2020 07:15:06             dut.10.240.183.141: 
04/09/2020 07:15:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203706.0759969 root@10.240.183.89:/tmp/tester/
04/09/2020 07:15:07                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203706.0759969 root@10.240.183.89:/tmp/tester/
04/09/2020 07:15:09                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203706.0759969
04/09/2020 07:15:10                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=255, chksum=64464, src='30.86.117.166', dst='232.157.1.108')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:15:14           TestGeneric_flow_api: vf0: port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4  - l2_len=14 - l3_len=20 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:15:14           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x0800 - length=60 - 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 

04/09/2020 07:15:16             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x0800 - length=60 - 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 

04/09/2020 07:15:16             dut.10.240.183.141: stop
04/09/2020 07:15:16             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:15:16           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x0800 - length=60 - 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 

04/09/2020 07:15:18             dut.10.240.183.141: start
04/09/2020 07:15:18             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:15:19             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 2177 / ipv4 dst is 146.105.132.151 src is 156.0.92.175 tos is 14 ttl is 74 / sctp dst is 22862 src is 54507 tag is 1 / vf id is 1 / end actions queue index 3 /  end
04/09/2020 07:15:19             dut.10.240.183.141: 
04/09/2020 07:15:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203719.3358014 root@10.240.183.89:/tmp/tester/
04/09/2020 07:15:21                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203719.3358014 root@10.240.183.89:/tmp/tester/
04/09/2020 07:15:22                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203719.3358014
04/09/2020 07:15:23                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=2177, type=2048)/IP(version=4, ihl=5, tos=14, len=52, id=1, flags=0, frag=0, ttl=74, proto=132, chksum=24711, src='156.0.92.175', dst='146.105.132.151')/SCTP(sport=54507, dport=22862, tag=1, chksum=1173157752)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:15:28           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - 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 

04/09/2020 07:15:28           TestGeneric_flow_api: vf1: port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:15:30             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - 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 

04/09/2020 07:15:30             dut.10.240.183.141: stop
04/09/2020 07:15:30             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:15:30           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - 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 

04/09/2020 07:15:32             dut.10.240.183.141: start
04/09/2020 07:15:32             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:15:32             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3669 / ipv4 dst is 6.157.56.167 src is 31.39.49.205 tos is 68 ttl is 33 / sctp dst is 16817 src is 63060 tag is 1  / end actions passthru / flag /  end
04/09/2020 07:15:32             dut.10.240.183.141: 
04/09/2020 07:15:32                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203732.6016593 root@10.240.183.89:/tmp/tester/
04/09/2020 07:15:34                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203732.6016593 root@10.240.183.89:/tmp/tester/
04/09/2020 07:15:36                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203732.6016593
04/09/2020 07:15:37                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3669, type=2048)/IP(version=4, ihl=5, tos=68, len=52, id=1, flags=0, frag=0, ttl=33, proto=132, chksum=2250, src='31.39.49.205', dst='6.157.56.167')/SCTP(sport=63060, dport=16817, tag=1, chksum=3228091150)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:15:41           TestGeneric_flow_api: vf0: 
04/09/2020 07:15:41           TestGeneric_flow_api: vf1: 
04/09/2020 07:15:43             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:15:43             dut.10.240.183.141: stop
04/09/2020 07:15:43             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:15:43           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:15:45             dut.10.240.183.141: start
04/09/2020 07:15:45             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:15:45             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 74.218.142.101 src is 222.75.185.158 ttl is 127 / udp dst is 8569 src is 11199  / end actions queue index 3 / flag /  end
04/09/2020 07:15:45             dut.10.240.183.141: 
04/09/2020 07:15:45                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203745.875668 root@10.240.183.89:/tmp/tester/
04/09/2020 07:15:47                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203745.875668 root@10.240.183.89:/tmp/tester/
04/09/2020 07:15:49                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203745.875668
04/09/2020 07:15:50                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=127, proto=17, chksum=51858, src='222.75.185.158', dst='74.218.142.101')/UDP(sport=11199, dport=8569, len=28, chksum=35999)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:15:54           TestGeneric_flow_api: vf0: 
04/09/2020 07:15:54           TestGeneric_flow_api: vf1: 
04/09/2020 07:15:56             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:15:56             dut.10.240.183.141: stop
04/09/2020 07:15:56             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
04/09/2020 07:15:56           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=62 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - 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=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:15:58             dut.10.240.183.141: start
04/09/2020 07:15:58             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:15:59             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 37.112.97.80 src is 50.134.86.27 tos is 135 / tcp dst is 4039 src is 13956  / end actions queue index 12 / mark id 3 /  end
04/09/2020 07:15:59             dut.10.240.183.141: 
04/09/2020 07:15:59                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203759.194389 root@10.240.183.89:/tmp/tester/
04/09/2020 07:16:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203759.194389 root@10.240.183.89:/tmp/tester/
04/09/2020 07:16:02                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203759.194389
04/09/2020 07:16:03                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=135, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=27347, src='50.134.86.27', dst='37.112.97.80')/TCP(sport=13956, dport=4039, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=34157, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:16:07           TestGeneric_flow_api: vf0: 
04/09/2020 07:16:07           TestGeneric_flow_api: vf1: 
04/09/2020 07:16:09             dut.10.240.183.141: 
testpmd> port 0/queue 12: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched ID=0x3 - 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=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_FDIR_ID PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:16:09             dut.10.240.183.141: stop
04/09/2020 07:16:10             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 0/Queue=12 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:16:10           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 12: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=74 - nb_segs=1 - FDIR matched ID=0x3 - 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=0xc
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_FDIR_ID PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:16:12             dut.10.240.183.141: start
04/09/2020 07:16:12             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:16:12             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 dst is 207.98.223.189 src is 117.86.211.9 proto is 255  / end actions passthru / mark id 3 /  end
04/09/2020 07:16:12             dut.10.240.183.141: 
04/09/2020 07:16:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203772.5117536 root@10.240.183.89:/tmp/tester/
04/09/2020 07:16:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203772.5117536 root@10.240.183.89:/tmp/tester/
04/09/2020 07:16:16                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203772.5117536
04/09/2020 07:16:17                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=255, chksum=33366, src='117.86.211.9', dst='207.98.223.189')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:16:21           TestGeneric_flow_api: vf0: 
04/09/2020 07:16:21           TestGeneric_flow_api: vf1: 
04/09/2020 07:16:23             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched ID=0x3 - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_FDIR_ID PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:16:23             dut.10.240.183.141: stop
04/09/2020 07:16:23             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:16:23           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - nb_segs=1 - FDIR matched ID=0x3 - 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_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_FDIR_ID PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:16:25             dut.10.240.183.141: start
04/09/2020 07:16:25             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:16:25                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203785.7708387 root@10.240.183.89:/tmp/tester/
04/09/2020 07:16:27                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203785.7708387 root@10.240.183.89:/tmp/tester/
04/09/2020 07:16:29                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203785.7708387
04/09/2020 07:16:30                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=255, chksum=63614, src='192.168.0.3', dst='192.168.0.4')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:16:34           TestGeneric_flow_api: vf0: 
04/09/2020 07:16:34           TestGeneric_flow_api: vf1: 
04/09/2020 07:16:36             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

04/09/2020 07:16:36             dut.10.240.183.141: stop
04/09/2020 07:16:36             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:16:36           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x0800 - length=60 - 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 

04/09/2020 07:16:38             dut.10.240.183.141: start
04/09/2020 07:16:38             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:16:38             dut.10.240.183.141: flow list 0
04/09/2020 07:16:38             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 => QUEUE
1	0	0	i--	ETH IPV4 UDP => QUEUE
2	0	0	i--	ETH IPV4 TCP => QUEUE
3	0	0	i--	ETH VLAN IPV4 SCTP => QUEUE
4	0	0	i--	ETH VLAN IPV4 SCTP => DROP
5	0	0	i-t	ETH IPV4 VF => QUEUE
6	0	0	i-t	ETH VLAN IPV4 SCTP VF => QUEUE
7	0	0	i--	ETH VLAN IPV4 SCTP => PASSTHRU FLAG
8	0	0	i--	ETH IPV4 UDP => QUEUE FLAG
9	0	0	i--	ETH IPV4 TCP => QUEUE MARK
10	0	0	i--	ETH IPV4 => PASSTHRU MARK
04/09/2020 07:16:38             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:16:39             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:16:39             dut.10.240.183.141: flow list 0
04/09/2020 07:16:39             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 UDP => QUEUE
2	0	0	i--	ETH IPV4 TCP => QUEUE
3	0	0	i--	ETH VLAN IPV4 SCTP => QUEUE
4	0	0	i--	ETH VLAN IPV4 SCTP => DROP
5	0	0	i-t	ETH IPV4 VF => QUEUE
6	0	0	i-t	ETH VLAN IPV4 SCTP VF => QUEUE
7	0	0	i--	ETH VLAN IPV4 SCTP => PASSTHRU FLAG
8	0	0	i--	ETH IPV4 UDP => QUEUE FLAG
9	0	0	i--	ETH IPV4 TCP => QUEUE MARK
10	0	0	i--	ETH IPV4 => PASSTHRU MARK
04/09/2020 07:16:39             dut.10.240.183.141: flow flush 0
04/09/2020 07:16:39             dut.10.240.183.141: 
04/09/2020 07:16:39             dut.10.240.183.141: flow list 0
04/09/2020 07:16:39             dut.10.240.183.141: 
04/09/2020 07:16:39           TestGeneric_flow_api: Test Case test_fdir_for_ipv4 Result PASSED:
04/09/2020 07:16:45             dut.10.240.183.141: quit
04/09/2020 07:16:46             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
04/09/2020 07:16:51             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:16:52           TestGeneric_flow_api: Test Case test_fdir_for_ipv6 Begin
04/09/2020 07:16:52             dut.10.240.183.141: 
04/09/2020 07:16:52                         tester: 
04/09/2020 07:16:52             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:16:54             dut.10.240.183.141: modprobe uio
04/09/2020 07:16:54             dut.10.240.183.141: 
04/09/2020 07:16:54             dut.10.240.183.141: insmod ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko
04/09/2020 07:16:54             dut.10.240.183.141: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko: File exists
04/09/2020 07:16:54             dut.10.240.183.141: modprobe vfio-pci
04/09/2020 07:16:54             dut.10.240.183.141: 
04/09/2020 07:16:59             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_8435_20200904065301   --socket-mem 1024,1024 --legacy-mem  -- -i --pkt-filter-mode=perfect --disable-rss --rxq=16 --txq=16
04/09/2020 07:17:05             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x002672f8]. original: 0x000d00ff, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267308]. original: 0x0009ff00, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267310]. original: 0x0009ff00, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267314]. original: 0x000d00ff, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267318]. original: 0x000dff00, new: 0x00000000
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:17:15             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:17:15             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:17:15             dut.10.240.183.141: set verbose 1
04/09/2020 07:17:15             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:17:15             dut.10.240.183.141: start
04/09/2020 07:17:15             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:17:33             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 2544 / ipv6 src is 5a14:9ac2:d2f1:1569:973c:9c13:2f4:e9c6 dst is cd89:6eeb:32d5:7e06:4e7f:f837:5283:9e1f proto is 255 tc is 123 hop is 177  / end actions queue index 10 /  end
04/09/2020 07:17:34             dut.10.240.183.141: 
04/09/2020 07:17:34                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203854.0259168 root@10.240.183.89:/tmp/tester/
04/09/2020 07:17:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203854.0259168 root@10.240.183.89:/tmp/tester/
04/09/2020 07:17:37                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203854.0259168
04/09/2020 07:17:38                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2544, type=34525)/IPv6(version=6, tc=123, fl=0, plen=20, nh=255, hlim=177, src='5a14:9ac2:d2f1:1569:973c:9c13:2f4:e9c6', dst='cd89:6eeb:32d5:7e06:4e7f:f837:5283:9e1f')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:17:42           TestGeneric_flow_api: vf0:  
04/09/2020 07:17:42           TestGeneric_flow_api: vf1:  
04/09/2020 07:17:44             dut.10.240.183.141: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:17:44             dut.10.240.183.141: stop
04/09/2020 07:17:44             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:17:44           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:17:46             dut.10.240.183.141: start
04/09/2020 07:17:46             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:17:47             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3817 / ipv6 src is 6707:317f:1673:50e:693a:bc58:1512:4502 dst is 31c7:75cc:2377:3683:bab5:237:c2d5:be01 tc is 4 hop is 255 / udp dst is 7192 src is 45275  / end actions queue index 0 /  end
04/09/2020 07:17:47             dut.10.240.183.141: 
04/09/2020 07:17:47                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203867.2474937 root@10.240.183.89:/tmp/tester/
04/09/2020 07:17:49                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203867.2474937 root@10.240.183.89:/tmp/tester/
04/09/2020 07:17:50                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203867.2474937
04/09/2020 07:17:51                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3817, type=34525)/IPv6(version=6, tc=4, fl=0, plen=28, nh=17, hlim=255, src='6707:317f:1673:50e:693a:bc58:1512:4502', dst='31c7:75cc:2377:3683:bab5:237:c2d5:be01')/UDP(sport=45275, dport=7192, len=28, chksum=2829)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:17:56           TestGeneric_flow_api: vf0: 
04/09/2020 07:17:56           TestGeneric_flow_api: vf1: 
04/09/2020 07:17:58             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:17:58             dut.10.240.183.141: stop
04/09/2020 07:17:58             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:17:58           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:18:00             dut.10.240.183.141: start
04/09/2020 07:18:00             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:18:00             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 56 / ipv6 src is 806b:7ab0:47cb:8f3d:714:292b:8dd3:7775 dst is a19c:8443:6876:9a92:d4ee:bef1:8deb:45b4 tc is 61 hop is 202 / tcp dst is 21485 src is 2458  / end actions queue index 0 /  end
04/09/2020 07:18:00             dut.10.240.183.141: 
04/09/2020 07:18:00                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203880.569157 root@10.240.183.89:/tmp/tester/
04/09/2020 07:18:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203880.569157 root@10.240.183.89:/tmp/tester/
04/09/2020 07:18:04                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203880.569157
04/09/2020 07:18:05                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=56, type=34525)/IPv6(version=6, tc=61, fl=0, plen=40, nh=6, hlim=202, src='806b:7ab0:47cb:8f3d:714:292b:8dd3:7775', dst='a19c:8443:6876:9a92:d4ee:bef1:8deb:45b4')/TCP(sport=2458, dport=21485, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=58748, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:18:09           TestGeneric_flow_api: vf0: 
04/09/2020 07:18:09           TestGeneric_flow_api: vf1: 
04/09/2020 07:18:11             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:18:11             dut.10.240.183.141: stop
04/09/2020 07:18:11             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:18:11           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:18:13             dut.10.240.183.141: start
04/09/2020 07:18:13             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:18:13             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 2113 / ipv6 src is ae85:1993:6986:e2a6:dbb0:fff8:3b1a:efb0 dst is b18e:f7db:29a9:818d:532b:ff11:6389:c1a1 tc is 90 hop is 118 / sctp dst is 60156 src is 56531 tag is 1  / end actions queue index 7 /  end
04/09/2020 07:18:13             dut.10.240.183.141: 
04/09/2020 07:18:13                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203893.8353257 root@10.240.183.89:/tmp/tester/
04/09/2020 07:18:15                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203893.8353257 root@10.240.183.89:/tmp/tester/
04/09/2020 07:18:17                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203893.8353257
04/09/2020 07:18:18                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2113, type=34525)/IPv6(version=6, tc=90, fl=0, plen=32, nh=132, hlim=118, src='ae85:1993:6986:e2a6:dbb0:fff8:3b1a:efb0', dst='b18e:f7db:29a9:818d:532b:ff11:6389:c1a1')/SCTP(sport=56531, dport=60156, tag=1, chksum=225467049)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:18:22           TestGeneric_flow_api: vf0: 
04/09/2020 07:18:22           TestGeneric_flow_api: vf1: 
04/09/2020 07:18:24             dut.10.240.183.141: 
testpmd> port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=90 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_SCTP  - l2_len=18 - l3_len=40 - l4_len=12 - Receive queue=0x7
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:18:24             dut.10.240.183.141: stop
04/09/2020 07:18:24             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 7 -> TX Port= 0/Queue= 7 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:18:24           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=90 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_SCTP  - l2_len=18 - l3_len=40 - l4_len=12 - Receive queue=0x7
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:18:26             dut.10.240.183.141: start
04/09/2020 07:18:26             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:18:27             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 2617 / ipv6 src is 1ec4:aceb:372b:1920:e24:4c2e:9721:258a dst is 486c:932:a8bc:139:29de:41f6:3640:2609 proto is 255 tc is 61 hop is 51 / vf id is 0 / end actions queue index 1 /  end
04/09/2020 07:18:27             dut.10.240.183.141: 
04/09/2020 07:18:27                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203907.107202 root@10.240.183.89:/tmp/tester/
04/09/2020 07:18:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203907.107202 root@10.240.183.89:/tmp/tester/
04/09/2020 07:18:30                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203907.107202
04/09/2020 07:18:31                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2617, type=34525)/IPv6(version=6, tc=61, fl=0, plen=20, nh=255, hlim=51, src='1ec4:aceb:372b:1920:e24:4c2e:9721:258a', dst='486c:932:a8bc:139:29de:41f6:3640:2609')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:18:35           TestGeneric_flow_api: vf0: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:18:35           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:18:37             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:18:37             dut.10.240.183.141: stop
04/09/2020 07:18:37             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:18:37           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:18:39             dut.10.240.183.141: start
04/09/2020 07:18:40             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:18:40             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 3373 / ipv6 src is 334:f8ad:fec6:f9b2:2926:5e97:ee61:f6f5 dst is 31f4:646:51a6:ab5a:e9cb:7c74:6813:aa93 tc is 12 hop is 162 / tcp dst is 1204 src is 32201 / vf id is 1 / end actions queue index 3 /  end
04/09/2020 07:18:40             dut.10.240.183.141: 
04/09/2020 07:18:40                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203920.3831377 root@10.240.183.89:/tmp/tester/
04/09/2020 07:18:42                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203920.3831377 root@10.240.183.89:/tmp/tester/
04/09/2020 07:18:44                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203920.3831377
04/09/2020 07:18:44                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3373, type=34525)/IPv6(version=6, tc=12, fl=0, plen=40, nh=6, hlim=162, src='334:f8ad:fec6:f9b2:2926:5e97:ee61:f6f5', dst='31f4:646:51a6:ab5a:e9cb:7c74:6813:aa93')/TCP(sport=32201, dport=1204, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=18697, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:18:49           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:18:49           TestGeneric_flow_api: vf1: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:18:51             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:18:51             dut.10.240.183.141: stop
04/09/2020 07:18:51             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:18:51           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:18:53             dut.10.240.183.141: start
04/09/2020 07:18:53             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:18:53             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 2953 / ipv6 src is 8a7a:6f75:20c8:2f2:b709:f420:e322:95ca dst is 7f75:cd50:244e:f782:7e:6b5a:89f9:967c tc is 73 hop is 240 / sctp dst is 19310 src is 6810 tag is 1  / end actions drop /  end
04/09/2020 07:18:53             dut.10.240.183.141: 
04/09/2020 07:18:53                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203933.6552968 root@10.240.183.89:/tmp/tester/
04/09/2020 07:18:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203933.6552968 root@10.240.183.89:/tmp/tester/
04/09/2020 07:18:57                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203933.6552968
04/09/2020 07:18:58                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2953, type=34525)/IPv6(version=6, tc=73, fl=0, plen=32, nh=132, hlim=240, src='8a7a:6f75:20c8:2f2:b709:f420:e322:95ca', dst='7f75:cd50:244e:f782:7e:6b5a:89f9:967c')/SCTP(sport=6810, dport=19310, tag=1, chksum=299752850)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:19:02           TestGeneric_flow_api: vf0: 
04/09/2020 07:19:02           TestGeneric_flow_api: vf1: 
04/09/2020 07:19:04             dut.10.240.183.141: 
testpmd> 
04/09/2020 07:19:04             dut.10.240.183.141: stop
04/09/2020 07:19:04             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:19:04           TestGeneric_flow_api: pf: 
testpmd> 
04/09/2020 07:19:06             dut.10.240.183.141: start
04/09/2020 07:19:06             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:19:06             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 3262 / ipv6 src is 10df:6d7c:93fc:2ac:e59f:4f71:f600:d0e5 dst is c488:2cbb:b95f:6df6:9ce0:6ccc:475:ee07 tc is 171 hop is 151 / tcp dst is 41312 src is 34926 / vf id is 1 / end actions drop /  end
04/09/2020 07:19:06             dut.10.240.183.141: 
04/09/2020 07:19:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203946.9750068 root@10.240.183.89:/tmp/tester/
04/09/2020 07:19:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203946.9750068 root@10.240.183.89:/tmp/tester/
04/09/2020 07:19:10                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203946.9750068
04/09/2020 07:19:11                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3262, type=34525)/IPv6(version=6, tc=171, fl=0, plen=40, nh=6, hlim=151, src='10df:6d7c:93fc:2ac:e59f:4f71:f600:d0e5', dst='c488:2cbb:b95f:6df6:9ce0:6ccc:475:ee07')/TCP(sport=34926, dport=41312, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=35723, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:19:15           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:19:15           TestGeneric_flow_api: vf1: 
04/09/2020 07:19:17             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:19:17             dut.10.240.183.141: stop
04/09/2020 07:19:17             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:19:17           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:19:19             dut.10.240.183.141: start
04/09/2020 07:19:19             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:19:20                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599203960.227778 root@10.240.183.89:/tmp/tester/
04/09/2020 07:19:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599203960.227778 root@10.240.183.89:/tmp/tester/
04/09/2020 07:19:23                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599203960.227778
04/09/2020 07:19:24                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3817, type=34525)/IPv6(version=6, tc=2, fl=0, plen=28, nh=17, hlim=20, src='2001::1', dst='2001::2')/UDP(sport=22, dport=23, len=28, chksum=2768)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:19:28           TestGeneric_flow_api: vf0: 
04/09/2020 07:19:28           TestGeneric_flow_api: vf1: 
04/09/2020 07:19:30             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

04/09/2020 07:19:30             dut.10.240.183.141: stop
04/09/2020 07:19:31             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:19:31           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

04/09/2020 07:19:33             dut.10.240.183.141: start
04/09/2020 07:19:33             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:19:33             dut.10.240.183.141: flow list 0
04/09/2020 07:19:33             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH VLAN IPV6 => QUEUE
1	0	0	i--	ETH VLAN IPV6 UDP => QUEUE
2	0	0	i--	ETH VLAN IPV6 TCP => QUEUE
3	0	0	i--	ETH VLAN IPV6 SCTP => QUEUE
4	0	0	i-t	ETH VLAN IPV6 VF => QUEUE
5	0	0	i-t	ETH VLAN IPV6 TCP VF => QUEUE
6	0	0	i--	ETH VLAN IPV6 SCTP => DROP
7	0	0	i-t	ETH VLAN IPV6 TCP VF => DROP
04/09/2020 07:19:33             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:19:33             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:19:33             dut.10.240.183.141: flow list 0
04/09/2020 07:19:33             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH VLAN IPV6 UDP => QUEUE
2	0	0	i--	ETH VLAN IPV6 TCP => QUEUE
3	0	0	i--	ETH VLAN IPV6 SCTP => QUEUE
4	0	0	i-t	ETH VLAN IPV6 VF => QUEUE
5	0	0	i-t	ETH VLAN IPV6 TCP VF => QUEUE
6	0	0	i--	ETH VLAN IPV6 SCTP => DROP
7	0	0	i-t	ETH VLAN IPV6 TCP VF => DROP
04/09/2020 07:19:33             dut.10.240.183.141: flow flush 0
04/09/2020 07:19:33             dut.10.240.183.141: 
04/09/2020 07:19:33             dut.10.240.183.141: flow list 0
04/09/2020 07:19:33             dut.10.240.183.141: 
04/09/2020 07:19:33           TestGeneric_flow_api: Test Case test_fdir_for_ipv6 Result PASSED:
04/09/2020 07:19:40             dut.10.240.183.141: quit
04/09/2020 07:19:41             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
04/09/2020 07:19:46             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:19:46           TestGeneric_flow_api: Test Case test_fdir_for_mac_vlan Begin
04/09/2020 07:19:46             dut.10.240.183.141: 
04/09/2020 07:19:46                         tester: 
04/09/2020 07:19:46             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:19:48             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0 -w 0000:84:00.1  --file-prefix=dpdk_8435_20200904065301   -- -i --pkt-filter-mode=perfect-mac-vlan --disable-rss --rxq=16 --txq=16
04/09/2020 07:19:50             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267348]. original: 0x0009f00f, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x0026734c]. original: 0x000cff00, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267358]. original: 0x0009f00f, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x0026735c]. original: 0x000cff00, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267360]. original: 0x0009f00f, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267364]. original: 0x000cff00, new: 0x00000000
i40e_check_write_global_reg(): i40e device 0000:84:00.0 changed global register [0x00267368]. original: 0x0009f00f, new: 0x00000000
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.1 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 68:05:CA:30:6A:80
Configuring Port 1 (socket 1)
Port 1: 68:05:CA:30:6A:81
Checking link statuses...
Done
04/09/2020 07:20:00             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:20:00             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:20:00             dut.10.240.183.141: set verbose 1
04/09/2020 07:20:00             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:20:00             dut.10.240.183.141: vlan set strip off 0
04/09/2020 07:20:00             dut.10.240.183.141: 
04/09/2020 07:20:00             dut.10.240.183.141: vlan set filter off 0
04/09/2020 07:20:00             dut.10.240.183.141: 
04/09/2020 07:20:00             dut.10.240.183.141: start
04/09/2020 07:20:00             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:20:02             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 2106  / end actions queue index 8 /  end
04/09/2020 07:20:02             dut.10.240.183.141: 
04/09/2020 07:20:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204002.57459 root@10.240.183.89:/tmp/tester/
04/09/2020 07:20:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204002.57459 root@10.240.183.89:/tmp/tester/
04/09/2020 07:20:06                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204002.57459
04/09/2020 07:20:07                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=2106, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:20:09             dut.10.240.183.141: 
testpmd> port 0/queue 8: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x8
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:20:09             dut.10.240.183.141: stop
04/09/2020 07:20:09             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 1/Queue= 8 -------
  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.
04/09/2020 07:20:09           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 8: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x8
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:20:11             dut.10.240.183.141: start
04/09/2020 07:20:11             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:20:11             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 904  / end actions queue index 2 /  end
04/09/2020 07:20:11             dut.10.240.183.141: 
04/09/2020 07:20:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204011.3826468 root@10.240.183.89:/tmp/tester/
04/09/2020 07:20:13                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204011.3826468 root@10.240.183.89:/tmp/tester/
04/09/2020 07:20:15                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204011.3826468
04/09/2020 07:20:15                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=904, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:20:17             dut.10.240.183.141: 
testpmd> port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:20:17             dut.10.240.183.141: stop
04/09/2020 07:20:17             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 1/Queue= 2 -------
  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.
04/09/2020 07:20:17           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 2: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER  - sw ptype: L2_ETHER_VLAN  - l2_len=18 - Receive queue=0x2
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:20:19             dut.10.240.183.141: start
04/09/2020 07:20:20             dut.10.240.183.141: 
rxonly packet forwarding - ports=2 - cores=1 - streams=32 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (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=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:20:20             dut.10.240.183.141: flow list 0
04/09/2020 07:20:20             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH VLAN => QUEUE
1	0	0	i--	ETH VLAN => QUEUE
04/09/2020 07:20:20             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:20:20             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:20:20             dut.10.240.183.141: flow list 0
04/09/2020 07:20:20             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH VLAN => QUEUE
04/09/2020 07:20:20             dut.10.240.183.141: flow flush 0
04/09/2020 07:20:20             dut.10.240.183.141: 
04/09/2020 07:20:20             dut.10.240.183.141: flow list 0
04/09/2020 07:20:20             dut.10.240.183.141: 
04/09/2020 07:20:20           TestGeneric_flow_api: Test Case test_fdir_for_mac_vlan Result PASSED:
04/09/2020 07:20:20             dut.10.240.183.141: quit
04/09/2020 07:20:21             dut.10.240.183.141: 
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
  ----------------------------------------------------------------------------

  ---------------------- 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...

Port 0: link state change event
Done

Shutting down port 0...
Closing ports...

Port 1: link state change event
Done

Shutting down port 1...
Closing ports...
Done

Bye...
04/09/2020 07:20:23             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:20:24           TestGeneric_flow_api: Test Case test_fdir_for_nvgre Result SKIPPED:
04/09/2020 07:20:24           TestGeneric_flow_api: Test Case test_fdir_for_vlan Begin
04/09/2020 07:20:24             dut.10.240.183.141: 
04/09/2020 07:20:24                         tester: 
04/09/2020 07:20:24             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:20:25             dut.10.240.183.141: modprobe uio
04/09/2020 07:20:25             dut.10.240.183.141: 
04/09/2020 07:20:25             dut.10.240.183.141: insmod ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko
04/09/2020 07:20:25             dut.10.240.183.141: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko: File exists
04/09/2020 07:20:25             dut.10.240.183.141: modprobe vfio-pci
04/09/2020 07:20:25             dut.10.240.183.141: 
04/09/2020 07:20:30             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_8435_20200904065301   --socket-mem 1024,1024 --legacy-mem  -- -i --pkt-filter-mode=perfect --disable-rss --rxq=16 --txq=16
04/09/2020 07:20:36             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:20:46             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:20:46             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:20:46             dut.10.240.183.141: set verbose 1
04/09/2020 07:20:46             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:20:46             dut.10.240.183.141: start
04/09/2020 07:20:46             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:21:04             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3874 / ipv4  / end actions queue index 13 /  end
04/09/2020 07:21:04             dut.10.240.183.141: 
04/09/2020 07:21:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204064.7005537 root@10.240.183.89:/tmp/tester/
04/09/2020 07:21:06                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204064.7005537 root@10.240.183.89:/tmp/tester/
04/09/2020 07:21:08                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204064.7005537
04/09/2020 07:21:09                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3874, type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31955, src='127.0.0.1', dst='127.0.0.1')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:21:13           TestGeneric_flow_api: vf0:  
04/09/2020 07:21:13           TestGeneric_flow_api: vf1:  
04/09/2020 07:21:15             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:21:15             dut.10.240.183.141: stop
04/09/2020 07:21:15             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:21:15           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:21:17             dut.10.240.183.141: start
04/09/2020 07:21:17             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:21:17             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 1485 / ipv4 / udp  / end actions queue index 8 /  end
04/09/2020 07:21:17             dut.10.240.183.141: 
04/09/2020 07:21:17                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204077.9175723 root@10.240.183.89:/tmp/tester/
04/09/2020 07:21:19                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204077.9175723 root@10.240.183.89:/tmp/tester/
04/09/2020 07:21:21                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204077.9175723
04/09/2020 07:21:22                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=1485, type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31930, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=28, chksum=19605)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
04/09/2020 07:21:26           TestGeneric_flow_api: vf0: 
04/09/2020 07:21:26           TestGeneric_flow_api: vf1: 
04/09/2020 07:21:28             dut.10.240.183.141: 
testpmd> port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:21:28             dut.10.240.183.141: stop
04/09/2020 07:21:28             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:21:28           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:21:30             dut.10.240.183.141: start
04/09/2020 07:21:30             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:21:31             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3520 / ipv4 / tcp  / end actions queue index 10 /  end
04/09/2020 07:21:31             dut.10.240.183.141: 
04/09/2020 07:21:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204091.1400902 root@10.240.183.89:/tmp/tester/
04/09/2020 07:21:32                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204091.1400902 root@10.240.183.89:/tmp/tester/
04/09/2020 07:21:34                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204091.1400902
04/09/2020 07:21:35                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3520, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:21:39           TestGeneric_flow_api: vf0: 
04/09/2020 07:21:39           TestGeneric_flow_api: vf1: 
04/09/2020 07:21:41             dut.10.240.183.141: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_TCP  - l2_len=18 - l3_len=20 - l4_len=20 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:21:41             dut.10.240.183.141: stop
04/09/2020 07:21:41             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:21:41           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_TCP  - l2_len=18 - l3_len=20 - l4_len=20 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:21:43             dut.10.240.183.141: start
04/09/2020 07:21:44             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:21:44             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 1764 / ipv4 / sctp  / end actions queue index 5 /  end
04/09/2020 07:21:44             dut.10.240.183.141: 
04/09/2020 07:21:44                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204104.415647 root@10.240.183.89:/tmp/tester/
04/09/2020 07:21:46                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204104.415647 root@10.240.183.89:/tmp/tester/
04/09/2020 07:21:48                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204104.415647
04/09/2020 07:21:48                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=1764, type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=31811, src='127.0.0.1', dst='127.0.0.1')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:21:53           TestGeneric_flow_api: vf0: 
04/09/2020 07:21:53           TestGeneric_flow_api: vf1: 
04/09/2020 07:21:55             dut.10.240.183.141: 
testpmd> port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:21:55             dut.10.240.183.141: stop
04/09/2020 07:21:55             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:21:55           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:21:57             dut.10.240.183.141: start
04/09/2020 07:21:57             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:21:57             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 762 / ipv4 / vf id is 0 / end actions queue index 0 /  end
04/09/2020 07:21:57             dut.10.240.183.141: 
04/09/2020 07:21:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204117.6775799 root@10.240.183.89:/tmp/tester/
04/09/2020 07:21:59                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204117.6775799 root@10.240.183.89:/tmp/tester/
04/09/2020 07:22:01                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204117.6775799
04/09/2020 07:22:02                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=762, type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31955, src='127.0.0.1', dst='127.0.0.1')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:22:06           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:22:06           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:22:08             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:22:08             dut.10.240.183.141: stop
04/09/2020 07:22:08             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:22:08           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=60 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:22:10             dut.10.240.183.141: start
04/09/2020 07:22:10             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:22:10             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 1708 / ipv4 / sctp / vf id is 1 / end actions queue index 3 /  end
04/09/2020 07:22:10             dut.10.240.183.141: 
04/09/2020 07:22:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204130.9538386 root@10.240.183.89:/tmp/tester/
04/09/2020 07:22:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204130.9538386 root@10.240.183.89:/tmp/tester/
04/09/2020 07:22:14                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204130.9538386
04/09/2020 07:22:15                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=1708, type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=31811, src='127.0.0.1', dst='127.0.0.1')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:22:19           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - 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 

04/09/2020 07:22:19           TestGeneric_flow_api: vf1: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:22:21             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - 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 

04/09/2020 07:22:21             dut.10.240.183.141: stop
04/09/2020 07:22:21             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:22:21           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=70 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - 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 

04/09/2020 07:22:23             dut.10.240.183.141: start
04/09/2020 07:22:23             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:22:24             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 695 / ipv4 / sctp  / end actions drop /  end
04/09/2020 07:22:24             dut.10.240.183.141: 
04/09/2020 07:22:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204144.1718311 root@10.240.183.89:/tmp/tester/
04/09/2020 07:22:26                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204144.1718311 root@10.240.183.89:/tmp/tester/
04/09/2020 07:22:27                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204144.1718311
04/09/2020 07:22:28                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=695, type=2048)/IP(version=4, ihl=5, tos=0, len=52, id=1, flags=0, frag=0, ttl=64, proto=132, chksum=31811, src='127.0.0.1', dst='127.0.0.1')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:22:32           TestGeneric_flow_api: vf0: 
04/09/2020 07:22:32           TestGeneric_flow_api: vf1: 
04/09/2020 07:22:34             dut.10.240.183.141: 
testpmd> 
04/09/2020 07:22:34             dut.10.240.183.141: stop
04/09/2020 07:22:34             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:22:34           TestGeneric_flow_api: pf: 
testpmd> 
04/09/2020 07:22:36             dut.10.240.183.141: start
04/09/2020 07:22:36             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:22:37             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 958 / ipv4 / udp / vf id is 1 / end actions drop /  end
04/09/2020 07:22:37             dut.10.240.183.141: 
04/09/2020 07:22:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204157.341495 root@10.240.183.89:/tmp/tester/
04/09/2020 07:22:39                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204157.341495 root@10.240.183.89:/tmp/tester/
04/09/2020 07:22:41                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204157.341495
04/09/2020 07:22:41                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=958, type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31930, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=28, chksum=19605)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
04/09/2020 07:22:46           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:22:46           TestGeneric_flow_api: vf1: 
04/09/2020 07:22:48             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:22:48             dut.10.240.183.141: stop
04/09/2020 07:22:48             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:22:48           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:22:50             dut.10.240.183.141: start
04/09/2020 07:22:50             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:22:50             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 2897 / ipv6  / end actions queue index 5 /  end
04/09/2020 07:22:50             dut.10.240.183.141: 
04/09/2020 07:22:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204170.5704584 root@10.240.183.89:/tmp/tester/
04/09/2020 07:22:52                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204170.5704584 root@10.240.183.89:/tmp/tester/
04/09/2020 07:22:54                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204170.5704584
04/09/2020 07:22:55                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2897, type=34525)/IPv6(version=6, tc=0, fl=0, plen=20, nh=59, hlim=64, src='491d:8f26:47c1:ffa5:2170:94f8:5e83:17f2', dst='fa49:53a5:a078:8fe:60d1:bfe9:743e:6775')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:22:59           TestGeneric_flow_api: vf0: 
04/09/2020 07:22:59           TestGeneric_flow_api: vf1: 
04/09/2020 07:23:01             dut.10.240.183.141: 
testpmd> port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:23:01             dut.10.240.183.141: stop
04/09/2020 07:23:01             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:23:01           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:23:03             dut.10.240.183.141: start
04/09/2020 07:23:03             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:23:03             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3782 / ipv6 / udp  / end actions queue index 10 /  end
04/09/2020 07:23:03             dut.10.240.183.141: 
04/09/2020 07:23:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204183.7863848 root@10.240.183.89:/tmp/tester/
04/09/2020 07:23:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204183.7863848 root@10.240.183.89:/tmp/tester/
04/09/2020 07:23:07                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204183.7863848
04/09/2020 07:23:08                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3782, type=34525)/IPv6(version=6, tc=0, fl=0, plen=28, nh=17, hlim=64, src='a2df:cdf4:4cc:7a0b:925f:1b14:8606:e9a3', dst='25b5:1f3a:3948:cc01:aa0b:4c42:29b2:a765')/UDP(sport=53, dport=53, len=28, chksum=11311)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
04/09/2020 07:23:12           TestGeneric_flow_api: vf0: 
04/09/2020 07:23:12           TestGeneric_flow_api: vf1: 
04/09/2020 07:23:14             dut.10.240.183.141: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:23:14             dut.10.240.183.141: stop
04/09/2020 07:23:14             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:23:14           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:23:16             dut.10.240.183.141: start
04/09/2020 07:23:16             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:23:17             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 427 / ipv6 / tcp  / end actions queue index 0 /  end
04/09/2020 07:23:17             dut.10.240.183.141: 
04/09/2020 07:23:17                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204197.10582 root@10.240.183.89:/tmp/tester/
04/09/2020 07:23:18                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204197.10582 root@10.240.183.89:/tmp/tester/
04/09/2020 07:23:20                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204197.10582
04/09/2020 07:23:21                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=427, type=34525)/IPv6(version=6, tc=0, fl=0, plen=40, nh=6, hlim=64, src='ee92:1f40:266f:bb98:52f9:6bab:299a:81dd', dst='85aa:5203:b844:de8d:d7a5:7fb8:f82d:c1e0')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=210, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:23:25           TestGeneric_flow_api: vf0: 
04/09/2020 07:23:25           TestGeneric_flow_api: vf1: 
04/09/2020 07:23:27             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:23:27             dut.10.240.183.141: stop
04/09/2020 07:23:27             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:23:27           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:23:29             dut.10.240.183.141: start
04/09/2020 07:23:29             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:23:30             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3660 / ipv6 / sctp  / end actions queue index 6 /  end
04/09/2020 07:23:30             dut.10.240.183.141: 
04/09/2020 07:23:30                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204210.323893 root@10.240.183.89:/tmp/tester/
04/09/2020 07:23:32                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204210.323893 root@10.240.183.89:/tmp/tester/
04/09/2020 07:23:33                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204210.323893
04/09/2020 07:23:34                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3660, type=34525)/IPv6(version=6, tc=0, fl=0, plen=32, nh=132, hlim=64, src='b2d6:734:795:4cf2:7626:9cff:73f2:b1fe', dst='348f:3b43:402b:1343:6b75:ba9:9ff4:2216')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:23:38           TestGeneric_flow_api: vf0: 
04/09/2020 07:23:38           TestGeneric_flow_api: vf1: 
04/09/2020 07:23:40             dut.10.240.183.141: 
testpmd> port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=90 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_SCTP  - l2_len=18 - l3_len=40 - l4_len=12 - Receive queue=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:23:40             dut.10.240.183.141: stop
04/09/2020 07:23:41             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:23:41           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=90 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_SCTP  - l2_len=18 - l3_len=40 - l4_len=12 - Receive queue=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:23:43             dut.10.240.183.141: start
04/09/2020 07:23:43             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:23:43             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 226 / ipv6 / vf id is 0 / end actions queue index 3 /  end
04/09/2020 07:23:43             dut.10.240.183.141: 
04/09/2020 07:23:43                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204223.4974096 root@10.240.183.89:/tmp/tester/
04/09/2020 07:23:45                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204223.4974096 root@10.240.183.89:/tmp/tester/
04/09/2020 07:23:47                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204223.4974096
04/09/2020 07:23:48                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=226, type=34525)/IPv6(version=6, tc=0, fl=0, plen=20, nh=59, hlim=64, src='86fd:2770:2a0f:7eb1:fb9b:fff6:eea4:f7e6', dst='1530:8108:fbca:cc1f:288b:625e:91d7:9ab5')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:23:52           TestGeneric_flow_api: vf0: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x3
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:23:52           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:23:54             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:23:54             dut.10.240.183.141: stop
04/09/2020 07:23:54             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:23:54           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:23:56             dut.10.240.183.141: start
04/09/2020 07:23:56             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:23:56             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 523 / ipv6 / tcp / vf id is 1 / end actions queue index 1 /  end
04/09/2020 07:23:56             dut.10.240.183.141: 
04/09/2020 07:23:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204236.7737367 root@10.240.183.89:/tmp/tester/
04/09/2020 07:23:58                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204236.7737367 root@10.240.183.89:/tmp/tester/
04/09/2020 07:24:00                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204236.7737367
04/09/2020 07:24:01                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=523, type=34525)/IPv6(version=6, tc=0, fl=0, plen=40, nh=6, hlim=64, src='6677:622e:57ab:43f2:ba0f:77ae:4f54:b698', dst='f2f2:4bef:2a8:9bd1:b8a2:4a1d:2b04:7ea')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=11198, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:24:05           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:24:05           TestGeneric_flow_api: vf1: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x1
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:24:07             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:24:07             dut.10.240.183.141: stop
04/09/2020 07:24:07             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:24:07           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:24:09             dut.10.240.183.141: start
04/09/2020 07:24:09             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:24:09             dut.10.240.183.141: flow create 0 ingress pattern eth / vlan tci is 3967 / ipv6 / sctp  / end actions drop /  end
04/09/2020 07:24:10             dut.10.240.183.141: 
04/09/2020 07:24:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204250.039115 root@10.240.183.89:/tmp/tester/
04/09/2020 07:24:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204250.039115 root@10.240.183.89:/tmp/tester/
04/09/2020 07:24:13                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204250.039115
04/09/2020 07:24:14                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3967, type=34525)/IPv6(version=6, tc=0, fl=0, plen=32, nh=132, hlim=64, src='598d:10ec:64dc:61be:9bf4:29f1:4df0:84ed', dst='1cfb:a81b:f372:1bd2:e291:3d07:27d1:d4cd')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:24:18           TestGeneric_flow_api: vf0: 
04/09/2020 07:24:18           TestGeneric_flow_api: vf1: 
04/09/2020 07:24:20             dut.10.240.183.141: 
testpmd> 
04/09/2020 07:24:20             dut.10.240.183.141: stop
04/09/2020 07:24:20             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:24:20           TestGeneric_flow_api: pf: 
testpmd> 
04/09/2020 07:24:22             dut.10.240.183.141: start
04/09/2020 07:24:22             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:24:23             dut.10.240.183.141: flow create 0 ingress transfer pattern eth / vlan tci is 2809 / ipv6 / tcp / vf id is 1 / end actions drop /  end
04/09/2020 07:24:23             dut.10.240.183.141: 
04/09/2020 07:24:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204263.3602679 root@10.240.183.89:/tmp/tester/
04/09/2020 07:24:25                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204263.3602679 root@10.240.183.89:/tmp/tester/
04/09/2020 07:24:27                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204263.3602679
04/09/2020 07:24:27                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2809, type=34525)/IPv6(version=6, tc=0, fl=0, plen=40, nh=6, hlim=64, src='2b20:58b4:1f00:b9d3:9509:d472:426c:7c31', dst='b4d8:e007:784a:d624:e58d:4d3b:9017:8a8d')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=9526, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:24:32           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:24:32           TestGeneric_flow_api: vf1: 
04/09/2020 07:24:34             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:24:34             dut.10.240.183.141: stop
04/09/2020 07:24:34             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:24:34           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:24:36             dut.10.240.183.141: start
04/09/2020 07:24:36             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:24:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204276.6190548 root@10.240.183.89:/tmp/tester/
04/09/2020 07:24:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204276.6190548 root@10.240.183.89:/tmp/tester/
04/09/2020 07:24:40                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204276.6190548
04/09/2020 07:24:41                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3874, type=2048)/IP(version=4, ihl=5, tos=0, len=40, id=1, flags=0, frag=0, ttl=64, proto=3, chksum=63870, src='192.168.0.1', dst='192.168.0.2')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:24:45           TestGeneric_flow_api: vf0: 
04/09/2020 07:24:45           TestGeneric_flow_api: vf1: 
04/09/2020 07:24:47             dut.10.240.183.141: port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:24:47             dut.10.240.183.141: stop
04/09/2020 07:24:47             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:24:47           TestGeneric_flow_api: pf: port 0/queue 13: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=60 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV4  - l2_len=18 - l3_len=20 - Receive queue=0xd
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:24:49             dut.10.240.183.141: start
04/09/2020 07:24:49             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:24:49                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204289.7896194 root@10.240.183.89:/tmp/tester/
04/09/2020 07:24:51                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204289.7896194 root@10.240.183.89:/tmp/tester/
04/09/2020 07:24:53                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204289.7896194
04/09/2020 07:24:54                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=1485, type=2048)/IP(version=4, ihl=5, tos=3, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=63845, src='192.168.0.1', dst='192.168.0.2')/UDP(sport=53, dport=53, len=28, chksum=51523)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
04/09/2020 07:24:58           TestGeneric_flow_api: vf0: 
04/09/2020 07:24:58           TestGeneric_flow_api: vf1: 
04/09/2020 07:25:00             dut.10.240.183.141: port 0/queue 8: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:25:00             dut.10.240.183.141: stop
04/09/2020 07:25:00             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:25:00           TestGeneric_flow_api: pf: port 0/queue 8: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=66 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:25:02             dut.10.240.183.141: start
04/09/2020 07:25:02             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:25:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204302.9091349 root@10.240.183.89:/tmp/tester/
04/09/2020 07:25:04                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204302.9091349 root@10.240.183.89:/tmp/tester/
04/09/2020 07:25:06                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204302.9091349
04/09/2020 07:25:07                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=3520, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=3, proto=6, chksum=13928, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22882, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:25:11           TestGeneric_flow_api: vf0: 
04/09/2020 07:25:11           TestGeneric_flow_api: vf1: 
04/09/2020 07:25:13             dut.10.240.183.141: port 0/queue 10: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_TCP  - l2_len=18 - l3_len=20 - l4_len=20 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:25:13             dut.10.240.183.141: stop
04/09/2020 07:25:13             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:25:13           TestGeneric_flow_api: pf: port 0/queue 10: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_TCP  - l2_len=18 - l3_len=20 - l4_len=20 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:25:15             dut.10.240.183.141: start
04/09/2020 07:25:15             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:25:16                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204316.0772007 root@10.240.183.89:/tmp/tester/
04/09/2020 07:25:17                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204316.0772007 root@10.240.183.89:/tmp/tester/
04/09/2020 07:25:19                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204316.0772007
04/09/2020 07:25:20                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=1764, type=2048)/IP(version=4, ihl=5, tos=3, len=52, id=1, flags=0, frag=0, ttl=3, proto=132, chksum=13807, src='192.168.0.1', dst='192.168.0.2')/SCTP(sport=0, dport=0, tag=0, chksum=3168751127)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:25:24           TestGeneric_flow_api: vf0: 
04/09/2020 07:25:24           TestGeneric_flow_api: vf1: 
04/09/2020 07:25:26             dut.10.240.183.141: port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:25:26             dut.10.240.183.141: stop
04/09/2020 07:25:26             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:25:26           TestGeneric_flow_api: pf: port 0/queue 5: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=70 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_SCTP  - l2_len=18 - l3_len=20 - l4_len=12 - Receive queue=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:25:28             dut.10.240.183.141: start
04/09/2020 07:25:28             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:25:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204329.2499464 root@10.240.183.89:/tmp/tester/
04/09/2020 07:25:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204329.2499464 root@10.240.183.89:/tmp/tester/
04/09/2020 07:25:32                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204329.2499464
04/09/2020 07:25:33                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=1764, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=3, proto=6, chksum=13928, src='192.168.0.1', dst='192.168.0.2')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=22882, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:25:38           TestGeneric_flow_api: vf0: 
04/09/2020 07:25:38           TestGeneric_flow_api: vf1: 
04/09/2020 07:25:40             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:25:40             dut.10.240.183.141: stop
04/09/2020 07:25:40             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:25:40           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:25:42             dut.10.240.183.141: start
04/09/2020 07:25:42             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:25:42                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204342.4786475 root@10.240.183.89:/tmp/tester/
04/09/2020 07:25:44                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204342.4786475 root@10.240.183.89:/tmp/tester/
04/09/2020 07:25:46                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204342.4786475
04/09/2020 07:25:46                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3520, type=2048)/IP(version=4, ihl=5, tos=0, len=48, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31930, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=28, chksum=19605)/DNS(length=None, id=30840, qr=0, opcode=15, aa=0, tc=0, rd=0, ra=0, z=1, ad=1, cd=1, rcode=8, qdcount=30840, ancount=30840, nscount=30840, arcount=30840, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'xxxxxxxx')
04/09/2020 07:25:51           TestGeneric_flow_api: vf0: 
04/09/2020 07:25:51           TestGeneric_flow_api: vf1: 
04/09/2020 07:25:53             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:25:53             dut.10.240.183.141: stop
04/09/2020 07:25:53             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:25:53           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=66 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:25:55             dut.10.240.183.141: start
04/09/2020 07:25:55             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:25:55                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204355.6917691 root@10.240.183.89:/tmp/tester/
04/09/2020 07:25:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204355.6917691 root@10.240.183.89:/tmp/tester/
04/09/2020 07:25:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204355.6917691
04/09/2020 07:26:00                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=695, type=2048)/IP(version=4, ihl=5, tos=3, len=52, id=1, flags=0, frag=0, ttl=3, proto=132, chksum=13799, src='192.168.0.5', dst='192.168.0.6')/SCTP(sport=44, dport=45, tag=1, chksum=594960672)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:26:04           TestGeneric_flow_api: vf0: 
04/09/2020 07:26:04           TestGeneric_flow_api: vf1: 
04/09/2020 07:26:06             dut.10.240.183.141: 
04/09/2020 07:26:06             dut.10.240.183.141: stop
04/09/2020 07:26:06             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:26:06           TestGeneric_flow_api: pf: 
04/09/2020 07:26:08             dut.10.240.183.141: start
04/09/2020 07:26:08             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:26:08                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204368.8695953 root@10.240.183.89:/tmp/tester/
04/09/2020 07:26:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204368.8695953 root@10.240.183.89:/tmp/tester/
04/09/2020 07:26:12                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204368.8695953
04/09/2020 07:26:13                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=958, type=2048)/IP(version=4, ihl=5, tos=3, len=64, id=1, flags=0, frag=0, ttl=3, proto=17, chksum=13902, src='192.168.0.5', dst='192.168.0.6')/UDP(sport=44, dport=45, len=44, chksum=2634)/Raw(load=b'\x00\x00\x00$\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00XXXXXXXXXXXXXXXXXXXX')
04/09/2020 07:26:17           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x8100 - length=82 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:26:17           TestGeneric_flow_api: vf1: 
04/09/2020 07:26:19             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x8100 - length=82 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:26:19             dut.10.240.183.141: stop
04/09/2020 07:26:19             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:26:19           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:0C:29:67:AC:3E - dst=00:11:22:33:44:55 - type=0x8100 - length=82 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:26:21             dut.10.240.183.141: start
04/09/2020 07:26:21             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:26:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204382.0916648 root@10.240.183.89:/tmp/tester/
04/09/2020 07:26:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204382.0916648 root@10.240.183.89:/tmp/tester/
04/09/2020 07:26:25                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204382.0916648
04/09/2020 07:26:26                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2897, type=34525)/IPv6(version=6, tc=1, fl=0, plen=20, nh=5, hlim=10, src='2001::1', dst='2001::2')/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:26:30           TestGeneric_flow_api: vf0: 
04/09/2020 07:26:30           TestGeneric_flow_api: vf1: 
04/09/2020 07:26:32             dut.10.240.183.141: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:26:32             dut.10.240.183.141: stop
04/09/2020 07:26:32             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:26:32           TestGeneric_flow_api: pf: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=78 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_NONFRAG  - sw ptype: L2_ETHER_VLAN L3_IPV6  - l2_len=18 - l3_len=40 - Receive queue=0x5
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:26:34             dut.10.240.183.141: start
04/09/2020 07:26:34             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:26:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204395.2570987 root@10.240.183.89:/tmp/tester/
04/09/2020 07:26:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204395.2570987 root@10.240.183.89:/tmp/tester/
04/09/2020 07:26:38                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204395.2570987
04/09/2020 07:26:39                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3782, type=34525)/IPv6(version=6, tc=2, fl=0, plen=28, nh=17, hlim=20, src='2001::1', dst='2001::2')/UDP(sport=22, dport=23, len=28, chksum=2768)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:26:43           TestGeneric_flow_api: vf0: 
04/09/2020 07:26:43           TestGeneric_flow_api: vf1: 
04/09/2020 07:26:45             dut.10.240.183.141: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:26:45             dut.10.240.183.141: stop
04/09/2020 07:26:46             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:26:46           TestGeneric_flow_api: pf: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=86 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:26:48             dut.10.240.183.141: start
04/09/2020 07:26:48             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:26:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204408.3814363 root@10.240.183.89:/tmp/tester/
04/09/2020 07:26:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204408.3814363 root@10.240.183.89:/tmp/tester/
04/09/2020 07:26:52                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204408.3814363
04/09/2020 07:26:52                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=427, type=34525)/IPv6(version=6, tc=2, fl=0, plen=40, nh=6, hlim=20, src='2001::1', dst='2001::2')/TCP(sport=32, dport=33, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=39636, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:26:57           TestGeneric_flow_api: vf0: 
04/09/2020 07:26:57           TestGeneric_flow_api: vf1: 
04/09/2020 07:26:59             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:26:59             dut.10.240.183.141: stop
04/09/2020 07:26:59             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:26:59           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=98 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - l3_len=40 - l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:27:01             dut.10.240.183.141: start
04/09/2020 07:27:01             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:27:01                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204421.5495672 root@10.240.183.89:/tmp/tester/
04/09/2020 07:27:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204421.5495672 root@10.240.183.89:/tmp/tester/
04/09/2020 07:27:05                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204421.5495672
04/09/2020 07:27:06                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3660, type=34525)/IPv6(version=6, tc=4, fl=0, plen=48, nh=132, hlim=40, src='2001::1', dst='2001::2')/SCTP(sport=44, dport=45, tag=1, chksum=3665959070)/SCTPChunkData(type=0, reserved=0, delay_sack=0, unordered=0, beginning=0, ending=0, len=36, tsn=0, stream_id=0, stream_seq=0, proto_id=0, data=b'XXXXXXXXXXXXXXXXXXXX')
04/09/2020 07:27:10           TestGeneric_flow_api: vf0: 
04/09/2020 07:27:10           TestGeneric_flow_api: vf1: 
04/09/2020 07:27:12             dut.10.240.183.141: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=106 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_SCTP  - l2_len=18 - l3_len=40 - l4_len=12 - Receive queue=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:27:12             dut.10.240.183.141: stop
04/09/2020 07:27:12             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:27:12           TestGeneric_flow_api: pf: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x8100 - length=106 - nb_segs=1 - FDIR matched hash=0x0 ID=0x0  - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_SCTP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_SCTP  - l2_len=18 - l3_len=40 - l4_len=12 - Receive queue=0x6
  ol_flags: PKT_RX_FDIR PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:27:14             dut.10.240.183.141: start
04/09/2020 07:27:14             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:27:14                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204434.821142 root@10.240.183.89:/tmp/tester/
04/09/2020 07:27:16                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204434.821142 root@10.240.183.89:/tmp/tester/
04/09/2020 07:27:18                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204434.821142
04/09/2020 07:27:19                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=3967, type=34525)/IPv6(version=6, tc=4, fl=0, plen=48, nh=132, hlim=40, src='2001::1', dst='2001::2')/SCTP(sport=44, dport=45, tag=1, chksum=3665959070)/SCTPChunkData(type=0, reserved=0, delay_sack=0, unordered=0, beginning=0, ending=0, len=36, tsn=0, stream_id=0, stream_seq=0, proto_id=0, data=b'XXXXXXXXXXXXXXXXXXXX')
04/09/2020 07:27:23           TestGeneric_flow_api: vf0: 
04/09/2020 07:27:23           TestGeneric_flow_api: vf1: 
04/09/2020 07:27:25             dut.10.240.183.141: 
04/09/2020 07:27:25             dut.10.240.183.141: stop
04/09/2020 07:27:25             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:27:25           TestGeneric_flow_api: pf: 
04/09/2020 07:27:27             dut.10.240.183.141: start
04/09/2020 07:27:27             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:27:28                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204448.1407201 root@10.240.183.89:/tmp/tester/
04/09/2020 07:27:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204448.1407201 root@10.240.183.89:/tmp/tester/
04/09/2020 07:27:31                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204448.1407201
04/09/2020 07:27:32                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2809, type=34525)/IPv6(version=6, tc=2, fl=0, plen=40, nh=6, hlim=20, src='2001::1', dst='2001::2')/TCP(sport=32, dport=33, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=39636, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:27:36           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:27:36           TestGeneric_flow_api: vf1: 
04/09/2020 07:27:38             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:27:38             dut.10.240.183.141: stop
04/09/2020 07:27:38             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:27:38           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=98 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN L4_TCP  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_TCP  - l2_len=18 - 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 

04/09/2020 07:27:40             dut.10.240.183.141: start
04/09/2020 07:27:41             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:27:41             dut.10.240.183.141: flow list 0
04/09/2020 07:27:41             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH VLAN IPV4 => QUEUE
1	0	0	i--	ETH VLAN IPV4 UDP => QUEUE
2	0	0	i--	ETH VLAN IPV4 TCP => QUEUE
3	0	0	i--	ETH VLAN IPV4 SCTP => QUEUE
4	0	0	i-t	ETH VLAN IPV4 VF => QUEUE
5	0	0	i-t	ETH VLAN IPV4 SCTP VF => QUEUE
6	0	0	i--	ETH VLAN IPV4 SCTP => DROP
7	0	0	i-t	ETH VLAN IPV4 UDP VF => DROP
8	0	0	i--	ETH VLAN IPV6 => QUEUE
9	0	0	i--	ETH VLAN IPV6 UDP => QUEUE
10	0	0	i--	ETH VLAN IPV6 TCP => QUEUE
11	0	0	i--	ETH VLAN IPV6 SCTP => QUEUE
12	0	0	i-t	ETH VLAN IPV6 VF => QUEUE
13	0	0	i-t	ETH VLAN IPV6 TCP VF => QUEUE
14	0	0	i--	ETH VLAN IPV6 SCTP => DROP
15	0	0	i-t	ETH VLAN IPV6 TCP VF => DROP
04/09/2020 07:27:41             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:27:41             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:27:41             dut.10.240.183.141: flow list 0
04/09/2020 07:27:41             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH VLAN IPV4 UDP => QUEUE
2	0	0	i--	ETH VLAN IPV4 TCP => QUEUE
3	0	0	i--	ETH VLAN IPV4 SCTP => QUEUE
4	0	0	i-t	ETH VLAN IPV4 VF => QUEUE
5	0	0	i-t	ETH VLAN IPV4 SCTP VF => QUEUE
6	0	0	i--	ETH VLAN IPV4 SCTP => DROP
7	0	0	i-t	ETH VLAN IPV4 UDP VF => DROP
8	0	0	i--	ETH VLAN IPV6 => QUEUE
9	0	0	i--	ETH VLAN IPV6 UDP => QUEUE
10	0	0	i--	ETH VLAN IPV6 TCP => QUEUE
11	0	0	i--	ETH VLAN IPV6 SCTP => QUEUE
12	0	0	i-t	ETH VLAN IPV6 VF => QUEUE
13	0	0	i-t	ETH VLAN IPV6 TCP VF => QUEUE
14	0	0	i--	ETH VLAN IPV6 SCTP => DROP
15	0	0	i-t	ETH VLAN IPV6 TCP VF => DROP
04/09/2020 07:27:41             dut.10.240.183.141: flow flush 0
04/09/2020 07:27:41             dut.10.240.183.141: 
04/09/2020 07:27:41             dut.10.240.183.141: flow list 0
04/09/2020 07:27:41             dut.10.240.183.141: 
04/09/2020 07:27:41           TestGeneric_flow_api: Test Case test_fdir_for_vlan Result PASSED:
04/09/2020 07:27:48             dut.10.240.183.141: quit
04/09/2020 07:27:48             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
04/09/2020 07:27:53             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:27:54           TestGeneric_flow_api: Test Case test_fdir_for_vxlan Result SKIPPED:
04/09/2020 07:27:54           TestGeneric_flow_api: Test Case test_flexbytes_filter Result SKIPPED:
04/09/2020 07:27:54           TestGeneric_flow_api: Test Case test_n_tuple_filter Result SKIPPED:
04/09/2020 07:27:54           TestGeneric_flow_api: Test Case test_syn_filter Result SKIPPED:
04/09/2020 07:27:54           TestGeneric_flow_api: Test Case test_tunnel_filter_nvgre Begin
04/09/2020 07:27:54             dut.10.240.183.141: 
04/09/2020 07:27:54                         tester: 
04/09/2020 07:27:54             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:27:56             dut.10.240.183.141: modprobe uio
04/09/2020 07:27:56             dut.10.240.183.141: 
04/09/2020 07:27:56             dut.10.240.183.141: insmod ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko
04/09/2020 07:27:56             dut.10.240.183.141: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko: File exists
04/09/2020 07:27:56             dut.10.240.183.141: modprobe vfio-pci
04/09/2020 07:27:56             dut.10.240.183.141: 
04/09/2020 07:28:01             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_8435_20200904065301   --socket-mem 1024,1024  --legacy-mem  -- -i --disable-rss --rxq=16 --txq=16
04/09/2020 07:28:07             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:28:17             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:28:17             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:28:17             dut.10.240.183.141: set verbose 1
04/09/2020 07:28:17             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:28:17             dut.10.240.183.141: start
04/09/2020 07:28:18             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:28:36             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre / eth dst is 00:11:22:33:44:66  / end actions pf / queue index 3 /  end
04/09/2020 07:28:36             dut.10.240.183.141: 
04/09/2020 07:28:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204516.8619661 root@10.240.183.89:/tmp/tester/
04/09/2020 07:28:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204516.8619661 root@10.240.183.89:/tmp/tester/
04/09/2020 07:28:40                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204516.8619661
04/09/2020 07:28:41                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=62, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31886, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=256, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:28:45           TestGeneric_flow_api: vf0:  
04/09/2020 07:28:45           TestGeneric_flow_api: vf1:  
04/09/2020 07:28:47             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:28:47             dut.10.240.183.141: stop
04/09/2020 07:28:47             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
04/09/2020 07:28:47           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:28:49             dut.10.240.183.141: start
04/09/2020 07:28:49             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:28:50             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 3111 / eth dst is 00:11:22:33:44:66  / end actions pf / queue index 15 /  end
04/09/2020 07:28:50             dut.10.240.183.141: 
04/09/2020 07:28:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204530.0804305 root@10.240.183.89:/tmp/tester/
04/09/2020 07:28:51                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204530.0804305 root@10.240.183.89:/tmp/tester/
04/09/2020 07:28:53                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204530.0804305
04/09/2020 07:28:54                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=62, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31886, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=796416, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:28:58           TestGeneric_flow_api: vf0: 
04/09/2020 07:28:58           TestGeneric_flow_api: vf1: 
04/09/2020 07:29:00             dut.10.240.183.141: 
testpmd> port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0xf
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:29:00             dut.10.240.183.141: stop
04/09/2020 07:29:00             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 0/Queue=15 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:29:00           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0xf
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:29:02             dut.10.240.183.141: start
04/09/2020 07:29:02             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:29:03             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre / eth dst is 00:11:22:33:44:66 / vlan tci is 89  / end actions pf / queue index 8 /  end
04/09/2020 07:29:03             dut.10.240.183.141: 
04/09/2020 07:29:03                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204543.2531767 root@10.240.183.89:/tmp/tester/
04/09/2020 07:29:05                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204543.2531767 root@10.240.183.89:/tmp/tester/
04/09/2020 07:29:06                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204543.2531767
04/09/2020 07:29:07                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=256, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=89, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:29:11           TestGeneric_flow_api: vf0: 
04/09/2020 07:29:11           TestGeneric_flow_api: vf1: 
04/09/2020 07:29:13             dut.10.240.183.141: 
testpmd> port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x8
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:29:13             dut.10.240.183.141: stop
04/09/2020 07:29:13             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:29:13           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x8
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:29:15             dut.10.240.183.141: start
04/09/2020 07:29:16             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:29:16             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 3968 / eth dst is 00:11:22:33:44:66 / vlan tci is 1882  / end actions pf / queue index 4 /  end
04/09/2020 07:29:16             dut.10.240.183.141: 
04/09/2020 07:29:16                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204556.419547 root@10.240.183.89:/tmp/tester/
04/09/2020 07:29:18                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204556.419547 root@10.240.183.89:/tmp/tester/
04/09/2020 07:29:20                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204556.419547
04/09/2020 07:29:20                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=1015808, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=1882, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:29:25           TestGeneric_flow_api: vf0: 
04/09/2020 07:29:25           TestGeneric_flow_api: vf1: 
04/09/2020 07:29:27             dut.10.240.183.141: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:29:27             dut.10.240.183.141: stop
04/09/2020 07:29:27             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:29:27           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x4
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:29:29             dut.10.240.183.141: start
04/09/2020 07:29:29             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:29:29             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv4 / nvgre tni is 3079 / eth dst is 00:11:22:33:44:66  / end actions pf / queue index 0 /  end
04/09/2020 07:29:29             dut.10.240.183.141: 
04/09/2020 07:29:29                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204569.7450533 root@10.240.183.89:/tmp/tester/
04/09/2020 07:29:31                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204569.7450533 root@10.240.183.89:/tmp/tester/
04/09/2020 07:29:33                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204569.7450533
04/09/2020 07:29:34                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=62, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31886, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=788224, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:29:38           TestGeneric_flow_api: vf0: 
04/09/2020 07:29:38           TestGeneric_flow_api: vf1: 
04/09/2020 07:29:40             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:29:40             dut.10.240.183.141: stop
04/09/2020 07:29:40             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:29:40           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:29:42             dut.10.240.183.141: start
04/09/2020 07:29:42             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:29:42             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / nvgre tni is 108 / eth dst is 00:11:22:33:44:66 / vlan tci is 2432  / end actions vf id 0 / queue index 3 /  end
04/09/2020 07:29:43             dut.10.240.183.141: 
04/09/2020 07:29:43                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204583.010527 root@10.240.183.89:/tmp/tester/
04/09/2020 07:29:44                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204583.010527 root@10.240.183.89:/tmp/tester/
04/09/2020 07:29:46                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204583.010527
04/09/2020 07:29:47                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=66, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31882, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=27648, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=2432, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:29:51           TestGeneric_flow_api: vf0: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:29:51           TestGeneric_flow_api: vf1: 
04/09/2020 07:29:53             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:29:53             dut.10.240.183.141: stop
04/09/2020 07:29:53             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:29:53           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=80 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:29:55             dut.10.240.183.141: start
04/09/2020 07:29:55             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:29:56             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv4 / nvgre tni is 2554 / eth dst is 00:11:22:33:44:66  / end actions vf id 1 / queue index 1 /  end
04/09/2020 07:29:56             dut.10.240.183.141: 
04/09/2020 07:29:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204596.178703 root@10.240.183.89:/tmp/tester/
04/09/2020 07:29:58                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204596.178703 root@10.240.183.89:/tmp/tester/
04/09/2020 07:29:59                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204596.178703
04/09/2020 07:30:00                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=62, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31886, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=653824, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:30:04           TestGeneric_flow_api: vf0: 
04/09/2020 07:30:04           TestGeneric_flow_api: vf1: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0x1
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:06             dut.10.240.183.141: 
testpmd> port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:06             dut.10.240.183.141: stop
04/09/2020 07:30:07             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:30:07           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=76 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:09             dut.10.240.183.141: start
04/09/2020 07:30:09             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:30:09                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204609.3977373 root@10.240.183.89:/tmp/tester/
04/09/2020 07:30:11                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204609.3977373 root@10.240.183.89:/tmp/tester/
04/09/2020 07:30:13                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204609.3977373
04/09/2020 07:30:13                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=106, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31842, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=256, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=1, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:30:18           TestGeneric_flow_api: vf0: 
04/09/2020 07:30:18           TestGeneric_flow_api: vf1: 
04/09/2020 07:30:20             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=120 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:20             dut.10.240.183.141: stop
04/09/2020 07:30:20             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
04/09/2020 07:30:20           TestGeneric_flow_api: pf: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=120 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:22             dut.10.240.183.141: start
04/09/2020 07:30:22             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:30:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204622.5656092 root@10.240.183.89:/tmp/tester/
04/09/2020 07:30:24                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204622.5656092 root@10.240.183.89:/tmp/tester/
04/09/2020 07:30:26                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204622.5656092
04/09/2020 07:30:27                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=102, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31846, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=788224, seqence_number=None)/Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:30:31           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=116 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:31           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=116 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:33             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=116 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:33             dut.10.240.183.141: stop
04/09/2020 07:30:33             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:30:33           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=116 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:35             dut.10.240.183.141: start
04/09/2020 07:30:35             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:30:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204635.7382655 root@10.240.183.89:/tmp/tester/
04/09/2020 07:30:37                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204635.7382655 root@10.240.183.89:/tmp/tester/
04/09/2020 07:30:39                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204635.7382655
04/09/2020 07:30:40                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=106, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31842, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=27648, seqence_number=None)/Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2432, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:30:44           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=120 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:44           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=120 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:46             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=120 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:46             dut.10.240.183.141: stop
04/09/2020 07:30:46             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:30:46           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=120 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER_VLAN INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=18 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:48             dut.10.240.183.141: start
04/09/2020 07:30:48             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:30:48                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204648.85266 root@10.240.183.89:/tmp/tester/
04/09/2020 07:30:50                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204648.85266 root@10.240.183.89:/tmp/tester/
04/09/2020 07:30:52                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204648.85266
04/09/2020 07:30:53                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=102, id=1, flags=0, frag=0, ttl=64, proto=47, chksum=31846, src='127.0.0.1', dst='127.0.0.1')/GRE(chksum_present=0, routing_present=0, key_present=1, seqnum_present=0, strict_route_source=0, recursion_control=0, flags=0, version=0, proto=25944, chksum=None, offset=None, key=653824, seqence_number=None)/Ether(dst='00:11:22:33:44:66', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:30:57           TestGeneric_flow_api: vf0: 
04/09/2020 07:30:57           TestGeneric_flow_api: vf1: 
04/09/2020 07:30:59             dut.10.240.183.141: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=116 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:30:59             dut.10.240.183.141: stop
04/09/2020 07:30:59             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

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

  +++++++++++++++ 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.
04/09/2020 07:30:59           TestGeneric_flow_api: pf: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=116 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 TUNNEL_NVGRE INNER_L2_ETHER INNER_L3_IPV4 INNER_L4_TCP  - l2_len=14 - l3_len=20 - tunnel_len=8 - inner_l2_len=14 - inner_l3_len=20 - inner_l4_len=20 - Receive queue=0x3
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:31:01             dut.10.240.183.141: start
04/09/2020 07:31:01             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:31:01             dut.10.240.183.141: flow list 0
04/09/2020 07:31:02             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 NVGRE ETH => PF QUEUE
1	0	0	i--	ETH IPV4 NVGRE ETH => PF QUEUE
2	0	0	i--	ETH IPV4 NVGRE ETH VLAN => PF QUEUE
3	0	0	i--	ETH IPV4 NVGRE ETH VLAN => PF QUEUE
4	0	0	i--	ETH IPV4 NVGRE ETH => PF QUEUE
5	0	0	i--	ETH IPV4 NVGRE ETH VLAN => VF QUEUE
6	0	0	i--	ETH IPV4 NVGRE ETH => VF QUEUE
04/09/2020 07:31:02             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:31:02             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:31:02             dut.10.240.183.141: flow list 0
04/09/2020 07:31:02             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 NVGRE ETH => PF QUEUE
2	0	0	i--	ETH IPV4 NVGRE ETH VLAN => PF QUEUE
3	0	0	i--	ETH IPV4 NVGRE ETH VLAN => PF QUEUE
4	0	0	i--	ETH IPV4 NVGRE ETH => PF QUEUE
5	0	0	i--	ETH IPV4 NVGRE ETH VLAN => VF QUEUE
6	0	0	i--	ETH IPV4 NVGRE ETH => VF QUEUE
04/09/2020 07:31:02             dut.10.240.183.141: flow flush 0
04/09/2020 07:31:02             dut.10.240.183.141: 
04/09/2020 07:31:02             dut.10.240.183.141: flow list 0
04/09/2020 07:31:02             dut.10.240.183.141: 
04/09/2020 07:31:02           TestGeneric_flow_api: Test Case test_tunnel_filter_nvgre Result PASSED:
04/09/2020 07:31:09             dut.10.240.183.141: quit
04/09/2020 07:31:09             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
04/09/2020 07:31:14             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:31:15           TestGeneric_flow_api: Test Case test_tunnel_filter_vxlan Begin
04/09/2020 07:31:15             dut.10.240.183.141: 
04/09/2020 07:31:15                         tester: 
04/09/2020 07:31:15             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/09/2020 07:31:17             dut.10.240.183.141: modprobe uio
04/09/2020 07:31:17             dut.10.240.183.141: 
04/09/2020 07:31:17             dut.10.240.183.141: insmod ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko
04/09/2020 07:31:17             dut.10.240.183.141: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-gcc/kmod/igb_uio.ko: File exists
04/09/2020 07:31:17             dut.10.240.183.141: modprobe vfio-pci
04/09/2020 07:31:17             dut.10.240.183.141: 
04/09/2020 07:31:22             dut.10.240.183.141: x86_64-native-linuxapp-gcc/app/testpmd  -l 1,2,3,4,5,6,7,8 -n 4 -w 0000:84:00.0  --file-prefix=pf_8435_20200904065301   --socket-mem 1024,1024 --legacy-mem  -- -i --disable-rss --rxq=16 --txq=16
04/09/2020 07:31:28             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/pf_8435_20200904065301/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:84:00.0 (socket 1)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=203456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=203456, 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)
Port 0: 68:05:CA:30:6A:80
Checking link statuses...
Done
04/09/2020 07:31:38             dut.10.240.183.141: rx_vxlan_port add 4789 0
04/09/2020 07:31:38             dut.10.240.183.141: 
04/09/2020 07:31:38             dut.10.240.183.141: set fwd rxonly
04/09/2020 07:31:38             dut.10.240.183.141: 
Set rxonly packet forwarding mode
04/09/2020 07:31:38             dut.10.240.183.141: set verbose 1
04/09/2020 07:31:38             dut.10.240.183.141: 
Change verbose level from 0 to 1
04/09/2020 07:31:38             dut.10.240.183.141: start
04/09/2020 07:31:38             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:31:56             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan / eth dst is 00:11:22:33:44:66  / end actions pf / queue index 0 /  end
04/09/2020 07:31:57             dut.10.240.183.141: 
04/09/2020 07:31:57                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204717.0071607 root@10.240.183.89:/tmp/tester/
04/09/2020 07:31:58                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204717.0071607 root@10.240.183.89:/tmp/tester/
04/09/2020 07:32:00                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204717.0071607
04/09/2020 07:32:01                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=70, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31908, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=50, chksum=20233)/VXLAN(flags=12, reserved0=0, NextProtocol=3, reserved1=None, gpflags=None, gpid=None, vni=0, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:32:05           TestGeneric_flow_api: vf0:  
04/09/2020 07:32:05           TestGeneric_flow_api: vf1:  
04/09/2020 07:32:07             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 0 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:32:07             dut.10.240.183.141: stop
04/09/2020 07:32:07             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:32:07           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 0 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:32:09             dut.10.240.183.141: start
04/09/2020 07:32:09             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:32:10             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan vni is 2916 / eth dst is 00:11:22:33:44:66  / end actions pf / queue index 2 /  end
04/09/2020 07:32:10             dut.10.240.183.141: 
04/09/2020 07:32:10                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204730.3297133 root@10.240.183.89:/tmp/tester/
04/09/2020 07:32:12                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204730.3297133 root@10.240.183.89:/tmp/tester/
04/09/2020 07:32:14                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204730.3297133
04/09/2020 07:32:14                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=70, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31908, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=50, chksum=61184)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=2916, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:32:19           TestGeneric_flow_api: vf0: 
04/09/2020 07:32:19           TestGeneric_flow_api: vf1: 
04/09/2020 07:32:21             dut.10.240.183.141: 
testpmd> port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2916 - Receive queue=0x2
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:32:21             dut.10.240.183.141: stop
04/09/2020 07:32:21             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:32:21           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2916 - Receive queue=0x2
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:32:23             dut.10.240.183.141: start
04/09/2020 07:32:23             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:32:23             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan / eth dst is 00:11:22:33:44:66 / vlan tci is 2628  / end actions pf / queue index 6 /  end
04/09/2020 07:32:23             dut.10.240.183.141: 
04/09/2020 07:32:23                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204743.597813 root@10.240.183.89:/tmp/tester/
04/09/2020 07:32:25                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204743.597813 root@10.240.183.89:/tmp/tester/
04/09/2020 07:32:27                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204743.597813
04/09/2020 07:32:28                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=74, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31904, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=54, chksum=21437)/VXLAN(flags=12, reserved0=0, NextProtocol=3, reserved1=None, gpflags=None, gpid=None, vni=0, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=2628, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:32:32           TestGeneric_flow_api: vf0: 
04/09/2020 07:32:32           TestGeneric_flow_api: vf1: 
04/09/2020 07:32:34             dut.10.240.183.141: 
testpmd> port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 0 - Receive queue=0x6
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:32:34             dut.10.240.183.141: stop
04/09/2020 07:32:34             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:32:34           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 0 - Receive queue=0x6
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:32:36             dut.10.240.183.141: start
04/09/2020 07:32:36             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:32:36             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan vni is 1220 / eth dst is 00:11:22:33:44:66 / vlan tci is 1007  / end actions pf / queue index 14 /  end
04/09/2020 07:32:36             dut.10.240.183.141: 
04/09/2020 07:32:36                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599204756.8137655 root@10.240.183.89:/tmp/tester/
04/09/2020 07:32:38                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599204756.8137655 root@10.240.183.89:/tmp/tester/
04/09/2020 07:32:40                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599204756.8137655
04/09/2020 07:32:41                         tester: packet ready for sending...
Ether(dst='68:05:ca:30:6a:80', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=74, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31904, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=54, chksum=39440)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=1220, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=1007, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:32:45           TestGeneric_flow_api: vf0: 
04/09/2020 07:32:45           TestGeneric_flow_api: vf1: 
04/09/2020 07:32:47             dut.10.240.183.141: 
testpmd> port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1220 - Receive queue=0xe
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:32:47             dut.10.240.183.141: stop
04/09/2020 07:32:47             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 0/Queue=14 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:32:47           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=68:05:CA:30:6A:80 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 1220 - Receive queue=0xe
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:32:49             dut.10.240.183.141: start
04/09/2020 07:32:49             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:36:40             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv4 / udp / vxlan vni is 3211 / eth dst is 00:11:22:33:44:66  / end actions pf / queue index 13 /  end
04/09/2020 07:36:41             dut.10.240.183.141: 
04/09/2020 07:36:41                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599205001.037247 root@10.240.183.89:/tmp/tester/
04/09/2020 07:36:42                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599205001.037247 root@10.240.183.89:/tmp/tester/
04/09/2020 07:36:44                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599205001.037247
04/09/2020 07:36:45                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=70, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31908, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=50, chksum=51199)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=3211, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:36:49           TestGeneric_flow_api: vf0: 
04/09/2020 07:36:49           TestGeneric_flow_api: vf1: 
04/09/2020 07:36:51             dut.10.240.183.141: 
testpmd> port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 3211 - Receive queue=0xd
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:36:51             dut.10.240.183.141: stop
04/09/2020 07:36:51             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:36:51           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 3211 - Receive queue=0xd
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:36:53             dut.10.240.183.141: start
04/09/2020 07:36:53             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:36:54             dut.10.240.183.141: flow create 0 ingress pattern eth / ipv4 / udp / vxlan vni is 2475 / eth dst is 00:11:22:33:44:66 / vlan tci is 2029  / end actions vf id 0 / queue index 0 /  end
04/09/2020 07:36:54             dut.10.240.183.141: 
04/09/2020 07:36:54                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599205014.2629933 root@10.240.183.89:/tmp/tester/
04/09/2020 07:36:56                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599205014.2629933 root@10.240.183.89:/tmp/tester/
04/09/2020 07:36:57                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599205014.2629933
04/09/2020 07:36:58                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=74, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31904, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=54, chksum=44813)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=2475, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=33024)/Dot1Q(prio=0, id=0, vlan=2029, type=0)/Padding(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:37:03           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2475 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:03           TestGeneric_flow_api: vf1: 
04/09/2020 07:37:05             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2475 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:05             dut.10.240.183.141: stop
04/09/2020 07:37:05             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:37:05           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=88 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2475 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:07             dut.10.240.183.141: start
04/09/2020 07:37:07             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:37:07             dut.10.240.183.141: flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv4 / udp / vxlan vni is 2360 / eth dst is 00:11:22:33:44:66  / end actions vf id 1 / queue index 1 /  end
04/09/2020 07:37:07             dut.10.240.183.141: 
04/09/2020 07:37:07                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599205027.5252512 root@10.240.183.89:/tmp/tester/
04/09/2020 07:37:09                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599205027.5252512 root@10.240.183.89:/tmp/tester/
04/09/2020 07:37:11                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599205027.5252512
04/09/2020 07:37:12                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=70, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31908, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=50, chksum=6915)/VXLAN(flags=8, reserved0=None, NextProtocol=None, reserved1=0, gpflags=None, gpid=None, vni=2360, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:0c:29:67:ac:3e', type=36864)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:37:16           TestGeneric_flow_api: vf0: 
04/09/2020 07:37:16           TestGeneric_flow_api: vf1: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2360 - Receive queue=0x1
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:18             dut.10.240.183.141: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2360 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:18             dut.10.240.183.141: stop
04/09/2020 07:37:18             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:37:18           TestGeneric_flow_api: pf: 
testpmd> port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=84 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2360 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:20             dut.10.240.183.141: start
04/09/2020 07:37:20             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:37:20                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599205040.7349906 root@10.240.183.89:/tmp/tester/
04/09/2020 07:37:22                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599205040.7349906 root@10.240.183.89:/tmp/tester/
04/09/2020 07:37:24                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599205040.7349906
04/09/2020 07:37:25                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=114, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31864, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=94, chksum=56893)/VXLAN(flags=12, reserved0=0, NextProtocol=3, reserved1=None, gpflags=None, gpid=None, vni=0, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=11, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:37:29           TestGeneric_flow_api: vf0: 
04/09/2020 07:37:29           TestGeneric_flow_api: vf1: 
04/09/2020 07:37:31             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=128 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 0 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:31             dut.10.240.183.141: stop
04/09/2020 07:37:31             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:37:31           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=128 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 0 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:33             dut.10.240.183.141: start
04/09/2020 07:37:33             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:37:34                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599205054.0063577 root@10.240.183.89:/tmp/tester/
04/09/2020 07:37:35                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599205054.0063577 root@10.240.183.89:/tmp/tester/
04/09/2020 07:37:37                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599205054.0063577
04/09/2020 07:37:38                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=110, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31868, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=90, chksum=23104)/VXLAN(flags=12, reserved0=0, NextProtocol=3, reserved1=None, gpflags=None, gpid=None, vni=5, reserved2=0)/Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:37:42           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=124 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 5 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:42           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=124 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 5 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:44             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=124 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 5 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:44             dut.10.240.183.141: stop
04/09/2020 07:37:44             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:37:44           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=124 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 5 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:46             dut.10.240.183.141: start
04/09/2020 07:37:46             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:37:47                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599205067.1763625 root@10.240.183.89:/tmp/tester/
04/09/2020 07:37:49                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599205067.1763625 root@10.240.183.89:/tmp/tester/
04/09/2020 07:37:50                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599205067.1763625
04/09/2020 07:37:51                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:55', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=114, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31864, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=94, chksum=11073)/VXLAN(flags=12, reserved0=0, NextProtocol=3, reserved1=None, gpflags=None, gpid=None, vni=2475, reserved2=0)/Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=33024)/Dot1Q(prio=0, id=0, vlan=2029, type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:37:55           TestGeneric_flow_api: vf0: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=128 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2475 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:55           TestGeneric_flow_api: vf1: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=128 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2475 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:57             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=128 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2475 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:37:57             dut.10.240.183.141: stop
04/09/2020 07:37:58             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

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

  ---------------------- Forward statistics for port 0  ----------------------
  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.
04/09/2020 07:37:58           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=128 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER_VLAN INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2475 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:38:00             dut.10.240.183.141: start
04/09/2020 07:38:00             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:38:00                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.pcap1599205080.4523866 root@10.240.183.89:/tmp/tester/
04/09/2020 07:38:02                         tester: scp -v /home/autoregression/zj/dts/output/tmp/pcap/scapy_ens193f0.cmd1599205080.4523866 root@10.240.183.89:/tmp/tester/
04/09/2020 07:38:04                         tester: python3 /tmp/tester/scapy_ens193f0.cmd1599205080.4523866
04/09/2020 07:38:04                         tester: packet ready for sending...
Ether(dst='00:11:22:33:44:77', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=110, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31868, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=4789, dport=4789, len=90, chksum=10056)/VXLAN(flags=12, reserved0=0, NextProtocol=3, reserved1=None, gpflags=None, gpid=None, vni=2360, reserved2=0)/Ether(dst='00:11:22:33:44:66', src='00:00:00:00:00:00', type=2048)/IP(version=4, ihl=5, tos=0, len=60, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31929, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=56499, urgptr=0)/Raw(load=b'xxxxxxxxxxxxxxxxxxxx')
04/09/2020 07:38:09           TestGeneric_flow_api: vf0: 
04/09/2020 07:38:09           TestGeneric_flow_api: vf1: 
04/09/2020 07:38:11             dut.10.240.183.141: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=124 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2360 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:38:11             dut.10.240.183.141: stop
04/09/2020 07:38:11             dut.10.240.183.141: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  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
  ----------------------------------------------------------------------------

  +++++++++++++++ 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.
04/09/2020 07:38:11           TestGeneric_flow_api: pf: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:77 - type=0x0800 - length=124 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GRENAT INNER_L2_ETHER INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =24721, Destination UDP port =4789, VNI = 2360 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

04/09/2020 07:38:13             dut.10.240.183.141: start
04/09/2020 07:38:13             dut.10.240.183.141: 
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=0/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=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/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=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=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=1024 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
04/09/2020 07:38:13             dut.10.240.183.141: flow list 0
04/09/2020 07:38:13             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP VXLAN ETH => PF QUEUE
1	0	0	i--	ETH IPV4 UDP VXLAN ETH => PF QUEUE
2	0	0	i--	ETH IPV4 UDP VXLAN ETH VLAN => PF QUEUE
3	0	0	i--	ETH IPV4 UDP VXLAN ETH VLAN => PF QUEUE
4	0	0	i--	ETH IPV4 UDP VXLAN ETH => PF QUEUE
5	0	0	i--	ETH IPV4 UDP VXLAN ETH VLAN => VF QUEUE
6	0	0	i--	ETH IPV4 UDP VXLAN ETH => VF QUEUE
04/09/2020 07:38:13             dut.10.240.183.141: flow destroy 0 rule 0
04/09/2020 07:38:13             dut.10.240.183.141: 
Flow rule #0 destroyed
04/09/2020 07:38:13             dut.10.240.183.141: flow list 0
04/09/2020 07:38:13             dut.10.240.183.141: 
ID	Group	Prio	Attr	Rule
1	0	0	i--	ETH IPV4 UDP VXLAN ETH => PF QUEUE
2	0	0	i--	ETH IPV4 UDP VXLAN ETH VLAN => PF QUEUE
3	0	0	i--	ETH IPV4 UDP VXLAN ETH VLAN => PF QUEUE
4	0	0	i--	ETH IPV4 UDP VXLAN ETH => PF QUEUE
5	0	0	i--	ETH IPV4 UDP VXLAN ETH VLAN => VF QUEUE
6	0	0	i--	ETH IPV4 UDP VXLAN ETH => VF QUEUE
04/09/2020 07:38:13             dut.10.240.183.141: flow flush 0
04/09/2020 07:38:13             dut.10.240.183.141: 
04/09/2020 07:38:13             dut.10.240.183.141: flow list 0
04/09/2020 07:38:13             dut.10.240.183.141: 
04/09/2020 07:38:13           TestGeneric_flow_api: Test Case test_tunnel_filter_vxlan Result PASSED:
04/09/2020 07:38:20             dut.10.240.183.141: quit
04/09/2020 07:38:21             dut.10.240.183.141: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
04/09/2020 07:38:26             dut.10.240.183.141: kill_all: called by dut and prefix list has value.
04/09/2020 07:38:26                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api

  reply	other threads:[~2020-09-04  9:19 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-04  8:56 Zhou, Jun
2020-09-04  9:19 ` Zhou, JunX W [this message]
2020-09-10  1:02 ` Tu, Lijuan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f851eb439ec34d228eaeec4aee50d435@intel.com \
    --to=junx.w.zhou@intel.com \
    --cc=dts@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).