test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1] tests/l3fwdacl:Increase the time of the default timeout.
@ 2019-10-23  3:58 zhu,shuai
  2019-10-23  4:06 ` Zhu, WenhuiX
  2019-11-04  2:42 ` Tu, Lijuan
  0 siblings, 2 replies; 3+ messages in thread
From: zhu,shuai @ 2019-10-23  3:58 UTC (permalink / raw)
  To: dts; +Cc: zhu,shuai

Increase the default timeout time in the send_pkt method.

Signed-off-by: zhu,shuai <shuaix.zhu@intel.com>
---
 tests/TestSuite_l3fwdacl.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/TestSuite_l3fwdacl.py b/tests/TestSuite_l3fwdacl.py
index dce37de..564ceb2 100644
--- a/tests/TestSuite_l3fwdacl.py
+++ b/tests/TestSuite_l3fwdacl.py
@@ -272,7 +272,7 @@ class TestL3fwdacl(TestCase):
         inst = self.tester.tcpdump_sniff_packets(rx_interface, filters=filters)
         pkt = packet.Packet()
         pkt.append_pkt(ethernet_str)
-        pkt.send_pkt(crb=self.tester, tx_port=tx_interface)
+        pkt.send_pkt(crb=self.tester, tx_port=tx_interface, timeout=30)
         out = self.remove_dhcp_from_revpackets(inst)
         return len(out)
 
@@ -302,7 +302,7 @@ class TestL3fwdacl(TestCase):
         inst = self.tester.tcpdump_sniff_packets(rx_interface, filters=fil)
         pkt = packet.Packet()
         pkt.append_pkt(ethernet_str)
-        pkt.send_pkt(crb=self.tester, tx_port=tx_interface)
+        pkt.send_pkt(crb=self.tester, tx_port=tx_interface, timeout=30)
 
         out = self.remove_dhcp_from_revpackets(inst)
         return len(out)
@@ -320,7 +320,7 @@ class TestL3fwdacl(TestCase):
         inst = self.tester.tcpdump_sniff_packets(rx_interface, filters=filters)
         pkt = packet.Packet()
         pkt.append_pkt(etherStr)
-        pkt.send_pkt(crb=self.tester, tx_port=tx_interface)
+        pkt.send_pkt(crb=self.tester, tx_port=tx_interface, timeout=30)
         out = self.remove_dhcp_from_revpackets(inst)
         return len(out)
 
@@ -336,7 +336,7 @@ class TestL3fwdacl(TestCase):
         inst = self.tester.tcpdump_sniff_packets(rx_interface, filters=fil)
         pkt = packet.Packet()
         pkt.append_pkt(etherStr)
-        pkt.send_pkt(crb=self.tester, tx_port=tx_interface)
+        pkt.send_pkt(crb=self.tester, tx_port=tx_interface, timeout=30)
 
         out = self.remove_dhcp_from_revpackets(inst)
         return len(out)
-- 
2.17.2


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

* Re: [dts] [PATCH V1] tests/l3fwdacl:Increase the time of the default timeout.
  2019-10-23  3:58 [dts] [PATCH V1] tests/l3fwdacl:Increase the time of the default timeout zhu,shuai
@ 2019-10-23  4:06 ` Zhu, WenhuiX
  2019-11-04  2:42 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Zhu, WenhuiX @ 2019-10-23  4:06 UTC (permalink / raw)
  To: Zhu, ShuaiX, dts; +Cc: Zhu, ShuaiX, Zhu, WenhuiX

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


Tested-by: Zhu, WenhuiX <wenhuix.zhu@intel.com>

-----Original Message-----
From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of zhu,shuai
Sent: Wednesday, October 23, 2019 11:59 AM
To: dts@dpdk.org
Cc: Zhu, ShuaiX <shuaix.zhu@intel.com>
Subject: [dts] [PATCH V1] tests/l3fwdacl:Increase the time of the default timeout.

Increase the default timeout time in the send_pkt method.

Signed-off-by: zhu,shuai <shuaix.zhu@intel.com>
---
 tests/TestSuite_l3fwdacl.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/TestSuite_l3fwdacl.py b/tests/TestSuite_l3fwdacl.py index dce37de..564ceb2 100644
--- a/tests/TestSuite_l3fwdacl.py
+++ b/tests/TestSuite_l3fwdacl.py
@@ -272,7 +272,7 @@ class TestL3fwdacl(TestCase):
         inst = self.tester.tcpdump_sniff_packets(rx_interface, filters=filters)
         pkt = packet.Packet()
         pkt.append_pkt(ethernet_str)
-        pkt.send_pkt(crb=self.tester, tx_port=tx_interface)
+        pkt.send_pkt(crb=self.tester, tx_port=tx_interface, timeout=30)
         out = self.remove_dhcp_from_revpackets(inst)
         return len(out)
 
@@ -302,7 +302,7 @@ class TestL3fwdacl(TestCase):
         inst = self.tester.tcpdump_sniff_packets(rx_interface, filters=fil)
         pkt = packet.Packet()
         pkt.append_pkt(ethernet_str)
-        pkt.send_pkt(crb=self.tester, tx_port=tx_interface)
+        pkt.send_pkt(crb=self.tester, tx_port=tx_interface, timeout=30)
 
         out = self.remove_dhcp_from_revpackets(inst)
         return len(out)
@@ -320,7 +320,7 @@ class TestL3fwdacl(TestCase):
         inst = self.tester.tcpdump_sniff_packets(rx_interface, filters=filters)
         pkt = packet.Packet()
         pkt.append_pkt(etherStr)
-        pkt.send_pkt(crb=self.tester, tx_port=tx_interface)
+        pkt.send_pkt(crb=self.tester, tx_port=tx_interface, timeout=30)
         out = self.remove_dhcp_from_revpackets(inst)
         return len(out)
 
@@ -336,7 +336,7 @@ class TestL3fwdacl(TestCase):
         inst = self.tester.tcpdump_sniff_packets(rx_interface, filters=fil)
         pkt = packet.Packet()
         pkt.append_pkt(etherStr)
-        pkt.send_pkt(crb=self.tester, tx_port=tx_interface)
+        pkt.send_pkt(crb=self.tester, tx_port=tx_interface, timeout=30)
 
         out = self.remove_dhcp_from_revpackets(inst)
         return len(out)
--
2.17.2


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

22/10/2019 10:59:42                            dts: 
TEST SUITE : TestL3fwdacl
22/10/2019 10:59:42                            dts: NIC :        fortville_eagle
22/10/2019 10:59:42             dut.10.240.176.196: 
22/10/2019 10:59:43                         tester: 
22/10/2019 10:59:43             dut.10.240.176.196: export RTE_SDK=`pwd`
22/10/2019 10:59:43             dut.10.240.176.196: 
22/10/2019 10:59:43             dut.10.240.176.196: rm -rf ./app/test/test_resource_c.res.o
22/10/2019 10:59:43             dut.10.240.176.196: 
22/10/2019 10:59:43             dut.10.240.176.196: rm -rf ./app/test/test_resource_tar.res.o
22/10/2019 10:59:43             dut.10.240.176.196: 
22/10/2019 10:59:43             dut.10.240.176.196: rm -rf ./app/test/test_pci_sysfs.res.o
22/10/2019 10:59:43             dut.10.240.176.196: 
22/10/2019 10:59:43             dut.10.240.176.196: make -j 38 -C examples/l3fwd-acl 
22/10/2019 10:59:45             dut.10.240.176.196: make: Entering directory '/root/dpdk/examples/l3fwd-acl'
/bin/sh: 1: pkg-config: not found
/bin/sh: 1: pkg-config: not found
  CC main.o
  LD l3fwd-acl
  INSTALL-APP l3fwd-acl
  INSTALL-MAP l3fwd-acl.map
make: Leaving directory '/root/dpdk/examples/l3fwd-acl'
22/10/2019 10:59:45                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Begin
22/10/2019 10:59:45             dut.10.240.176.196: 
22/10/2019 10:59:45                         tester: 
22/10/2019 10:59:45             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 10:59:45             dut.10.240.176.196: 
22/10/2019 10:59:45             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
22/10/2019 10:59:45             dut.10.240.176.196: 
22/10/2019 10:59:45             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
22/10/2019 10:59:45             dut.10.240.176.196: 
22/10/2019 10:59:45             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
22/10/2019 10:59:45             dut.10.240.176.196: 
22/10/2019 10:59:45             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 10:59:46             dut.10.240.176.196: 
22/10/2019 10:59:46             dut.10.240.176.196: echo @200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
22/10/2019 10:59:46             dut.10.240.176.196: 
22/10/2019 10:59:46             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
22/10/2019 10:59:46             dut.10.240.176.196: 
22/10/2019 10:59:46             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
22/10/2019 10:59:46             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
i40e_GLQF_reg_init(): i40e device 0000:06:00.0 changed global register [0x002689a0]. original: 0x00000000, new: 0x00000029 
i40e_GLQF_reg_init(): i40e device 0000:06:00.0 changed global register [0x00268ca4]. original: 0x00001840, new: 0x00009420 
i40e_aq_debug_write_global_register(): i40e device 0000:06:00.0 changed global register [0x0026c7a0]. original: 0xa8, after: 0x28
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
22/10/2019 10:59:48                         tester: ls -d /tmp/tester/
22/10/2019 10:59:49                         tester: /tmp/tester/
22/10/2019 10:59:49                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 10:59:49                         tester: 
22/10/2019 10:59:57                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713197.38 root@10.240.176.173:/tmp/tester/
22/10/2019 10:59:58                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713197.38 root@10.240.176.173:/tmp/tester/
22/10/2019 11:00:00                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713197.38
22/10/2019 11:00:01                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
22/10/2019 11:00:06                         tester: ls -d /tmp/tester/
22/10/2019 11:00:07                         tester: /tmp/tester/
22/10/2019 11:00:07                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:00:07                         tester: 
22/10/2019 11:00:15                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713215.21 root@10.240.176.173:/tmp/tester/
22/10/2019 11:00:16                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713215.21 root@10.240.176.173:/tmp/tester/
22/10/2019 11:00:17                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713215.21
22/10/2019 11:00:18                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.1', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
22/10/2019 11:00:22             dut.10.240.176.196: ^C
22/10/2019 11:00:22             dut.10.240.176.196: 
22/10/2019 11:00:22             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:00:22             dut.10.240.176.196: 
22/10/2019 11:00:22             dut.10.240.176.196: echo @0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
22/10/2019 11:00:22             dut.10.240.176.196: 
22/10/2019 11:00:22             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
22/10/2019 11:00:22             dut.10.240.176.196: 
22/10/2019 11:00:22             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
22/10/2019 11:00:23             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
22/10/2019 11:00:25                         tester: ls -d /tmp/tester/
22/10/2019 11:00:25                         tester: /tmp/tester/
22/10/2019 11:00:25                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:00:25                         tester: 
22/10/2019 11:00:33                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713233.83 root@10.240.176.173:/tmp/tester/
22/10/2019 11:00:35                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713233.83 root@10.240.176.173:/tmp/tester/
22/10/2019 11:00:36                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713233.83
22/10/2019 11:00:37                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
22/10/2019 11:00:43                         tester: ls -d /tmp/tester/
22/10/2019 11:00:43                         tester: /tmp/tester/
22/10/2019 11:00:43                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:00:43                         tester: 
22/10/2019 11:00:51                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713251.41 root@10.240.176.173:/tmp/tester/
22/10/2019 11:00:52                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713251.41 root@10.240.176.173:/tmp/tester/
22/10/2019 11:00:54                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713251.41
22/10/2019 11:00:54                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.2', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
22/10/2019 11:00:58             dut.10.240.176.196: ^C
22/10/2019 11:00:58             dut.10.240.176.196: 
22/10/2019 11:00:58             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:00:58             dut.10.240.176.196: 
22/10/2019 11:00:58             dut.10.240.176.196: echo @0.0.0.0/0 0.0.0.0/0 11 : 11 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
22/10/2019 11:00:58             dut.10.240.176.196: 
22/10/2019 11:00:58             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
22/10/2019 11:00:58             dut.10.240.176.196: 
22/10/2019 11:00:58             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
22/10/2019 11:00:59             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 0.0.0.0/0 11 : 11 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e0826c0
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
22/10/2019 11:01:01                         tester: ls -d /tmp/tester/
22/10/2019 11:01:01                         tester: /tmp/tester/
22/10/2019 11:01:01                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:01:01                         tester: 
22/10/2019 11:01:10                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713270.06 root@10.240.176.173:/tmp/tester/
22/10/2019 11:01:11                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713270.06 root@10.240.176.173:/tmp/tester/
22/10/2019 11:01:12                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713270.06
22/10/2019 11:01:13                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
22/10/2019 11:01:19                         tester: ls -d /tmp/tester/
22/10/2019 11:01:19                         tester: /tmp/tester/
22/10/2019 11:01:19                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:01:19                         tester: 
22/10/2019 11:01:27                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713287.61 root@10.240.176.173:/tmp/tester/
22/10/2019 11:01:29                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713287.61 root@10.240.176.173:/tmp/tester/
22/10/2019 11:01:30                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713287.61
22/10/2019 11:01:31                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=0, len=8, chksum=54114)
.
Sent 1 packets.
22/10/2019 11:01:34             dut.10.240.176.196: ^C
22/10/2019 11:01:34             dut.10.240.176.196: 
22/10/2019 11:01:34             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:01:34             dut.10.240.176.196: 
22/10/2019 11:01:34             dut.10.240.176.196: echo @0.0.0.0/0 0.0.0.0/0 0 : 65535 101 : 101 0x00/0x00  >> /root/rule_ipv4.db
22/10/2019 11:01:35             dut.10.240.176.196: 
22/10/2019 11:01:35             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
22/10/2019 11:01:35             dut.10.240.176.196: 
22/10/2019 11:01:35             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
22/10/2019 11:01:35             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 101 : 101 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e0826c0
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
22/10/2019 11:01:37                         tester: ls -d /tmp/tester/
22/10/2019 11:01:38                         tester: /tmp/tester/
22/10/2019 11:01:38                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:01:38                         tester: 
22/10/2019 11:01:46                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713306.23 root@10.240.176.173:/tmp/tester/
22/10/2019 11:01:47                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713306.23 root@10.240.176.173:/tmp/tester/
22/10/2019 11:01:49                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713306.23
22/10/2019 11:01:49                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
22/10/2019 11:01:55                         tester: ls -d /tmp/tester/
22/10/2019 11:01:55                         tester: /tmp/tester/
22/10/2019 11:01:55                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:01:55                         tester: 
22/10/2019 11:02:03                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713323.87 root@10.240.176.173:/tmp/tester/
22/10/2019 11:02:05                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713323.87 root@10.240.176.173:/tmp/tester/
22/10/2019 11:02:06                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713323.87
22/10/2019 11:02:07                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=11, len=8, chksum=54204)
.
Sent 1 packets.
22/10/2019 11:02:11             dut.10.240.176.196: ^C
22/10/2019 11:02:11             dut.10.240.176.196: 
22/10/2019 11:02:11                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Result FAILED: 'Rx port not receive expected packet'
22/10/2019 11:02:11                   TestL3fwdacl: Test Case test_l3fwdacl_exact_route Begin
22/10/2019 11:02:11             dut.10.240.176.196:  
22/10/2019 11:02:11                         tester: 
22/10/2019 11:02:11             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:02:11             dut.10.240.176.196: 
22/10/2019 11:02:11             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
22/10/2019 11:02:11             dut.10.240.176.196: 
22/10/2019 11:02:11             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
22/10/2019 11:02:11             dut.10.240.176.196: 
22/10/2019 11:02:11             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
22/10/2019 11:02:11             dut.10.240.176.196: 
22/10/2019 11:02:11             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:02:11             dut.10.240.176.196: 
22/10/2019 11:02:11             dut.10.240.176.196: echo R200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x06/0xff 0 >> /root/rule_ipv4.db
22/10/2019 11:02:12             dut.10.240.176.196: 
22/10/2019 11:02:12             dut.10.240.176.196: echo R200.20.0.1/32 100.20.0.1/32 12 : 12 102 : 102 0x06/0xff 1 >> /root/rule_ipv4.db
22/10/2019 11:02:12             dut.10.240.176.196: 
22/10/2019 11:02:12             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
22/10/2019 11:02:12             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 2:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0x1 
	2:200.20.0.1/32 100.20.0.1/32 12 : 12 102 : 102 0x6/0xff 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 0:
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082500
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
22/10/2019 11:02:14                         tester: ls -d /tmp/tester/
22/10/2019 11:02:15                         tester: /tmp/tester/
22/10/2019 11:02:15                         tester: rm -rf /tmp/tester/sniff_ens160f0.pcap
22/10/2019 11:02:15                         tester: 
22/10/2019 11:02:23                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713343.32 root@10.240.176.173:/tmp/tester/
22/10/2019 11:02:24                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713343.32 root@10.240.176.173:/tmp/tester/
22/10/2019 11:02:26                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713343.32
22/10/2019 11:02:26                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=6, tos=0, dst='100.10.0.1', chksum=20153, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25436, dport=101, sport=11)
.
Sent 1 packets.
22/10/2019 11:02:32                         tester: ls -d /tmp/tester/
22/10/2019 11:02:32                         tester: /tmp/tester/
22/10/2019 11:02:32                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:02:32                         tester: 
22/10/2019 11:02:40                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713360.93 root@10.240.176.173:/tmp/tester/
22/10/2019 11:02:42                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713360.93 root@10.240.176.173:/tmp/tester/
22/10/2019 11:02:43                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713360.93
22/10/2019 11:02:44                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.20.0.1', proto=6, tos=0, dst='100.20.0.1', chksum=20133, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25414, dport=102, sport=12)
.
Sent 1 packets.
22/10/2019 11:02:48             dut.10.240.176.196: ^C
22/10/2019 11:02:48             dut.10.240.176.196: 
22/10/2019 11:02:48             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
22/10/2019 11:02:48             dut.10.240.176.196: 
22/10/2019 11:02:48             dut.10.240.176.196: echo R2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 11 : 11 101 : 101 0x06/0xff 0 >> /root/rule_ipv6.db
22/10/2019 11:02:48             dut.10.240.176.196: 
22/10/2019 11:02:48             dut.10.240.176.196: echo R2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 12 : 12 102 : 102 0x06/0xff 1 >> /root/rule_ipv6.db
22/10/2019 11:02:48             dut.10.240.176.196: 
22/10/2019 11:02:48             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
22/10/2019 11:02:49             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 2:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0x1 
	2:200.20.0.1/32 100.20.0.1/32 12 : 12 102 : 102 0x6/0xff 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 0:
L3FWDACL: IPv6 Route entries 2:
	1:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0x1 
	2:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 12 : 12 102 : 102 0x6/0xff 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082500
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
22/10/2019 11:02:51                         tester: ls -d /tmp/tester/
22/10/2019 11:02:51                         tester: /tmp/tester/
22/10/2019 11:02:51                         tester: rm -rf /tmp/tester/sniff_ens160f0.pcap
22/10/2019 11:02:51                         tester: 
22/10/2019 11:02:59                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713379.61 root@10.240.176.173:/tmp/tester/
22/10/2019 11:03:01                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713379.61 root@10.240.176.173:/tmp/tester/
22/10/2019 11:03:02                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713379.61
22/10/2019 11:03:03                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=6, src='2001:db8:85a3:8d3:1319:8a2e:370:7344', dst='2002:db8:85a3:8d3:1319:8a2e:370:7344', version=6, hlim=64, plen=20, fl=0, tc=0)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=61210, dport=101, sport=11)
.
Sent 1 packets.
22/10/2019 11:03:08                         tester: ls -d /tmp/tester/
22/10/2019 11:03:08                         tester: /tmp/tester/
22/10/2019 11:03:08                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:03:09                         tester: 
22/10/2019 11:03:17                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713397.19 root@10.240.176.173:/tmp/tester/
22/10/2019 11:03:18                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713397.19 root@10.240.176.173:/tmp/tester/
22/10/2019 11:03:19                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713397.19
22/10/2019 11:03:20                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=6, src='2001:db8:85a3:8d3:1319:8a2e:370:7344', dst='2002:db8:85a3:8d3:1319:8a2e:370:7344', version=6, hlim=64, plen=20, fl=0, tc=0)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=61208, dport=102, sport=12)
.
Sent 1 packets.
22/10/2019 11:03:24             dut.10.240.176.196: ^C
22/10/2019 11:03:24             dut.10.240.176.196: 
22/10/2019 11:03:24             dut.10.240.176.196: rm -rf  /root/rule_ipv4.db
22/10/2019 11:03:24             dut.10.240.176.196: 
22/10/2019 11:03:24             dut.10.240.176.196: rm -rf  /root/rule_ipv6.db
22/10/2019 11:03:24             dut.10.240.176.196: 
22/10/2019 11:03:24                   TestL3fwdacl: Test Case test_l3fwdacl_exact_route Result PASSED:
22/10/2019 11:03:24                   TestL3fwdacl: Test Case test_l3fwdacl_invalid Begin
22/10/2019 11:03:24             dut.10.240.176.196: 
22/10/2019 11:03:24                         tester: 
22/10/2019 11:03:24             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:03:24             dut.10.240.176.196: 
22/10/2019 11:03:24             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
22/10/2019 11:03:25             dut.10.240.176.196: 
22/10/2019 11:03:25             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
22/10/2019 11:03:25             dut.10.240.176.196: 
22/10/2019 11:03:25             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
22/10/2019 11:03:25             dut.10.240.176.196: 
22/10/2019 11:03:25             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:03:25             dut.10.240.176.196: 
22/10/2019 11:03:25             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 12 : 11 0 : 65535 0x00/0x00 0 >> /root/rule_ipv4.db
22/10/2019 11:03:25             dut.10.240.176.196: 
22/10/2019 11:03:25             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
22/10/2019 11:03:25             dut.10.240.176.196: 
22/10/2019 11:03:25             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
22/10/2019 11:03:26             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
22/10/2019 11:03:26             dut.10.240.176.196: ^C
22/10/2019 11:03:26             dut.10.240.176.196: ^C
22/10/2019 11:03:26             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:03:26             dut.10.240.176.196: 
22/10/2019 11:03:26             dut.10.240.176.196: echo @R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 0 >> /root/rule_ipv4.db
22/10/2019 11:03:26             dut.10.240.176.196: 
22/10/2019 11:03:26             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
22/10/2019 11:03:26             dut.10.240.176.196: 
22/10/2019 11:03:26             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
22/10/2019 11:03:27             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: failed to read source address/mask: R0.0.0.0/0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
22/10/2019 11:03:27             dut.10.240.176.196: ^C
22/10/2019 11:03:27             dut.10.240.176.196: ^C
22/10/2019 11:03:27             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:03:27             dut.10.240.176.196: 
22/10/2019 11:03:27             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535   >> /root/rule_ipv4.db
22/10/2019 11:03:27             dut.10.240.176.196: 
22/10/2019 11:03:27             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
22/10/2019 11:03:27             dut.10.240.176.196: 
22/10/2019 11:03:27             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
22/10/2019 11:03:28             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
22/10/2019 11:03:28             dut.10.240.176.196: ^C
22/10/2019 11:03:28             dut.10.240.176.196: ^C
22/10/2019 11:03:28             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
22/10/2019 11:03:28             dut.10.240.176.196: 
22/10/2019 11:03:28             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 12 : 11 0 : 65535 0x00/0x00 0 >> /root/rule_ipv6.db
22/10/2019 11:03:28             dut.10.240.176.196: 
22/10/2019 11:03:28             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
22/10/2019 11:03:28             dut.10.240.176.196: 
22/10/2019 11:03:28             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
22/10/2019 11:03:29             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
22/10/2019 11:03:29             dut.10.240.176.196: ^C
22/10/2019 11:03:29             dut.10.240.176.196: ^C
22/10/2019 11:03:29             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
22/10/2019 11:03:29             dut.10.240.176.196: 
22/10/2019 11:03:29             dut.10.240.176.196: echo @R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 0 >> /root/rule_ipv6.db
22/10/2019 11:03:29             dut.10.240.176.196: 
22/10/2019 11:03:29             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
22/10/2019 11:03:29             dut.10.240.176.196: 
22/10/2019 11:03:29             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
22/10/2019 11:03:30             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
22/10/2019 11:03:30             dut.10.240.176.196: ^C
22/10/2019 11:03:30             dut.10.240.176.196: ^C
22/10/2019 11:03:30             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
22/10/2019 11:03:30             dut.10.240.176.196: 
22/10/2019 11:03:30             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535   >> /root/rule_ipv6.db
22/10/2019 11:03:30             dut.10.240.176.196: 
22/10/2019 11:03:30             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
22/10/2019 11:03:30             dut.10.240.176.196: 
22/10/2019 11:03:30             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
22/10/2019 11:03:31             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
22/10/2019 11:03:31             dut.10.240.176.196: ^C
22/10/2019 11:03:31             dut.10.240.176.196: ^C
22/10/2019 11:03:31             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:03:31             dut.10.240.176.196: 
22/10/2019 11:03:31             dut.10.240.176.196: echo R200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x06/0xff 99 >> /root/rule_ipv4.db
22/10/2019 11:03:31             dut.10.240.176.196: 
22/10/2019 11:03:31             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" --scalar
22/10/2019 11:03:32             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 1
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: fwd number illegal:99
22/10/2019 11:03:32             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
22/10/2019 11:03:32             dut.10.240.176.196: 
22/10/2019 11:03:32             dut.10.240.176.196: echo @2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/101 11 : 11 101 : 101 0x06/0xff 99 >> /root/rule_ipv6.db
22/10/2019 11:03:32             dut.10.240.176.196: 
22/10/2019 11:03:32             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" --scalar
22/10/2019 11:03:32             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 1
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: fwd number illegal:99
22/10/2019 11:03:32             dut.10.240.176.196: rm -rf  /root/rule_ipv4.db
22/10/2019 11:03:32             dut.10.240.176.196: 
22/10/2019 11:03:32             dut.10.240.176.196: rm -rf  /root/rule_ipv6.db
22/10/2019 11:03:33             dut.10.240.176.196: 
22/10/2019 11:03:33                   TestL3fwdacl: Test Case test_l3fwdacl_invalid Result PASSED:
22/10/2019 11:03:33                   TestL3fwdacl: Test Case test_l3fwdacl_lpm_route Begin
22/10/2019 11:03:33             dut.10.240.176.196: 
22/10/2019 11:03:33                         tester: 
22/10/2019 11:03:33             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:03:33             dut.10.240.176.196: 
22/10/2019 11:03:33             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
22/10/2019 11:03:33             dut.10.240.176.196: 
22/10/2019 11:03:33             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
22/10/2019 11:03:33             dut.10.240.176.196: 
22/10/2019 11:03:33             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
22/10/2019 11:03:33             dut.10.240.176.196: 
22/10/2019 11:03:33             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:03:33             dut.10.240.176.196: 
22/10/2019 11:03:33             dut.10.240.176.196: echo R0.0.0.0/0 1.1.1.0/24 0 : 65535 0 : 65535 0x00/0x00 0 >> /root/rule_ipv4.db
22/10/2019 11:03:33             dut.10.240.176.196: 
22/10/2019 11:03:33             dut.10.240.176.196: echo R0.0.0.0/0 2.1.1.0/24 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
22/10/2019 11:03:34             dut.10.240.176.196: 
22/10/2019 11:03:34             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
22/10/2019 11:03:34             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 2:
	1:0.0.0.0/0 1.1.1.0/24 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x1 
	2:0.0.0.0/0 2.1.1.0/24 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 0:
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
22/10/2019 11:03:36                         tester: ls -d /tmp/tester/
22/10/2019 11:03:36                         tester: /tmp/tester/
22/10/2019 11:03:36                         tester: rm -rf /tmp/tester/sniff_ens160f0.pcap
22/10/2019 11:03:37                         tester: 
22/10/2019 11:03:45                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713425.18 root@10.240.176.173:/tmp/tester/
22/10/2019 11:03:46                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713425.18 root@10.240.176.173:/tmp/tester/
22/10/2019 11:03:47                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713425.18
22/10/2019 11:03:48                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='0.0.0.0', proto=17, tos=0, dst='1.1.1.0', chksum=30928, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=64989)
.
Sent 1 packets.
22/10/2019 11:03:54                         tester: ls -d /tmp/tester/
22/10/2019 11:03:54                         tester: /tmp/tester/
22/10/2019 11:03:54                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:03:54                         tester: 
22/10/2019 11:04:02                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713442.81 root@10.240.176.173:/tmp/tester/
22/10/2019 11:04:04                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713442.81 root@10.240.176.173:/tmp/tester/
22/10/2019 11:04:05                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713442.81
22/10/2019 11:04:06                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='0.0.0.0', proto=17, tos=0, dst='2.1.1.0', chksum=30672, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=64733)
.
Sent 1 packets.
22/10/2019 11:04:09             dut.10.240.176.196: ^C
22/10/2019 11:04:10             dut.10.240.176.196: 
22/10/2019 11:04:10                   TestL3fwdacl: Test Case test_l3fwdacl_lpm_route Result FAILED: 'Rx port1 not receive expected packet'
22/10/2019 11:04:10                   TestL3fwdacl: Test Case test_l3fwdacl_scalar Begin
22/10/2019 11:04:10             dut.10.240.176.196:  
22/10/2019 11:04:10                         tester: 
22/10/2019 11:04:10             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:04:10             dut.10.240.176.196: 
22/10/2019 11:04:10             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
22/10/2019 11:04:10             dut.10.240.176.196: 
22/10/2019 11:04:10             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
22/10/2019 11:04:10             dut.10.240.176.196: 
22/10/2019 11:04:10             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
22/10/2019 11:04:10             dut.10.240.176.196: 
22/10/2019 11:04:10             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
22/10/2019 11:04:10             dut.10.240.176.196: 
22/10/2019 11:04:10             dut.10.240.176.196: echo @200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x06/0xff  >> /root/rule_ipv4.db
22/10/2019 11:04:10             dut.10.240.176.196: 
22/10/2019 11:04:10             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
22/10/2019 11:04:11             dut.10.240.176.196: 
22/10/2019 11:04:11             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" --scalar
22/10/2019 11:04:11             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 1
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=1
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=1
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
22/10/2019 11:04:13                         tester: ls -d /tmp/tester/
22/10/2019 11:04:13                         tester: /tmp/tester/
22/10/2019 11:04:13                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:04:14                         tester: 
22/10/2019 11:04:22                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713462.1 root@10.240.176.173:/tmp/tester/
22/10/2019 11:04:23                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713462.1 root@10.240.176.173:/tmp/tester/
22/10/2019 11:04:24                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713462.1
22/10/2019 11:04:25                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=6, tos=0, dst='100.10.0.1', chksum=20153, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25436, dport=101, sport=11)
.
Sent 1 packets.
22/10/2019 11:04:31                         tester: ls -d /tmp/tester/
22/10/2019 11:04:31                         tester: /tmp/tester/
22/10/2019 11:04:31                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:04:31                         tester: 
22/10/2019 11:04:39                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713479.72 root@10.240.176.173:/tmp/tester/
22/10/2019 11:04:41                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713479.72 root@10.240.176.173:/tmp/tester/
22/10/2019 11:04:42                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713479.72
22/10/2019 11:04:43                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.2', chksum=20152, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=54213)
.
Sent 1 packets.
22/10/2019 11:04:46             dut.10.240.176.196: ^C
22/10/2019 11:04:46             dut.10.240.176.196: 
22/10/2019 11:04:46             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
22/10/2019 11:04:47             dut.10.240.176.196: 
22/10/2019 11:04:47             dut.10.240.176.196: echo @2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/101 11 : 11 101 : 101 0x06/0xff  >> /root/rule_ipv6.db
22/10/2019 11:04:47             dut.10.240.176.196: 
22/10/2019 11:04:47             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
22/10/2019 11:04:47             dut.10.240.176.196: 
22/10/2019 11:04:47             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" --scalar
22/10/2019 11:04:47             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 1
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/101 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=1
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=1
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
22/10/2019 11:04:49                         tester: ls -d /tmp/tester/
22/10/2019 11:04:50                         tester: /tmp/tester/
22/10/2019 11:04:50                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:04:50                         tester: 
22/10/2019 11:04:58                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713498.4 root@10.240.176.173:/tmp/tester/
22/10/2019 11:04:59                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713498.4 root@10.240.176.173:/tmp/tester/
22/10/2019 11:05:01                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713498.4
22/10/2019 11:05:02                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=6, src='2001:db8:85a3:8d3:1319:8a2e:370:7344', dst='2002:db8:85a3:8d3:1319:8a2e:370:7344', version=6, hlim=64, plen=20, fl=0, tc=0)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=61210, dport=101, sport=11)
.
Sent 1 packets.
22/10/2019 11:05:07                         tester: ls -d /tmp/tester/
22/10/2019 11:05:07                         tester: /tmp/tester/
22/10/2019 11:05:07                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
22/10/2019 11:05:07                         tester: 
22/10/2019 11:05:16                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.pcap1571713516.07 root@10.240.176.173:/tmp/tester/
22/10/2019 11:05:17                         tester: scp -v /home/autoregression/dts/output/tmp/pcap/scapy_ens160f0.cmd1571713516.07 root@10.240.176.173:/tmp/tester/
22/10/2019 11:05:18                         tester: python /tmp/tester/scapy_ens160f0.cmd1571713516.07
22/10/2019 11:05:19                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='::1', dst='::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=0, sport=0, len=8, chksum=65500)
.
Sent 1 packets.
22/10/2019 11:05:23             dut.10.240.176.196: ^C
22/10/2019 11:05:23             dut.10.240.176.196: 
22/10/2019 11:05:23             dut.10.240.176.196: rm -rf  /root/rule_ipv4.db
22/10/2019 11:05:23             dut.10.240.176.196: 
22/10/2019 11:05:23             dut.10.240.176.196: rm -rf  /root/rule_ipv6.db
22/10/2019 11:05:23             dut.10.240.176.196: 
22/10/2019 11:05:23                   TestL3fwdacl: Test Case test_l3fwdacl_scalar Result PASSED:
22/10/2019 11:05:23             dut.10.240.176.196: kill_all: called by dut and has no prefix list.
22/10/2019 11:05:27                            dts: 
TEST SUITE ENDED: TestL3fwdacl
23/10/2019 01:28:49                            dts: 
TEST SUITE : TestL3fwdacl
23/10/2019 01:28:49                            dts: NIC :        fortville_eagle
23/10/2019 01:28:49             dut.10.240.176.196: 
23/10/2019 01:28:49                         tester: 
23/10/2019 01:28:49             dut.10.240.176.196: export RTE_SDK=`pwd`
23/10/2019 01:28:49             dut.10.240.176.196: 
23/10/2019 01:28:49             dut.10.240.176.196: rm -rf ./app/test/test_resource_c.res.o
23/10/2019 01:28:49             dut.10.240.176.196: 
23/10/2019 01:28:49             dut.10.240.176.196: rm -rf ./app/test/test_resource_tar.res.o
23/10/2019 01:28:49             dut.10.240.176.196: 
23/10/2019 01:28:49             dut.10.240.176.196: rm -rf ./app/test/test_pci_sysfs.res.o
23/10/2019 01:28:49             dut.10.240.176.196: 
23/10/2019 01:28:49             dut.10.240.176.196: make -j 38 -C examples/l3fwd-acl 
23/10/2019 01:28:51             dut.10.240.176.196: make: Entering directory '/root/dpdk/examples/l3fwd-acl'
/bin/sh: 1: pkg-config: not found
/bin/sh: 1: pkg-config: not found
  CC main.o
  LD l3fwd-acl
  INSTALL-APP l3fwd-acl
  INSTALL-MAP l3fwd-acl.map
make: Leaving directory '/root/dpdk/examples/l3fwd-acl'
23/10/2019 01:28:51                   TestL3fwdacl: Test Case test_l3fwdacl_lpm_route Begin
23/10/2019 01:28:51             dut.10.240.176.196: 
23/10/2019 01:28:51                         tester: 
23/10/2019 01:28:51             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:28:52             dut.10.240.176.196: 
23/10/2019 01:28:52             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 01:28:52             dut.10.240.176.196: 
23/10/2019 01:28:52             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:28:52             dut.10.240.176.196: 
23/10/2019 01:28:52             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 01:28:52             dut.10.240.176.196: 
23/10/2019 01:28:52             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:28:52             dut.10.240.176.196: 
23/10/2019 01:28:52             dut.10.240.176.196: echo R0.0.0.0/0 1.1.1.0/24 0 : 65535 0 : 65535 0x00/0x00 0 >> /root/rule_ipv4.db
23/10/2019 01:28:52             dut.10.240.176.196: 
23/10/2019 01:28:52             dut.10.240.176.196: echo R0.0.0.0/0 2.1.1.0/24 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 01:28:52             dut.10.240.176.196: 
23/10/2019 01:28:52             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 01:28:53             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
i40e_GLQF_reg_init(): i40e device 0000:06:00.0 changed global register [0x002689a0]. original: 0x00000000, new: 0x00000029 
i40e_GLQF_reg_init(): i40e device 0000:06:00.0 changed global register [0x00268ca4]. original: 0x00001840, new: 0x00009420 
i40e_aq_debug_write_global_register(): i40e device 0000:06:00.0 changed global register [0x0026c7a0]. original: 0xa8, after: 0x28
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 2:
	1:0.0.0.0/0 1.1.1.0/24 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x1 
	2:0.0.0.0/0 2.1.1.0/24 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 0:
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:28:55                         tester: ls -d /tmp/tester/
23/10/2019 01:28:55                         tester: /tmp/tester/
23/10/2019 01:28:55                         tester: rm -rf /tmp/tester/sniff_ens160f0.pcap
23/10/2019 01:28:55                         tester: 
23/10/2019 01:29:03                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571765343.84 root@10.240.176.173:/tmp/tester/
23/10/2019 01:29:05                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571765343.84 root@10.240.176.173:/tmp/tester/
23/10/2019 01:29:06                         tester: python /tmp/tester/scapy_ens160f0.cmd1571765343.84
23/10/2019 01:29:07                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='0.0.0.0', proto=17, tos=0, dst='1.1.1.0', chksum=30928, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=64989)
.
Sent 1 packets.
23/10/2019 01:29:13                         tester: ls -d /tmp/tester/
23/10/2019 01:29:13                         tester: /tmp/tester/
23/10/2019 01:29:13                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:29:13                         tester: 
23/10/2019 01:29:21                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571765361.43 root@10.240.176.173:/tmp/tester/
23/10/2019 01:29:22                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571765361.43 root@10.240.176.173:/tmp/tester/
23/10/2019 01:29:24                         tester: python /tmp/tester/scapy_ens160f0.cmd1571765361.43
23/10/2019 01:29:24                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='0.0.0.0', proto=17, tos=0, dst='2.1.1.0', chksum=30672, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=64733)
.
Sent 1 packets.
23/10/2019 01:29:28             dut.10.240.176.196: ^C
23/10/2019 01:29:28             dut.10.240.176.196: 
23/10/2019 01:29:28             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:29:28             dut.10.240.176.196: 
23/10/2019 01:29:28             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 1:1:1:1:1:1:0:0/96 0 : 65535 0 : 65535 0x00/0x00 0 >> /root/rule_ipv6.db
23/10/2019 01:29:28             dut.10.240.176.196: 
23/10/2019 01:29:28             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 2:1:1:1:1:1:0:0/96 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 01:29:28             dut.10.240.176.196: 
23/10/2019 01:29:28             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 01:29:29             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 2:
	1:0.0.0.0/0 1.1.1.0/24 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x1 
	2:0.0.0.0/0 2.1.1.0/24 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 0:
L3FWDACL: IPv6 Route entries 2:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0001:0001:0001:0001:0001:0001:0000:0000/96 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x1 
	2:0000:0000:0000:0000:0000:0000:0000:0000/0 0002:0001:0001:0001:0001:0001:0000:0000/96 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:29:31                         tester: ls -d /tmp/tester/
23/10/2019 01:29:31                         tester: /tmp/tester/
23/10/2019 01:29:31                         tester: rm -rf /tmp/tester/sniff_ens160f0.pcap
23/10/2019 01:29:31                         tester: 
23/10/2019 01:29:40                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571765380.04 root@10.240.176.173:/tmp/tester/
23/10/2019 01:29:41                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571765380.04 root@10.240.176.173:/tmp/tester/
23/10/2019 01:29:42                         tester: python /tmp/tester/scapy_ens160f0.cmd1571765380.04
23/10/2019 01:29:43                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='::', dst='1:1:1:1:1:1::', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=0, sport=0, len=8, chksum=65496)
.
Sent 1 packets.
23/10/2019 01:29:49                         tester: ls -d /tmp/tester/
23/10/2019 01:29:49                         tester: /tmp/tester/
23/10/2019 01:29:49                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:29:49                         tester: 
23/10/2019 01:29:57                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571765397.6 root@10.240.176.173:/tmp/tester/
23/10/2019 01:29:59                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571765397.6 root@10.240.176.173:/tmp/tester/
23/10/2019 01:30:00                         tester: python /tmp/tester/scapy_ens160f0.cmd1571765397.6
23/10/2019 01:30:01                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='::', dst='2:1:1:1:1:1::', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=0, sport=0, len=8, chksum=65495)
.
Sent 1 packets.
23/10/2019 01:30:04             dut.10.240.176.196: ^C
23/10/2019 01:30:04             dut.10.240.176.196: 
23/10/2019 01:30:04             dut.10.240.176.196: rm -rf  /root/rule_ipv4.db
23/10/2019 01:30:04             dut.10.240.176.196: 
23/10/2019 01:30:04             dut.10.240.176.196: rm -rf  /root/rule_ipv6.db
23/10/2019 01:30:05             dut.10.240.176.196: 
23/10/2019 01:30:05                   TestL3fwdacl: Test Case test_l3fwdacl_lpm_route Result PASSED:
23/10/2019 01:30:05             dut.10.240.176.196: kill_all: called by dut and has no prefix list.
23/10/2019 01:30:08                            dts: 
TEST SUITE ENDED: TestL3fwdacl
23/10/2019 01:47:09                            dts: 
TEST SUITE : TestL3fwdacl
23/10/2019 01:47:09                            dts: NIC :        fortville_eagle
23/10/2019 01:47:09             dut.10.240.176.196: 
23/10/2019 01:47:09                         tester: 
23/10/2019 01:47:09             dut.10.240.176.196: export RTE_SDK=`pwd`
23/10/2019 01:47:09             dut.10.240.176.196: 
23/10/2019 01:47:09             dut.10.240.176.196: rm -rf ./app/test/test_resource_c.res.o
23/10/2019 01:47:10             dut.10.240.176.196: 
23/10/2019 01:47:10             dut.10.240.176.196: rm -rf ./app/test/test_resource_tar.res.o
23/10/2019 01:47:10             dut.10.240.176.196: 
23/10/2019 01:47:10             dut.10.240.176.196: rm -rf ./app/test/test_pci_sysfs.res.o
23/10/2019 01:47:10             dut.10.240.176.196: 
23/10/2019 01:47:10             dut.10.240.176.196: make -j 38 -C examples/l3fwd-acl 
23/10/2019 01:47:11             dut.10.240.176.196: make: Entering directory '/root/dpdk/examples/l3fwd-acl'
/bin/sh: 1: pkg-config: not found
/bin/sh: 1: pkg-config: not found
make: Leaving directory '/root/dpdk/examples/l3fwd-acl'
23/10/2019 01:47:11                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Begin
23/10/2019 01:47:11             dut.10.240.176.196: 
23/10/2019 01:47:11                         tester: 
23/10/2019 01:47:11             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:47:11             dut.10.240.176.196: 
23/10/2019 01:47:11             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 01:47:11             dut.10.240.176.196: 
23/10/2019 01:47:11             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:47:11             dut.10.240.176.196: 
23/10/2019 01:47:11             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 01:47:11             dut.10.240.176.196: 
23/10/2019 01:47:11             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:47:11             dut.10.240.176.196: 
23/10/2019 01:47:11             dut.10.240.176.196: echo @200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 01:47:11             dut.10.240.176.196: 
23/10/2019 01:47:11             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 01:47:12             dut.10.240.176.196: 
23/10/2019 01:47:12             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 01:47:12             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:47:14                         tester: ls -d /tmp/tester/
23/10/2019 01:47:14                         tester: /tmp/tester/
23/10/2019 01:47:14                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:47:15                         tester: 
23/10/2019 01:47:23                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766443.22 root@10.240.176.173:/tmp/tester/
23/10/2019 01:47:24                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766443.22 root@10.240.176.173:/tmp/tester/
23/10/2019 01:47:25                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766443.22
23/10/2019 01:47:26                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 01:47:32                         tester: ls -d /tmp/tester/
23/10/2019 01:47:32                         tester: /tmp/tester/
23/10/2019 01:47:32                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:47:32                         tester: 
23/10/2019 01:47:40                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766460.76 root@10.240.176.173:/tmp/tester/
23/10/2019 01:47:42                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766460.76 root@10.240.176.173:/tmp/tester/
23/10/2019 01:47:43                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766460.76
23/10/2019 01:47:44                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.1', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 01:47:47             dut.10.240.176.196: ^C
23/10/2019 01:47:47             dut.10.240.176.196: 
23/10/2019 01:47:47             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:47:48             dut.10.240.176.196: 
23/10/2019 01:47:48             dut.10.240.176.196: echo @0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 01:47:48             dut.10.240.176.196: 
23/10/2019 01:47:48             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 01:47:48             dut.10.240.176.196: 
23/10/2019 01:47:48             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 01:47:48             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:47:50                         tester: ls -d /tmp/tester/
23/10/2019 01:47:51                         tester: /tmp/tester/
23/10/2019 01:47:51                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:47:51                         tester: 
23/10/2019 01:47:59                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766479.36 root@10.240.176.173:/tmp/tester/
23/10/2019 01:48:00                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766479.36 root@10.240.176.173:/tmp/tester/
23/10/2019 01:48:02                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766479.36
23/10/2019 01:48:02                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 01:48:08                         tester: ls -d /tmp/tester/
23/10/2019 01:48:08                         tester: /tmp/tester/
23/10/2019 01:48:08                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:48:08                         tester: 
23/10/2019 01:48:16                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766496.9 root@10.240.176.173:/tmp/tester/
23/10/2019 01:48:18                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766496.9 root@10.240.176.173:/tmp/tester/
23/10/2019 01:48:19                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766496.9
23/10/2019 01:48:20                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.2', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 01:48:24             dut.10.240.176.196: ^C
23/10/2019 01:48:24             dut.10.240.176.196: 
23/10/2019 01:48:24             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:48:24             dut.10.240.176.196: 
23/10/2019 01:48:24             dut.10.240.176.196: echo @0.0.0.0/0 0.0.0.0/0 11 : 11 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 01:48:24             dut.10.240.176.196: 
23/10/2019 01:48:24             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 01:48:24             dut.10.240.176.196: 
23/10/2019 01:48:24             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 01:48:25             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 0.0.0.0/0 11 : 11 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e0826c0
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:48:27                         tester: ls -d /tmp/tester/
23/10/2019 01:48:27                         tester: /tmp/tester/
23/10/2019 01:48:27                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:48:27                         tester: 
23/10/2019 01:48:35                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766515.5 root@10.240.176.173:/tmp/tester/
23/10/2019 01:48:36                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766515.5 root@10.240.176.173:/tmp/tester/
23/10/2019 01:48:38                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766515.5
23/10/2019 01:48:39                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 01:48:44                         tester: ls -d /tmp/tester/
23/10/2019 01:48:44                         tester: /tmp/tester/
23/10/2019 01:48:44                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:48:44                         tester: 
23/10/2019 01:48:53                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766533.04 root@10.240.176.173:/tmp/tester/
23/10/2019 01:48:54                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766533.04 root@10.240.176.173:/tmp/tester/
23/10/2019 01:48:55                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766533.04
23/10/2019 01:48:56                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=0, len=8, chksum=54114)
.
Sent 1 packets.
23/10/2019 01:49:00             dut.10.240.176.196: ^C
23/10/2019 01:49:00             dut.10.240.176.196: 
23/10/2019 01:49:00             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:49:00             dut.10.240.176.196: 
23/10/2019 01:49:00             dut.10.240.176.196: echo @0.0.0.0/0 0.0.0.0/0 0 : 65535 101 : 101 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 01:49:00             dut.10.240.176.196: 
23/10/2019 01:49:00             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 01:49:00             dut.10.240.176.196: 
23/10/2019 01:49:00             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 01:49:01             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 101 : 101 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e0826c0
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:49:03                         tester: ls -d /tmp/tester/
23/10/2019 01:49:03                         tester: /tmp/tester/
23/10/2019 01:49:03                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:49:03                         tester: 
23/10/2019 01:49:11                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766551.64 root@10.240.176.173:/tmp/tester/
23/10/2019 01:49:13                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766551.64 root@10.240.176.173:/tmp/tester/
23/10/2019 01:49:14                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766551.64
23/10/2019 01:49:15                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 01:49:20                         tester: ls -d /tmp/tester/
23/10/2019 01:49:21                         tester: /tmp/tester/
23/10/2019 01:49:21                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:49:21                         tester: 
23/10/2019 01:49:29                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766569.2 root@10.240.176.173:/tmp/tester/
23/10/2019 01:49:30                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766569.2 root@10.240.176.173:/tmp/tester/
23/10/2019 01:49:31                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766569.2
23/10/2019 01:49:32                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=11, len=8, chksum=54204)
.
Sent 1 packets.
23/10/2019 01:49:36             dut.10.240.176.196: ^C
23/10/2019 01:49:36             dut.10.240.176.196: 
23/10/2019 01:49:36             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:49:36             dut.10.240.176.196: 
23/10/2019 01:49:36             dut.10.240.176.196: echo @0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x06/0xff  >> /root/rule_ipv4.db
23/10/2019 01:49:36             dut.10.240.176.196: 
23/10/2019 01:49:36             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 01:49:36             dut.10.240.176.196: 
23/10/2019 01:49:36             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 01:49:37             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082700
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:49:39                         tester: ls -d /tmp/tester/
23/10/2019 01:49:39                         tester: /tmp/tester/
23/10/2019 01:49:39                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:49:39                         tester: 
23/10/2019 01:49:47                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766587.8 root@10.240.176.173:/tmp/tester/
23/10/2019 01:49:49                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766587.8 root@10.240.176.173:/tmp/tester/
23/10/2019 01:49:50                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766587.8
23/10/2019 01:49:51                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=6, tos=0, dst='100.10.0.1', chksum=20153, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25436, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 01:49:56                         tester: ls -d /tmp/tester/
23/10/2019 01:49:57                         tester: /tmp/tester/
23/10/2019 01:49:57                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:49:57                         tester: 
23/10/2019 01:50:05                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766605.34 root@10.240.176.173:/tmp/tester/
23/10/2019 01:50:06                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766605.34 root@10.240.176.173:/tmp/tester/
23/10/2019 01:50:08                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766605.34
23/10/2019 01:50:08                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 01:50:12             dut.10.240.176.196: ^C
23/10/2019 01:50:12             dut.10.240.176.196: 
23/10/2019 01:50:12             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:50:12             dut.10.240.176.196: 
23/10/2019 01:50:12             dut.10.240.176.196: echo @200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x06/0xff  >> /root/rule_ipv4.db
23/10/2019 01:50:12             dut.10.240.176.196: 
23/10/2019 01:50:12             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 01:50:12             dut.10.240.176.196: 
23/10/2019 01:50:12             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 01:50:13             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:50:15                         tester: ls -d /tmp/tester/
23/10/2019 01:50:15                         tester: /tmp/tester/
23/10/2019 01:50:15                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:50:15                         tester: 
23/10/2019 01:50:23                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766623.94 root@10.240.176.173:/tmp/tester/
23/10/2019 01:50:25                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766623.94 root@10.240.176.173:/tmp/tester/
23/10/2019 01:50:26                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766623.94
23/10/2019 01:50:27                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=6, tos=0, dst='100.10.0.1', chksum=20153, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25436, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 01:50:33                         tester: ls -d /tmp/tester/
23/10/2019 01:50:33                         tester: /tmp/tester/
23/10/2019 01:50:33                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:50:33                         tester: 
23/10/2019 01:50:41                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766641.46 root@10.240.176.173:/tmp/tester/
23/10/2019 01:50:42                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766641.46 root@10.240.176.173:/tmp/tester/
23/10/2019 01:50:44                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766641.46
23/10/2019 01:50:44                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.2', chksum=20152, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=54213)
.
Sent 1 packets.
23/10/2019 01:50:48             dut.10.240.176.196: ^C
23/10/2019 01:50:48             dut.10.240.176.196: 
23/10/2019 01:50:48             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:50:48             dut.10.240.176.196: 
23/10/2019 01:50:48             dut.10.240.176.196: echo @2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv6.db
23/10/2019 01:50:48             dut.10.240.176.196: 
23/10/2019 01:50:48             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 01:50:49             dut.10.240.176.196: 
23/10/2019 01:50:49             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 01:50:49             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:50:51                         tester: ls -d /tmp/tester/
23/10/2019 01:50:51                         tester: /tmp/tester/
23/10/2019 01:50:51                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:50:52                         tester: 
23/10/2019 01:51:00                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766660.06 root@10.240.176.173:/tmp/tester/
23/10/2019 01:51:01                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766660.06 root@10.240.176.173:/tmp/tester/
23/10/2019 01:51:02                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766660.06
23/10/2019 01:51:03                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='2001:db8:85a3:8d3:1319:8a2e:370:7344', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=11842)
.
Sent 1 packets.
23/10/2019 01:51:09                         tester: ls -d /tmp/tester/
23/10/2019 01:51:09                         tester: /tmp/tester/
23/10/2019 01:51:09                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:51:09                         tester: 
23/10/2019 01:51:17                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766677.61 root@10.240.176.173:/tmp/tester/
23/10/2019 01:51:19                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766677.61 root@10.240.176.173:/tmp/tester/
23/10/2019 01:51:20                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766677.61
23/10/2019 01:51:21                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=65132)
.
Sent 1 packets.
23/10/2019 01:51:24             dut.10.240.176.196: ^C
23/10/2019 01:51:24             dut.10.240.176.196: 
23/10/2019 01:51:24             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:51:24             dut.10.240.176.196: 
23/10/2019 01:51:24             dut.10.240.176.196: echo @0:0:0:0:0:0:0:0/0 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv6.db
23/10/2019 01:51:25             dut.10.240.176.196: 
23/10/2019 01:51:25             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 01:51:25             dut.10.240.176.196: 
23/10/2019 01:51:25             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 01:51:25             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:51:27                         tester: ls -d /tmp/tester/
23/10/2019 01:51:28                         tester: /tmp/tester/
23/10/2019 01:51:28                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:51:28                         tester: 
23/10/2019 01:51:36                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766696.22 root@10.240.176.173:/tmp/tester/
23/10/2019 01:51:37                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766696.22 root@10.240.176.173:/tmp/tester/
23/10/2019 01:51:38                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766696.22
23/10/2019 01:51:39                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='2002:db8:85a3:8d3:1319:8a2e:370:7344', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=11585)
.
Sent 1 packets.
23/10/2019 01:51:45                         tester: ls -d /tmp/tester/
23/10/2019 01:51:45                         tester: /tmp/tester/
23/10/2019 01:51:45                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:51:45                         tester: 
23/10/2019 01:51:53                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766713.77 root@10.240.176.173:/tmp/tester/
23/10/2019 01:51:55                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766713.77 root@10.240.176.173:/tmp/tester/
23/10/2019 01:51:56                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766713.77
23/10/2019 01:51:57                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=64876)
.
Sent 1 packets.
23/10/2019 01:52:00             dut.10.240.176.196: ^C
23/10/2019 01:52:00             dut.10.240.176.196: 
23/10/2019 01:52:00             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:52:01             dut.10.240.176.196: 
23/10/2019 01:52:01             dut.10.240.176.196: echo @0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 11 : 11 0 : 65535 0x00/0x00  >> /root/rule_ipv6.db
23/10/2019 01:52:01             dut.10.240.176.196: 
23/10/2019 01:52:01             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 01:52:01             dut.10.240.176.196: 
23/10/2019 01:52:01             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 01:52:01             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 11 : 11 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:52:03                         tester: ls -d /tmp/tester/
23/10/2019 01:52:04                         tester: /tmp/tester/
23/10/2019 01:52:04                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:52:04                         tester: 
23/10/2019 01:52:12                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766732.41 root@10.240.176.173:/tmp/tester/
23/10/2019 01:52:13                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766732.41 root@10.240.176.173:/tmp/tester/
23/10/2019 01:52:15                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766732.41
23/10/2019 01:52:15                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=64620)
.
Sent 1 packets.
23/10/2019 01:52:21                         tester: ls -d /tmp/tester/
23/10/2019 01:52:21                         tester: /tmp/tester/
23/10/2019 01:52:21                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:52:21                         tester: 
23/10/2019 01:52:29                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766749.97 root@10.240.176.173:/tmp/tester/
23/10/2019 01:52:31                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766749.97 root@10.240.176.173:/tmp/tester/
23/10/2019 01:52:32                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766749.97
23/10/2019 01:52:33                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=0, len=8, chksum=64631)
.
Sent 1 packets.
23/10/2019 01:52:37             dut.10.240.176.196: ^C
23/10/2019 01:52:37             dut.10.240.176.196: 
23/10/2019 01:52:37                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Result FAILED: 'Rx port not receive expected packet'
23/10/2019 01:52:37                   TestL3fwdacl: Test Case test_l3fwdacl_exact_route Begin
23/10/2019 01:52:37             dut.10.240.176.196:  
23/10/2019 01:52:37                         tester: 
23/10/2019 01:52:37             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:52:37             dut.10.240.176.196: 
23/10/2019 01:52:37             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 01:52:37             dut.10.240.176.196: 
23/10/2019 01:52:37             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:52:37             dut.10.240.176.196: 
23/10/2019 01:52:37             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 01:52:37             dut.10.240.176.196: 
23/10/2019 01:52:37             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:52:37             dut.10.240.176.196: 
23/10/2019 01:52:37             dut.10.240.176.196: echo R200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x06/0xff 0 >> /root/rule_ipv4.db
23/10/2019 01:52:38             dut.10.240.176.196: 
23/10/2019 01:52:38             dut.10.240.176.196: echo R200.20.0.1/32 100.20.0.1/32 12 : 12 102 : 102 0x06/0xff 1 >> /root/rule_ipv4.db
23/10/2019 01:52:38             dut.10.240.176.196: 
23/10/2019 01:52:38             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 01:52:38             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 2:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0x1 
	2:200.20.0.1/32 100.20.0.1/32 12 : 12 102 : 102 0x6/0xff 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 0:
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082500
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:52:40                         tester: ls -d /tmp/tester/
23/10/2019 01:52:41                         tester: /tmp/tester/
23/10/2019 01:52:41                         tester: rm -rf /tmp/tester/sniff_ens160f0.pcap
23/10/2019 01:52:41                         tester: 
23/10/2019 01:52:49                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766769.22 root@10.240.176.173:/tmp/tester/
23/10/2019 01:52:50                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766769.22 root@10.240.176.173:/tmp/tester/
23/10/2019 01:52:51                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766769.22
23/10/2019 01:52:52                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=6, tos=0, dst='100.10.0.1', chksum=20153, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25436, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 01:52:58                         tester: ls -d /tmp/tester/
23/10/2019 01:52:58                         tester: /tmp/tester/
23/10/2019 01:52:58                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:52:58                         tester: 
23/10/2019 01:53:06                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766786.78 root@10.240.176.173:/tmp/tester/
23/10/2019 01:53:08                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766786.78 root@10.240.176.173:/tmp/tester/
23/10/2019 01:53:09                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766786.78
23/10/2019 01:53:10                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.20.0.1', proto=6, tos=0, dst='100.20.0.1', chksum=20133, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25414, dport=102, sport=12)
.
Sent 1 packets.
23/10/2019 01:53:13             dut.10.240.176.196: ^C
23/10/2019 01:53:14             dut.10.240.176.196: 
23/10/2019 01:53:14                   TestL3fwdacl: Test Case test_l3fwdacl_exact_route Result FAILED: 'Rx port1 not receive expected packet'
23/10/2019 01:53:14                   TestL3fwdacl: Test Case test_l3fwdacl_invalid Begin
23/10/2019 01:53:14             dut.10.240.176.196:  
23/10/2019 01:53:14                         tester: 
23/10/2019 01:53:14             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:53:14             dut.10.240.176.196: 
23/10/2019 01:53:14             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 01:53:14             dut.10.240.176.196: 
23/10/2019 01:53:14             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:53:14             dut.10.240.176.196: 
23/10/2019 01:53:14             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 01:53:14             dut.10.240.176.196: 
23/10/2019 01:53:14             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:53:14             dut.10.240.176.196: 
23/10/2019 01:53:14             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 12 : 11 0 : 65535 0x00/0x00 0 >> /root/rule_ipv4.db
23/10/2019 01:53:14             dut.10.240.176.196: 
23/10/2019 01:53:14             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 01:53:15             dut.10.240.176.196: 
23/10/2019 01:53:15             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
23/10/2019 01:53:15             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
23/10/2019 01:53:15             dut.10.240.176.196: ^C
23/10/2019 01:53:15             dut.10.240.176.196: ^C
23/10/2019 01:53:15             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:53:15             dut.10.240.176.196: 
23/10/2019 01:53:15             dut.10.240.176.196: echo @R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 0 >> /root/rule_ipv4.db
23/10/2019 01:53:15             dut.10.240.176.196: 
23/10/2019 01:53:15             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 01:53:15             dut.10.240.176.196: 
23/10/2019 01:53:15             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
23/10/2019 01:53:16             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: failed to read source address/mask: R0.0.0.0/0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
23/10/2019 01:53:16             dut.10.240.176.196: ^C
23/10/2019 01:53:16             dut.10.240.176.196: ^C
23/10/2019 01:53:16             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:53:16             dut.10.240.176.196: 
23/10/2019 01:53:16             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535   >> /root/rule_ipv4.db
23/10/2019 01:53:16             dut.10.240.176.196: 
23/10/2019 01:53:16             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 01:53:16             dut.10.240.176.196: 
23/10/2019 01:53:16             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
23/10/2019 01:53:17             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
23/10/2019 01:53:17             dut.10.240.176.196: ^C
23/10/2019 01:53:17             dut.10.240.176.196: ^C
23/10/2019 01:53:17             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:53:17             dut.10.240.176.196: 
23/10/2019 01:53:17             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 12 : 11 0 : 65535 0x00/0x00 0 >> /root/rule_ipv6.db
23/10/2019 01:53:17             dut.10.240.176.196: 
23/10/2019 01:53:17             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 01:53:17             dut.10.240.176.196: 
23/10/2019 01:53:17             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
23/10/2019 01:53:18             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
23/10/2019 01:53:18             dut.10.240.176.196: ^C
23/10/2019 01:53:18             dut.10.240.176.196: ^C
23/10/2019 01:53:18             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:53:18             dut.10.240.176.196: 
23/10/2019 01:53:18             dut.10.240.176.196: echo @R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 0 >> /root/rule_ipv6.db
23/10/2019 01:53:18             dut.10.240.176.196: 
23/10/2019 01:53:18             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 01:53:18             dut.10.240.176.196: 
23/10/2019 01:53:18             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
23/10/2019 01:53:19             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
23/10/2019 01:53:19             dut.10.240.176.196: ^C
23/10/2019 01:53:19             dut.10.240.176.196: ^C
23/10/2019 01:53:19             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:53:19             dut.10.240.176.196: 
23/10/2019 01:53:19             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535   >> /root/rule_ipv6.db
23/10/2019 01:53:19             dut.10.240.176.196: 
23/10/2019 01:53:19             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 01:53:19             dut.10.240.176.196: 
23/10/2019 01:53:19             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
23/10/2019 01:53:20             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
23/10/2019 01:53:20             dut.10.240.176.196: ^C
23/10/2019 01:53:20             dut.10.240.176.196: ^C
23/10/2019 01:53:20             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:53:20             dut.10.240.176.196: 
23/10/2019 01:53:20             dut.10.240.176.196: echo R200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x06/0xff 99 >> /root/rule_ipv4.db
23/10/2019 01:53:20             dut.10.240.176.196: 
23/10/2019 01:53:20             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" --scalar
23/10/2019 01:53:21             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 1
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: fwd number illegal:99
23/10/2019 01:53:21             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:53:21             dut.10.240.176.196: 
23/10/2019 01:53:21             dut.10.240.176.196: echo @2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/101 11 : 11 101 : 101 0x06/0xff 99 >> /root/rule_ipv6.db
23/10/2019 01:53:21             dut.10.240.176.196: 
23/10/2019 01:53:21             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" --scalar
23/10/2019 01:53:22             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 1
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: fwd number illegal:99
23/10/2019 01:53:22             dut.10.240.176.196: rm -rf  /root/rule_ipv4.db
23/10/2019 01:53:22             dut.10.240.176.196: 
23/10/2019 01:53:22             dut.10.240.176.196: rm -rf  /root/rule_ipv6.db
23/10/2019 01:53:22             dut.10.240.176.196: 
23/10/2019 01:53:22                   TestL3fwdacl: Test Case test_l3fwdacl_invalid Result PASSED:
23/10/2019 01:53:22                   TestL3fwdacl: Test Case test_l3fwdacl_lpm_route Begin
23/10/2019 01:53:22             dut.10.240.176.196: 
23/10/2019 01:53:22                         tester: 
23/10/2019 01:53:22             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:53:22             dut.10.240.176.196: 
23/10/2019 01:53:22             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 01:53:22             dut.10.240.176.196: 
23/10/2019 01:53:22             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:53:23             dut.10.240.176.196: 
23/10/2019 01:53:23             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 01:53:23             dut.10.240.176.196: 
23/10/2019 01:53:23             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:53:23             dut.10.240.176.196: 
23/10/2019 01:53:23             dut.10.240.176.196: echo R0.0.0.0/0 1.1.1.0/24 0 : 65535 0 : 65535 0x00/0x00 0 >> /root/rule_ipv4.db
23/10/2019 01:53:23             dut.10.240.176.196: 
23/10/2019 01:53:23             dut.10.240.176.196: echo R0.0.0.0/0 2.1.1.0/24 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 01:53:23             dut.10.240.176.196: 
23/10/2019 01:53:23             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 01:53:24             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 2:
	1:0.0.0.0/0 1.1.1.0/24 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x1 
	2:0.0.0.0/0 2.1.1.0/24 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 0:
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:53:26                         tester: ls -d /tmp/tester/
23/10/2019 01:53:26                         tester: /tmp/tester/
23/10/2019 01:53:26                         tester: rm -rf /tmp/tester/sniff_ens160f0.pcap
23/10/2019 01:53:26                         tester: 
23/10/2019 01:53:34                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766814.54 root@10.240.176.173:/tmp/tester/
23/10/2019 01:53:35                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766814.54 root@10.240.176.173:/tmp/tester/
23/10/2019 01:53:37                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766814.54
23/10/2019 01:53:38                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='0.0.0.0', proto=17, tos=0, dst='1.1.1.0', chksum=30928, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=64989)
.
Sent 1 packets.
23/10/2019 01:53:43                         tester: ls -d /tmp/tester/
23/10/2019 01:53:43                         tester: /tmp/tester/
23/10/2019 01:53:43                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:53:44                         tester: 
23/10/2019 01:53:52                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766832.15 root@10.240.176.173:/tmp/tester/
23/10/2019 01:53:53                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766832.15 root@10.240.176.173:/tmp/tester/
23/10/2019 01:53:54                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766832.15
23/10/2019 01:53:55                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='0.0.0.0', proto=17, tos=0, dst='2.1.1.0', chksum=30672, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=64733)
.
Sent 1 packets.
23/10/2019 01:53:59             dut.10.240.176.196: ^C
23/10/2019 01:53:59             dut.10.240.176.196: 
23/10/2019 01:53:59                   TestL3fwdacl: Test Case test_l3fwdacl_lpm_route Result FAILED: 'Rx port1 not receive expected packet'
23/10/2019 01:53:59                   TestL3fwdacl: Test Case test_l3fwdacl_scalar Begin
23/10/2019 01:53:59             dut.10.240.176.196:  
23/10/2019 01:53:59                         tester: 
23/10/2019 01:53:59             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:53:59             dut.10.240.176.196: 
23/10/2019 01:53:59             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 01:53:59             dut.10.240.176.196: 
23/10/2019 01:53:59             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:53:59             dut.10.240.176.196: 
23/10/2019 01:53:59             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 01:54:00             dut.10.240.176.196: 
23/10/2019 01:54:00             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 01:54:00             dut.10.240.176.196: 
23/10/2019 01:54:00             dut.10.240.176.196: echo @200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x06/0xff  >> /root/rule_ipv4.db
23/10/2019 01:54:00             dut.10.240.176.196: 
23/10/2019 01:54:00             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 01:54:00             dut.10.240.176.196: 
23/10/2019 01:54:00             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" --scalar
23/10/2019 01:54:01             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 1
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=1
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=1
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:54:03                         tester: ls -d /tmp/tester/
23/10/2019 01:54:03                         tester: /tmp/tester/
23/10/2019 01:54:03                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:54:03                         tester: 
23/10/2019 01:54:11                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766851.44 root@10.240.176.173:/tmp/tester/
23/10/2019 01:54:12                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766851.44 root@10.240.176.173:/tmp/tester/
23/10/2019 01:54:14                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766851.44
23/10/2019 01:54:14                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=6, tos=0, dst='100.10.0.1', chksum=20153, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25436, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 01:54:20                         tester: ls -d /tmp/tester/
23/10/2019 01:54:20                         tester: /tmp/tester/
23/10/2019 01:54:20                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:54:20                         tester: 
23/10/2019 01:54:29                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766869.01 root@10.240.176.173:/tmp/tester/
23/10/2019 01:54:30                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766869.01 root@10.240.176.173:/tmp/tester/
23/10/2019 01:54:31                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766869.01
23/10/2019 01:54:32                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.2', chksum=20152, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=54213)
.
Sent 1 packets.
23/10/2019 01:54:36             dut.10.240.176.196: ^C
23/10/2019 01:54:36             dut.10.240.176.196: 
23/10/2019 01:54:36             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 01:54:36             dut.10.240.176.196: 
23/10/2019 01:54:36             dut.10.240.176.196: echo @2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/101 11 : 11 101 : 101 0x06/0xff  >> /root/rule_ipv6.db
23/10/2019 01:54:36             dut.10.240.176.196: 
23/10/2019 01:54:36             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 01:54:36             dut.10.240.176.196: 
23/10/2019 01:54:36             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" --scalar
23/10/2019 01:54:37             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 1
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/101 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=1
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=1
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 01:54:39                         tester: ls -d /tmp/tester/
23/10/2019 01:54:39                         tester: /tmp/tester/
23/10/2019 01:54:39                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:54:39                         tester: 
23/10/2019 01:54:47                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766887.62 root@10.240.176.173:/tmp/tester/
23/10/2019 01:54:49                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766887.62 root@10.240.176.173:/tmp/tester/
23/10/2019 01:54:50                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766887.62
23/10/2019 01:54:51                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=6, src='2001:db8:85a3:8d3:1319:8a2e:370:7344', dst='2002:db8:85a3:8d3:1319:8a2e:370:7344', version=6, hlim=64, plen=20, fl=0, tc=0)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=61210, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 01:54:56                         tester: ls -d /tmp/tester/
23/10/2019 01:54:57                         tester: /tmp/tester/
23/10/2019 01:54:57                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 01:54:57                         tester: 
23/10/2019 01:55:05                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571766905.17 root@10.240.176.173:/tmp/tester/
23/10/2019 01:55:06                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571766905.17 root@10.240.176.173:/tmp/tester/
23/10/2019 01:55:07                         tester: python /tmp/tester/scapy_ens160f0.cmd1571766905.17
23/10/2019 01:55:08                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='::1', dst='::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=0, sport=0, len=8, chksum=65500)
.
Sent 1 packets.
23/10/2019 01:55:12             dut.10.240.176.196: ^C
23/10/2019 01:55:12             dut.10.240.176.196: 
23/10/2019 01:55:12             dut.10.240.176.196: rm -rf  /root/rule_ipv4.db
23/10/2019 01:55:12             dut.10.240.176.196: 
23/10/2019 01:55:12             dut.10.240.176.196: rm -rf  /root/rule_ipv6.db
23/10/2019 01:55:12             dut.10.240.176.196: 
23/10/2019 01:55:12                   TestL3fwdacl: Test Case test_l3fwdacl_scalar Result PASSED:
23/10/2019 01:55:12             dut.10.240.176.196: kill_all: called by dut and has no prefix list.
23/10/2019 01:55:16                            dts: 
TEST SUITE ENDED: TestL3fwdacl
23/10/2019 02:04:18                            dts: 
TEST SUITE : TestL3fwdacl
23/10/2019 02:04:18                            dts: NIC :        fortville_eagle
23/10/2019 02:04:18             dut.10.240.176.196: 
23/10/2019 02:04:18                         tester: 
23/10/2019 02:04:18             dut.10.240.176.196: export RTE_SDK=`pwd`
23/10/2019 02:04:18             dut.10.240.176.196: 
23/10/2019 02:04:18             dut.10.240.176.196: rm -rf ./app/test/test_resource_c.res.o
23/10/2019 02:04:18             dut.10.240.176.196: 
23/10/2019 02:04:18             dut.10.240.176.196: rm -rf ./app/test/test_resource_tar.res.o
23/10/2019 02:04:18             dut.10.240.176.196: 
23/10/2019 02:04:18             dut.10.240.176.196: rm -rf ./app/test/test_pci_sysfs.res.o
23/10/2019 02:04:18             dut.10.240.176.196: 
23/10/2019 02:04:18             dut.10.240.176.196: make -j 38 -C examples/l3fwd-acl 
23/10/2019 02:04:19             dut.10.240.176.196: make: Entering directory '/root/dpdk/examples/l3fwd-acl'
/bin/sh: 1: pkg-config: not found
/bin/sh: 1: pkg-config: not found
make: Leaving directory '/root/dpdk/examples/l3fwd-acl'
23/10/2019 02:04:19                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Begin
23/10/2019 02:04:19             dut.10.240.176.196: 
23/10/2019 02:04:19                         tester: 
23/10/2019 02:04:19             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:04:19             dut.10.240.176.196: 
23/10/2019 02:04:19             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 02:04:19             dut.10.240.176.196: 
23/10/2019 02:04:19             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:04:20             dut.10.240.176.196: 
23/10/2019 02:04:20             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 02:04:20             dut.10.240.176.196: 
23/10/2019 02:04:20             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:04:20             dut.10.240.176.196: 
23/10/2019 02:04:20             dut.10.240.176.196: echo @200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:04:20             dut.10.240.176.196: 
23/10/2019 02:04:20             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:04:20             dut.10.240.176.196: 
23/10/2019 02:04:20             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:04:21             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:04:23                         tester: ls -d /tmp/tester/
23/10/2019 02:04:23                         tester: /tmp/tester/
23/10/2019 02:04:23                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:04:23                         tester: 
23/10/2019 02:04:33                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571767473.73 root@10.240.176.173:/tmp/tester/
23/10/2019 02:04:35                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571767473.73 root@10.240.176.173:/tmp/tester/
23/10/2019 02:04:36                         tester: python /tmp/tester/scapy_ens160f0.cmd1571767473.73
23/10/2019 02:04:37                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:04:40                         tester: ls -d /tmp/tester/
23/10/2019 02:04:41                         tester: /tmp/tester/
23/10/2019 02:04:41                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:04:41                         tester: 
23/10/2019 02:04:51                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571767491.28 root@10.240.176.173:/tmp/tester/
23/10/2019 02:04:52                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571767491.28 root@10.240.176.173:/tmp/tester/
23/10/2019 02:04:54                         tester: python /tmp/tester/scapy_ens160f0.cmd1571767491.28
23/10/2019 02:04:54                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.1', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 02:04:58             dut.10.240.176.196: ^C
23/10/2019 02:04:58             dut.10.240.176.196: 
23/10/2019 02:04:58                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Result FAILED: 'Rx port not receive expected packet'
23/10/2019 02:04:58                   TestL3fwdacl: Test Case test_l3fwdacl_exact_route Begin
23/10/2019 02:04:58             dut.10.240.176.196:  
23/10/2019 02:04:58                         tester: 
23/10/2019 02:04:58             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:04:58             dut.10.240.176.196: 
23/10/2019 02:04:58             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 02:04:58             dut.10.240.176.196: 
23/10/2019 02:04:58             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:04:59             dut.10.240.176.196: 
23/10/2019 02:04:59             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 02:04:59             dut.10.240.176.196: 
23/10/2019 02:04:59             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:04:59             dut.10.240.176.196: 
23/10/2019 02:04:59             dut.10.240.176.196: echo R200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x06/0xff 0 >> /root/rule_ipv4.db
23/10/2019 02:04:59             dut.10.240.176.196: 
23/10/2019 02:04:59             dut.10.240.176.196: echo R200.20.0.1/32 100.20.0.1/32 12 : 12 102 : 102 0x06/0xff 1 >> /root/rule_ipv4.db
23/10/2019 02:04:59             dut.10.240.176.196: 
23/10/2019 02:04:59             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:05:00             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 2:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0x1 
	2:200.20.0.1/32 100.20.0.1/32 12 : 12 102 : 102 0x6/0xff 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 0:
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082500
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:05:02                         tester: ls -d /tmp/tester/
23/10/2019 02:05:02                         tester: /tmp/tester/
23/10/2019 02:05:02                         tester: rm -rf /tmp/tester/sniff_ens160f0.pcap
23/10/2019 02:05:02                         tester: 
23/10/2019 02:05:12                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571767512.53 root@10.240.176.173:/tmp/tester/
23/10/2019 02:05:13                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571767512.53 root@10.240.176.173:/tmp/tester/
23/10/2019 02:05:15                         tester: python /tmp/tester/scapy_ens160f0.cmd1571767512.53
23/10/2019 02:05:16                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=6, tos=0, dst='100.10.0.1', chksum=20153, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25436, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:05:21                         tester: ls -d /tmp/tester/
23/10/2019 02:05:21                         tester: /tmp/tester/
23/10/2019 02:05:21                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:05:22                         tester: 
23/10/2019 02:05:32                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571767532.1 root@10.240.176.173:/tmp/tester/
23/10/2019 02:05:33                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571767532.1 root@10.240.176.173:/tmp/tester/
23/10/2019 02:05:34                         tester: python /tmp/tester/scapy_ens160f0.cmd1571767532.1
23/10/2019 02:05:35                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.20.0.1', proto=6, tos=0, dst='100.20.0.1', chksum=20133, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25414, dport=102, sport=12)
.
Sent 1 packets.
23/10/2019 02:05:39             dut.10.240.176.196: ^C
23/10/2019 02:05:39             dut.10.240.176.196: 
23/10/2019 02:05:39             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:05:39             dut.10.240.176.196: 
23/10/2019 02:05:39             dut.10.240.176.196: echo R2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 11 : 11 101 : 101 0x06/0xff 0 >> /root/rule_ipv6.db
23/10/2019 02:05:39             dut.10.240.176.196: 
23/10/2019 02:05:39             dut.10.240.176.196: echo R2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 12 : 12 102 : 102 0x06/0xff 1 >> /root/rule_ipv6.db
23/10/2019 02:05:39             dut.10.240.176.196: 
23/10/2019 02:05:39             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:05:40             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 2:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0x1 
	2:200.20.0.1/32 100.20.0.1/32 12 : 12 102 : 102 0x6/0xff 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 0:
L3FWDACL: IPv6 Route entries 2:
	1:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0x1 
	2:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 12 : 12 102 : 102 0x6/0xff 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082500
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:05:42                         tester: ls -d /tmp/tester/
23/10/2019 02:05:42                         tester: /tmp/tester/
23/10/2019 02:05:42                         tester: rm -rf /tmp/tester/sniff_ens160f0.pcap
23/10/2019 02:05:42                         tester: 
23/10/2019 02:05:52                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571767552.73 root@10.240.176.173:/tmp/tester/
23/10/2019 02:05:54                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571767552.73 root@10.240.176.173:/tmp/tester/
23/10/2019 02:05:55                         tester: python /tmp/tester/scapy_ens160f0.cmd1571767552.73
23/10/2019 02:05:56                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=6, src='2001:db8:85a3:8d3:1319:8a2e:370:7344', dst='2002:db8:85a3:8d3:1319:8a2e:370:7344', version=6, hlim=64, plen=20, fl=0, tc=0)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=61210, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:06:00                   TestL3fwdacl: Test Case test_l3fwdacl_exact_route SKIPPED: 
23/10/2019 02:06:00                   TestL3fwdacl: Test Case test_l3fwdacl_invalid Begin
23/10/2019 02:06:00             dut.10.240.176.196:  entering main loop on lcore 2
L3FWD:  -- lcoreid=2 portid=0 rxqueueid=0
L3FWD: entering main loop on lcore 3
L3FWD:  -- lcoreid=3 portid=1 rxqueueid=0
L3FWD: lcore 1 has nothing to do
L3FWD: lcore 4 has nothing to do

23/10/2019 02:06:00                   TestL3fwdacl: Test Case test_l3fwdacl_invalid SKIPPED: 
23/10/2019 02:06:00                   TestL3fwdacl: Test Case test_l3fwdacl_lpm_route Begin
23/10/2019 02:06:00             dut.10.240.176.196: 
23/10/2019 02:06:00                   TestL3fwdacl: Test Case test_l3fwdacl_lpm_route SKIPPED: 
23/10/2019 02:06:00                   TestL3fwdacl: Test Case test_l3fwdacl_scalar Begin
23/10/2019 02:06:00             dut.10.240.176.196: 
23/10/2019 02:06:00                   TestL3fwdacl: Test Case test_l3fwdacl_scalar SKIPPED: 
23/10/2019 02:06:00             dut.10.240.176.196: kill_all: called by dut and has no prefix list.
23/10/2019 02:06:00                            dts:  !!! STOPPING DTS
23/10/2019 02:06:00             dut.10.240.176.196: kill_all: called by dut and has no prefix list.
23/10/2019 02:06:00             dut.10.240.176.196: kill_all: called by dut and has no prefix list.
23/10/2019 02:06:46                            dts: 
TEST SUITE : TestL3fwdacl
23/10/2019 02:06:46                            dts: NIC :        fortville_eagle
23/10/2019 02:06:46             dut.10.240.176.196: 
23/10/2019 02:06:46                         tester: 
23/10/2019 02:06:46             dut.10.240.176.196: export RTE_SDK=`pwd`
23/10/2019 02:06:46             dut.10.240.176.196: 
23/10/2019 02:06:46             dut.10.240.176.196: rm -rf ./app/test/test_resource_c.res.o
23/10/2019 02:06:46             dut.10.240.176.196: 
23/10/2019 02:06:46             dut.10.240.176.196: rm -rf ./app/test/test_resource_tar.res.o
23/10/2019 02:06:46             dut.10.240.176.196: 
23/10/2019 02:06:46             dut.10.240.176.196: rm -rf ./app/test/test_pci_sysfs.res.o
23/10/2019 02:06:46             dut.10.240.176.196: 
23/10/2019 02:06:46             dut.10.240.176.196: make -j 38 -C examples/l3fwd-acl 
23/10/2019 02:06:47             dut.10.240.176.196: make: Entering directory '/root/dpdk/examples/l3fwd-acl'
/bin/sh: 1: pkg-config: not found
/bin/sh: 1: pkg-config: not found
make: Leaving directory '/root/dpdk/examples/l3fwd-acl'
23/10/2019 02:06:47                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Begin
23/10/2019 02:06:47             dut.10.240.176.196: 
23/10/2019 02:06:47                         tester: 
23/10/2019 02:06:47             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:06:47             dut.10.240.176.196: 
23/10/2019 02:06:47             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 02:06:48             dut.10.240.176.196: 
23/10/2019 02:06:48             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:06:48             dut.10.240.176.196: 
23/10/2019 02:06:48             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 02:06:48             dut.10.240.176.196: 
23/10/2019 02:06:48             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:06:48             dut.10.240.176.196: 
23/10/2019 02:06:48             dut.10.240.176.196: echo @200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:06:48             dut.10.240.176.196: 
23/10/2019 02:06:48             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:06:48             dut.10.240.176.196: 
23/10/2019 02:06:48             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:06:49             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:06:51                         tester: ls -d /tmp/tester/
23/10/2019 02:06:51                         tester: /tmp/tester/
23/10/2019 02:06:51                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:06:51                         tester: 
23/10/2019 02:07:01                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571767621.75 root@10.240.176.173:/tmp/tester/
23/10/2019 02:07:03                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571767621.75 root@10.240.176.173:/tmp/tester/
23/10/2019 02:07:04                         tester: python /tmp/tester/scapy_ens160f0.cmd1571767621.75
23/10/2019 02:07:05                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:07:08                         tester: ls -d /tmp/tester/
23/10/2019 02:07:09                         tester: /tmp/tester/
23/10/2019 02:07:09                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:07:09                         tester: 
23/10/2019 02:07:19                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571767639.3 root@10.240.176.173:/tmp/tester/
23/10/2019 02:07:20                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571767639.3 root@10.240.176.173:/tmp/tester/
23/10/2019 02:07:22                         tester: python /tmp/tester/scapy_ens160f0.cmd1571767639.3
23/10/2019 02:07:22                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.1', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 02:07:26             dut.10.240.176.196: ^C
23/10/2019 02:07:26             dut.10.240.176.196: 
23/10/2019 02:07:26             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:07:26             dut.10.240.176.196: 
23/10/2019 02:07:26             dut.10.240.176.196: echo @0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:07:26             dut.10.240.176.196: 
23/10/2019 02:07:26             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:07:26             dut.10.240.176.196: 
23/10/2019 02:07:26             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:07:27             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:07:29                         tester: ls -d /tmp/tester/
23/10/2019 02:07:29                         tester: /tmp/tester/
23/10/2019 02:07:29                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:07:29                         tester: 
23/10/2019 02:07:39                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571767659.98 root@10.240.176.173:/tmp/tester/
23/10/2019 02:07:41                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571767659.98 root@10.240.176.173:/tmp/tester/
23/10/2019 02:07:42                         tester: python /tmp/tester/scapy_ens160f0.cmd1571767659.98
23/10/2019 02:07:43                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:07:47                         tester: ls -d /tmp/tester/
23/10/2019 02:07:47                         tester: /tmp/tester/
23/10/2019 02:07:47                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:07:47                         tester: 
23/10/2019 02:07:57                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571767677.6 root@10.240.176.173:/tmp/tester/
23/10/2019 02:07:59                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571767677.6 root@10.240.176.173:/tmp/tester/
23/10/2019 02:08:00                         tester: python /tmp/tester/scapy_ens160f0.cmd1571767677.6
23/10/2019 02:08:01                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.2', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 02:08:04             dut.10.240.176.196: ^C
23/10/2019 02:08:04             dut.10.240.176.196: 
23/10/2019 02:08:04                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Result FAILED: 'Rx port not receive expected packet'
23/10/2019 02:08:04             dut.10.240.176.196: kill_all: called by dut and has no prefix list.
23/10/2019 02:08:08                            dts: 
TEST SUITE ENDED: TestL3fwdacl
23/10/2019 02:09:50                            dts: 
TEST SUITE : TestL3fwdacl
23/10/2019 02:09:50                            dts: NIC :        fortville_eagle
23/10/2019 02:09:50             dut.10.240.176.196: 
23/10/2019 02:09:50                         tester: 
23/10/2019 02:09:50             dut.10.240.176.196: export RTE_SDK=`pwd`
23/10/2019 02:09:51             dut.10.240.176.196: 
23/10/2019 02:09:51             dut.10.240.176.196: rm -rf ./app/test/test_resource_c.res.o
23/10/2019 02:09:51             dut.10.240.176.196: 
23/10/2019 02:09:51             dut.10.240.176.196: rm -rf ./app/test/test_resource_tar.res.o
23/10/2019 02:09:51             dut.10.240.176.196: 
23/10/2019 02:09:51             dut.10.240.176.196: rm -rf ./app/test/test_pci_sysfs.res.o
23/10/2019 02:09:51             dut.10.240.176.196: 
23/10/2019 02:09:51             dut.10.240.176.196: make -j 38 -C examples/l3fwd-acl 
23/10/2019 02:09:52             dut.10.240.176.196: make: Entering directory '/root/dpdk/examples/l3fwd-acl'
/bin/sh: 1: pkg-config: not found
/bin/sh: 1: pkg-config: not found
make: Leaving directory '/root/dpdk/examples/l3fwd-acl'
23/10/2019 02:09:52                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Begin
23/10/2019 02:09:52             dut.10.240.176.196: 
23/10/2019 02:09:52                         tester: 
23/10/2019 02:12:08             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:12:08             dut.10.240.176.196: 
23/10/2019 02:12:10             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 02:12:10             dut.10.240.176.196: 
23/10/2019 02:12:14             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:12:14             dut.10.240.176.196: 
23/10/2019 02:12:16             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 02:12:16             dut.10.240.176.196: 
23/10/2019 02:12:20             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:12:20             dut.10.240.176.196: 
23/10/2019 02:12:20             dut.10.240.176.196: echo @200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:12:21             dut.10.240.176.196: 
23/10/2019 02:12:21             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:12:21             dut.10.240.176.196: 
23/10/2019 02:12:21             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:12:21             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:12:23                         tester: ls -d /tmp/tester/
23/10/2019 02:12:24                         tester: /tmp/tester/
23/10/2019 02:12:24                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:12:24                         tester: 
23/10/2019 02:12:34                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571767954.53 root@10.240.176.173:/tmp/tester/
23/10/2019 02:12:36                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571767954.53 root@10.240.176.173:/tmp/tester/
23/10/2019 02:12:37                         tester: python /tmp/tester/scapy_ens160f0.cmd1571767954.53
23/10/2019 02:12:38                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:12:41                         tester: ls -d /tmp/tester/
23/10/2019 02:12:42                         tester: /tmp/tester/
23/10/2019 02:12:42                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:12:42                         tester: 
23/10/2019 02:12:52                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571767972.26 root@10.240.176.173:/tmp/tester/
23/10/2019 02:12:53                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571767972.26 root@10.240.176.173:/tmp/tester/
23/10/2019 02:12:55                         tester: python /tmp/tester/scapy_ens160f0.cmd1571767972.26
23/10/2019 02:12:55                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.1', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 02:12:59             dut.10.240.176.196: ^C
23/10/2019 02:12:59             dut.10.240.176.196: 
23/10/2019 02:13:09                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Result FAILED: 'Rx port not receive expected packet'
23/10/2019 02:13:09             dut.10.240.176.196: kill_all: called by dut and has no prefix list.
23/10/2019 02:13:13                            dts: 
TEST SUITE ENDED: TestL3fwdacl
23/10/2019 02:15:08                            dts: 
TEST SUITE : TestL3fwdacl
23/10/2019 02:15:08                            dts: NIC :        fortville_eagle
23/10/2019 02:15:08             dut.10.240.176.196: 
23/10/2019 02:15:08                         tester: 
23/10/2019 02:15:08             dut.10.240.176.196: export RTE_SDK=`pwd`
23/10/2019 02:15:08             dut.10.240.176.196: 
23/10/2019 02:15:08             dut.10.240.176.196: rm -rf ./app/test/test_resource_c.res.o
23/10/2019 02:15:08             dut.10.240.176.196: 
23/10/2019 02:15:08             dut.10.240.176.196: rm -rf ./app/test/test_resource_tar.res.o
23/10/2019 02:15:08             dut.10.240.176.196: 
23/10/2019 02:15:08             dut.10.240.176.196: rm -rf ./app/test/test_pci_sysfs.res.o
23/10/2019 02:15:08             dut.10.240.176.196: 
23/10/2019 02:15:08             dut.10.240.176.196: make -j 38 -C examples/l3fwd-acl 
23/10/2019 02:15:09             dut.10.240.176.196: make: Entering directory '/root/dpdk/examples/l3fwd-acl'
/bin/sh: 1: pkg-config: not found
/bin/sh: 1: pkg-config: not found
make: Leaving directory '/root/dpdk/examples/l3fwd-acl'
23/10/2019 02:15:09                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Begin
23/10/2019 02:15:09             dut.10.240.176.196: 
23/10/2019 02:15:09                         tester: 
23/10/2019 02:15:09             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:15:09             dut.10.240.176.196: 
23/10/2019 02:15:09             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 02:15:09             dut.10.240.176.196: 
23/10/2019 02:15:09             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:15:10             dut.10.240.176.196: 
23/10/2019 02:15:10             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 02:15:10             dut.10.240.176.196: 
23/10/2019 02:15:10             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:15:10             dut.10.240.176.196: 
23/10/2019 02:15:10             dut.10.240.176.196: echo @200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:15:10             dut.10.240.176.196: 
23/10/2019 02:15:10             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:15:10             dut.10.240.176.196: 
23/10/2019 02:15:10             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:15:11             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:16:11                         tester: ls -d /tmp/tester/
23/10/2019 02:16:11                         tester: /tmp/tester/
23/10/2019 02:16:11                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:16:11                         tester: 
23/10/2019 02:17:14                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571768234.23 root@10.240.176.173:/tmp/tester/
23/10/2019 02:17:15                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571768234.23 root@10.240.176.173:/tmp/tester/
23/10/2019 02:17:17                         tester: python /tmp/tester/scapy_ens160f0.cmd1571768234.23
23/10/2019 02:17:17                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:19:57                         tester: ls -d /tmp/tester/
23/10/2019 02:19:57                         tester: /tmp/tester/
23/10/2019 02:19:57                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:19:57                         tester: 
23/10/2019 02:20:08                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571768408.02 root@10.240.176.173:/tmp/tester/
23/10/2019 02:20:09                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571768408.02 root@10.240.176.173:/tmp/tester/
23/10/2019 02:20:10                         tester: python /tmp/tester/scapy_ens160f0.cmd1571768408.02
23/10/2019 02:20:11                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.1', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 02:20:18             dut.10.240.176.196: ^C
23/10/2019 02:20:19             dut.10.240.176.196: 
23/10/2019 02:20:36             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:20:36             dut.10.240.176.196: 
23/10/2019 02:20:36             dut.10.240.176.196: echo @0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:20:36             dut.10.240.176.196: 
23/10/2019 02:20:36             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:20:37             dut.10.240.176.196: 
23/10/2019 02:20:37             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:20:37             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:20:50                         tester: ls -d /tmp/tester/
23/10/2019 02:20:50                         tester: /tmp/tester/
23/10/2019 02:20:50                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:20:50                         tester: 
23/10/2019 02:21:00                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571768460.52 root@10.240.176.173:/tmp/tester/
23/10/2019 02:21:01                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571768460.52 root@10.240.176.173:/tmp/tester/
23/10/2019 02:21:03                         tester: python /tmp/tester/scapy_ens160f0.cmd1571768460.52
23/10/2019 02:21:04                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:21:07                         tester: ls -d /tmp/tester/
23/10/2019 02:21:07                         tester: /tmp/tester/
23/10/2019 02:21:07                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:21:08                         tester: 
23/10/2019 02:21:18                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571768478.07 root@10.240.176.173:/tmp/tester/
23/10/2019 02:21:19                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571768478.07 root@10.240.176.173:/tmp/tester/
23/10/2019 02:21:20                         tester: python /tmp/tester/scapy_ens160f0.cmd1571768478.07
23/10/2019 02:21:21                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.2', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 02:21:25             dut.10.240.176.196: ^C
23/10/2019 02:21:25             dut.10.240.176.196: 
23/10/2019 02:21:25                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Result FAILED: 'Rx port not receive expected packet'
23/10/2019 02:21:25             dut.10.240.176.196: kill_all: called by dut and has no prefix list.
23/10/2019 02:21:29                            dts: 
TEST SUITE ENDED: TestL3fwdacl
23/10/2019 02:28:17                            dts: 
TEST SUITE : TestL3fwdacl
23/10/2019 02:28:17                            dts: NIC :        fortville_eagle
23/10/2019 02:28:17             dut.10.240.176.196: 
23/10/2019 02:28:17                         tester: 
23/10/2019 02:28:17             dut.10.240.176.196: export RTE_SDK=`pwd`
23/10/2019 02:28:17             dut.10.240.176.196: 
23/10/2019 02:28:17             dut.10.240.176.196: rm -rf ./app/test/test_resource_c.res.o
23/10/2019 02:28:17             dut.10.240.176.196: 
23/10/2019 02:28:17             dut.10.240.176.196: rm -rf ./app/test/test_resource_tar.res.o
23/10/2019 02:28:18             dut.10.240.176.196: 
23/10/2019 02:28:18             dut.10.240.176.196: rm -rf ./app/test/test_pci_sysfs.res.o
23/10/2019 02:28:18             dut.10.240.176.196: 
23/10/2019 02:28:18             dut.10.240.176.196: make -j 38 -C examples/l3fwd-acl 
23/10/2019 02:28:18             dut.10.240.176.196: make: Entering directory '/root/dpdk/examples/l3fwd-acl'
/bin/sh: 1: pkg-config: not found
/bin/sh: 1: pkg-config: not found
make: Leaving directory '/root/dpdk/examples/l3fwd-acl'
23/10/2019 02:28:18                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Begin
23/10/2019 02:28:19             dut.10.240.176.196: 
23/10/2019 02:28:19                         tester: 
23/10/2019 02:28:19             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:28:19             dut.10.240.176.196: 
23/10/2019 02:28:19             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 02:28:19             dut.10.240.176.196: 
23/10/2019 02:28:19             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:28:19             dut.10.240.176.196: 
23/10/2019 02:28:19             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 02:28:19             dut.10.240.176.196: 
23/10/2019 02:28:19             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:28:19             dut.10.240.176.196: 
23/10/2019 02:28:19             dut.10.240.176.196: echo @200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:28:19             dut.10.240.176.196: 
23/10/2019 02:28:19             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:28:19             dut.10.240.176.196: 
23/10/2019 02:28:19             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:28:20             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:30:11                         tester: ls -d /tmp/tester/
23/10/2019 02:30:11                         tester: /tmp/tester/
23/10/2019 02:30:11                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:30:11                         tester: 
23/10/2019 02:30:30                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769030.19 root@10.240.176.173:/tmp/tester/
23/10/2019 02:30:31                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769030.19 root@10.240.176.173:/tmp/tester/
23/10/2019 02:30:32                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769030.19
23/10/2019 02:30:33                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:30:46                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Result ERROR: Traceback (most recent call last):
  File "/home/autoregression/zhushaui/framework/test_case.py", line 316, in _execute_test_case
    case_obj()
  File "tests/TestSuite_l3fwdacl.py", line 680, in test_l3fwdacl_acl_rule
    self.basic_acl_ipv4_test(acl_rule)
  File "tests/TestSuite_l3fwdacl.py", line 570, in basic_acl_ipv4_test
    out1 = self.send_ipv4_packet_match(acl_rule, tx_port, rx_port)
  File "tests/TestSuite_l3fwdacl.py", line 334, in send_ipv4_packet_match
    out = self.remove_dhcp_from_revpackets(inst, timeout=2)
TypeError: remove_dhcp_from_revpackets() got an unexpected keyword argument 'timeout'

23/10/2019 02:30:46             dut.10.240.176.196: kill_all: called by dut and has no prefix list.
23/10/2019 02:30:51             dut.10.240.176.196:  entering main loop on lcore 2
L3FWD:  -- lcoreid=2 portid=0 rxqueueid=0
L3FWD: lcore 4 has nothing to do
L3FWD: entering main loop on lcore 3
L3FWD:  -- lcoreid=3 portid=1 rxqueueid=0
L3FWD: lcore 1 has nothing to do
Killed
[PEXPECT]# 
23/10/2019 02:30:52                            dts: 
TEST SUITE ENDED: TestL3fwdacl
23/10/2019 02:31:55                            dts: 
TEST SUITE : TestL3fwdacl
23/10/2019 02:31:55                            dts: NIC :        fortville_eagle
23/10/2019 02:31:55             dut.10.240.176.196: 
23/10/2019 02:31:56                         tester: 
23/10/2019 02:31:56             dut.10.240.176.196: export RTE_SDK=`pwd`
23/10/2019 02:31:56             dut.10.240.176.196: 
23/10/2019 02:31:56             dut.10.240.176.196: rm -rf ./app/test/test_resource_c.res.o
23/10/2019 02:31:56             dut.10.240.176.196: 
23/10/2019 02:31:56             dut.10.240.176.196: rm -rf ./app/test/test_resource_tar.res.o
23/10/2019 02:31:56             dut.10.240.176.196: 
23/10/2019 02:31:56             dut.10.240.176.196: rm -rf ./app/test/test_pci_sysfs.res.o
23/10/2019 02:31:56             dut.10.240.176.196: 
23/10/2019 02:31:56             dut.10.240.176.196: make -j 38 -C examples/l3fwd-acl 
23/10/2019 02:31:57             dut.10.240.176.196: make: Entering directory '/root/dpdk/examples/l3fwd-acl'
/bin/sh: 1: pkg-config: not found
/bin/sh: 1: pkg-config: not found
make: Leaving directory '/root/dpdk/examples/l3fwd-acl'
23/10/2019 02:31:57                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Begin
23/10/2019 02:31:57             dut.10.240.176.196: 
23/10/2019 02:31:57                         tester: 
23/10/2019 02:31:57             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:31:57             dut.10.240.176.196: 
23/10/2019 02:31:57             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 02:31:57             dut.10.240.176.196: 
23/10/2019 02:31:57             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:31:57             dut.10.240.176.196: 
23/10/2019 02:31:57             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 02:31:57             dut.10.240.176.196: 
23/10/2019 02:31:57             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:31:58             dut.10.240.176.196: 
23/10/2019 02:31:58             dut.10.240.176.196: echo @200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:31:58             dut.10.240.176.196: 
23/10/2019 02:31:58             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:31:58             dut.10.240.176.196: 
23/10/2019 02:31:58             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:31:58             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:33:37                         tester: ls -d /tmp/tester/
23/10/2019 02:33:37                         tester: /tmp/tester/
23/10/2019 02:33:37                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:33:37                         tester: 
23/10/2019 02:33:56                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769236.77 root@10.240.176.173:/tmp/tester/
23/10/2019 02:33:58                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769236.77 root@10.240.176.173:/tmp/tester/
23/10/2019 02:33:59                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769236.77
23/10/2019 02:34:00                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:34:10                         tester: ls -d /tmp/tester/
23/10/2019 02:34:10                         tester: /tmp/tester/
23/10/2019 02:34:10                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:34:10                         tester: 
23/10/2019 02:34:20                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769260.92 root@10.240.176.173:/tmp/tester/
23/10/2019 02:34:22                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769260.92 root@10.240.176.173:/tmp/tester/
23/10/2019 02:34:23                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769260.92
23/10/2019 02:34:24                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.1', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 02:34:30             dut.10.240.176.196: ^C
23/10/2019 02:34:30             dut.10.240.176.196: 
23/10/2019 02:34:38             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:34:38             dut.10.240.176.196: 
23/10/2019 02:34:38             dut.10.240.176.196: echo @0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:34:38             dut.10.240.176.196: 
23/10/2019 02:34:38             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:34:39             dut.10.240.176.196: 
23/10/2019 02:34:39             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:34:39             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:34:50                         tester: ls -d /tmp/tester/
23/10/2019 02:34:51                         tester: /tmp/tester/
23/10/2019 02:34:51                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:34:51                         tester: 
23/10/2019 02:35:05                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769305.54 root@10.240.176.173:/tmp/tester/
23/10/2019 02:35:06                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769305.54 root@10.240.176.173:/tmp/tester/
23/10/2019 02:35:08                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769305.54
23/10/2019 02:35:09                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:35:18                         tester: ls -d /tmp/tester/
23/10/2019 02:35:18                         tester: /tmp/tester/
23/10/2019 02:35:18                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:35:18                         tester: 
23/10/2019 02:35:28                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769328.58 root@10.240.176.173:/tmp/tester/
23/10/2019 02:35:30                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769328.58 root@10.240.176.173:/tmp/tester/
23/10/2019 02:35:31                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769328.58
23/10/2019 02:35:32                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.2', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 02:35:38             dut.10.240.176.196: ^C
23/10/2019 02:35:38             dut.10.240.176.196: 
23/10/2019 02:35:38             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:35:38             dut.10.240.176.196: 
23/10/2019 02:35:38             dut.10.240.176.196: echo @0.0.0.0/0 0.0.0.0/0 11 : 11 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:35:38             dut.10.240.176.196: 
23/10/2019 02:35:38             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:35:38             dut.10.240.176.196: 
23/10/2019 02:35:38             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:35:39             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 0.0.0.0/0 11 : 11 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e0826c0
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:35:43                         tester: ls -d /tmp/tester/
23/10/2019 02:35:43                         tester: /tmp/tester/
23/10/2019 02:35:43                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:35:43                         tester: 
23/10/2019 02:35:53                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769353.43 root@10.240.176.173:/tmp/tester/
23/10/2019 02:35:54                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769353.43 root@10.240.176.173:/tmp/tester/
23/10/2019 02:35:56                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769353.43
23/10/2019 02:35:56                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:36:00                         tester: ls -d /tmp/tester/
23/10/2019 02:36:00                         tester: /tmp/tester/
23/10/2019 02:36:00                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:36:00                         tester: 
23/10/2019 02:36:10                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769370.98 root@10.240.176.173:/tmp/tester/
23/10/2019 02:36:12                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769370.98 root@10.240.176.173:/tmp/tester/
23/10/2019 02:36:13                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769370.98
23/10/2019 02:36:14                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=0, len=8, chksum=54114)
.
Sent 1 packets.
23/10/2019 02:36:18             dut.10.240.176.196: ^C
23/10/2019 02:36:18             dut.10.240.176.196: 
23/10/2019 02:36:18             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:36:18             dut.10.240.176.196: 
23/10/2019 02:36:18             dut.10.240.176.196: echo @0.0.0.0/0 0.0.0.0/0 0 : 65535 101 : 101 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:36:18             dut.10.240.176.196: 
23/10/2019 02:36:18             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:36:18             dut.10.240.176.196: 
23/10/2019 02:36:18             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:36:19             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 101 : 101 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e0826c0
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:36:23                         tester: ls -d /tmp/tester/
23/10/2019 02:36:23                         tester: /tmp/tester/
23/10/2019 02:36:23                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:36:23                         tester: 
23/10/2019 02:36:33                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769393.87 root@10.240.176.173:/tmp/tester/
23/10/2019 02:36:35                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769393.87 root@10.240.176.173:/tmp/tester/
23/10/2019 02:36:36                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769393.87
23/10/2019 02:36:37                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:36:41                         tester: ls -d /tmp/tester/
23/10/2019 02:36:41                         tester: /tmp/tester/
23/10/2019 02:36:41                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:36:41                         tester: 
23/10/2019 02:36:51                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769411.44 root@10.240.176.173:/tmp/tester/
23/10/2019 02:36:52                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769411.44 root@10.240.176.173:/tmp/tester/
23/10/2019 02:36:54                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769411.44
23/10/2019 02:36:54                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=11, len=8, chksum=54204)
.
Sent 1 packets.
23/10/2019 02:36:58             dut.10.240.176.196: ^C
23/10/2019 02:36:58             dut.10.240.176.196: 
23/10/2019 02:36:58                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Result FAILED: 'Rx port not receive expected packet'
23/10/2019 02:36:58             dut.10.240.176.196: kill_all: called by dut and has no prefix list.
23/10/2019 02:37:02                            dts: 
TEST SUITE ENDED: TestL3fwdacl
23/10/2019 02:40:43                            dts: 
TEST SUITE : TestL3fwdacl
23/10/2019 02:40:43                            dts: NIC :        fortville_eagle
23/10/2019 02:40:44             dut.10.240.176.196: 
23/10/2019 02:40:44                         tester: 
23/10/2019 02:40:44             dut.10.240.176.196: export RTE_SDK=`pwd`
23/10/2019 02:40:44             dut.10.240.176.196: 
23/10/2019 02:40:44             dut.10.240.176.196: rm -rf ./app/test/test_resource_c.res.o
23/10/2019 02:40:44             dut.10.240.176.196: 
23/10/2019 02:40:44             dut.10.240.176.196: rm -rf ./app/test/test_resource_tar.res.o
23/10/2019 02:40:44             dut.10.240.176.196: 
23/10/2019 02:40:44             dut.10.240.176.196: rm -rf ./app/test/test_pci_sysfs.res.o
23/10/2019 02:40:44             dut.10.240.176.196: 
23/10/2019 02:40:44             dut.10.240.176.196: make -j 38 -C examples/l3fwd-acl 
23/10/2019 02:40:45             dut.10.240.176.196: make: Entering directory '/root/dpdk/examples/l3fwd-acl'
/bin/sh: 1: pkg-config: not found
/bin/sh: 1: pkg-config: not found
make: Leaving directory '/root/dpdk/examples/l3fwd-acl'
23/10/2019 02:40:45                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Begin
23/10/2019 02:40:45             dut.10.240.176.196: 
23/10/2019 02:40:45                         tester: 
23/10/2019 02:40:45             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:40:45             dut.10.240.176.196: 
23/10/2019 02:40:45             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 02:40:45             dut.10.240.176.196: 
23/10/2019 02:40:45             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:40:45             dut.10.240.176.196: 
23/10/2019 02:40:45             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 02:40:45             dut.10.240.176.196: 
23/10/2019 02:40:45             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:40:46             dut.10.240.176.196: 
23/10/2019 02:40:46             dut.10.240.176.196: echo @200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:40:46             dut.10.240.176.196: 
23/10/2019 02:40:46             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:40:46             dut.10.240.176.196: 
23/10/2019 02:40:46             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:40:47             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:40:47                         tester: ls -d /tmp/tester/
23/10/2019 02:40:47                         tester: /tmp/tester/
23/10/2019 02:40:47                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:40:47                         tester: 
23/10/2019 02:40:52                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769652.55 root@10.240.176.173:/tmp/tester/
23/10/2019 02:40:53                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769652.55 root@10.240.176.173:/tmp/tester/
23/10/2019 02:40:55                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769652.55
23/10/2019 02:40:56                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:40:59                         tester: ls -d /tmp/tester/
23/10/2019 02:40:59                         tester: /tmp/tester/
23/10/2019 02:40:59                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:41:00                         tester: 
23/10/2019 02:41:05                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769665.1 root@10.240.176.173:/tmp/tester/
23/10/2019 02:41:06                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769665.1 root@10.240.176.173:/tmp/tester/
23/10/2019 02:41:07                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769665.1
23/10/2019 02:41:08                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.1', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 02:41:12             dut.10.240.176.196: ^C
23/10/2019 02:41:12             dut.10.240.176.196: 
23/10/2019 02:41:12             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:41:12             dut.10.240.176.196: 
23/10/2019 02:41:12             dut.10.240.176.196: echo @0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:41:12             dut.10.240.176.196: 
23/10/2019 02:41:12             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:41:12             dut.10.240.176.196: 
23/10/2019 02:41:12             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:41:13             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:41:13                         tester: ls -d /tmp/tester/
23/10/2019 02:41:13                         tester: /tmp/tester/
23/10/2019 02:41:13                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:41:13                         tester: 
23/10/2019 02:41:18                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769678.73 root@10.240.176.173:/tmp/tester/
23/10/2019 02:41:20                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769678.73 root@10.240.176.173:/tmp/tester/
23/10/2019 02:41:21                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769678.73
23/10/2019 02:41:22                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:41:25                         tester: ls -d /tmp/tester/
23/10/2019 02:41:26                         tester: /tmp/tester/
23/10/2019 02:41:26                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:41:26                         tester: 
23/10/2019 02:41:31                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769691.28 root@10.240.176.173:/tmp/tester/
23/10/2019 02:41:32                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769691.28 root@10.240.176.173:/tmp/tester/
23/10/2019 02:41:34                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769691.28
23/10/2019 02:41:34                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.2', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 02:41:38             dut.10.240.176.196: ^C
23/10/2019 02:41:38             dut.10.240.176.196: 
23/10/2019 02:41:38             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:41:38             dut.10.240.176.196: 
23/10/2019 02:41:38             dut.10.240.176.196: echo @0.0.0.0/0 0.0.0.0/0 11 : 11 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:41:38             dut.10.240.176.196: 
23/10/2019 02:41:38             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:41:38             dut.10.240.176.196: 
23/10/2019 02:41:38             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:41:39             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 0.0.0.0/0 11 : 11 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e0826c0
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:41:39                         tester: ls -d /tmp/tester/
23/10/2019 02:41:39                         tester: /tmp/tester/
23/10/2019 02:41:39                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:41:39                         tester: 
23/10/2019 02:41:44                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769704.93 root@10.240.176.173:/tmp/tester/
23/10/2019 02:41:46                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769704.93 root@10.240.176.173:/tmp/tester/
23/10/2019 02:41:47                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769704.93
23/10/2019 02:41:48                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:41:52                         tester: ls -d /tmp/tester/
23/10/2019 02:41:52                         tester: /tmp/tester/
23/10/2019 02:41:52                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:41:52                         tester: 
23/10/2019 02:41:57                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769717.6 root@10.240.176.173:/tmp/tester/
23/10/2019 02:41:59                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769717.6 root@10.240.176.173:/tmp/tester/
23/10/2019 02:42:00                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769717.6
23/10/2019 02:42:01                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=0, len=8, chksum=54114)
.
Sent 1 packets.
23/10/2019 02:42:04             dut.10.240.176.196: ^C
23/10/2019 02:42:04             dut.10.240.176.196: 
23/10/2019 02:42:04             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:42:04             dut.10.240.176.196: 
23/10/2019 02:42:04             dut.10.240.176.196: echo @0.0.0.0/0 0.0.0.0/0 0 : 65535 101 : 101 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:42:05             dut.10.240.176.196: 
23/10/2019 02:42:05             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:42:05             dut.10.240.176.196: 
23/10/2019 02:42:05             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:42:05             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 101 : 101 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e0826c0
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:42:05                         tester: ls -d /tmp/tester/
23/10/2019 02:42:06                         tester: /tmp/tester/
23/10/2019 02:42:06                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:42:06                         tester: 
23/10/2019 02:42:11                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769731.22 root@10.240.176.173:/tmp/tester/
23/10/2019 02:42:12                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769731.22 root@10.240.176.173:/tmp/tester/
23/10/2019 02:42:13                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769731.22
23/10/2019 02:42:14                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:42:18                         tester: ls -d /tmp/tester/
23/10/2019 02:42:18                         tester: /tmp/tester/
23/10/2019 02:42:18                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:42:18                         tester: 
23/10/2019 02:42:23                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769743.77 root@10.240.176.173:/tmp/tester/
23/10/2019 02:42:25                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769743.77 root@10.240.176.173:/tmp/tester/
23/10/2019 02:42:26                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769743.77
23/10/2019 02:42:27                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=11, len=8, chksum=54204)
.
Sent 1 packets.
23/10/2019 02:42:30             dut.10.240.176.196: ^C
23/10/2019 02:42:30             dut.10.240.176.196: 
23/10/2019 02:42:30             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:42:31             dut.10.240.176.196: 
23/10/2019 02:42:31             dut.10.240.176.196: echo @0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x06/0xff  >> /root/rule_ipv4.db
23/10/2019 02:42:31             dut.10.240.176.196: 
23/10/2019 02:42:31             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:42:31             dut.10.240.176.196: 
23/10/2019 02:42:31             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:42:31             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082700
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:42:31                         tester: ls -d /tmp/tester/
23/10/2019 02:42:32                         tester: /tmp/tester/
23/10/2019 02:42:32                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:42:32                         tester: 
23/10/2019 02:42:37                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769757.38 root@10.240.176.173:/tmp/tester/
23/10/2019 02:42:38                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769757.38 root@10.240.176.173:/tmp/tester/
23/10/2019 02:42:40                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769757.38
23/10/2019 02:42:40                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=6, tos=0, dst='100.10.0.1', chksum=20153, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25436, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:42:44                         tester: ls -d /tmp/tester/
23/10/2019 02:42:44                         tester: /tmp/tester/
23/10/2019 02:42:44                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:42:44                         tester: 
23/10/2019 02:42:49                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769769.94 root@10.240.176.173:/tmp/tester/
23/10/2019 02:42:51                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769769.94 root@10.240.176.173:/tmp/tester/
23/10/2019 02:42:52                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769769.94
23/10/2019 02:42:53                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:42:57             dut.10.240.176.196: ^C
23/10/2019 02:42:57             dut.10.240.176.196: 
23/10/2019 02:42:57             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:42:57             dut.10.240.176.196: 
23/10/2019 02:42:57             dut.10.240.176.196: echo @200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x06/0xff  >> /root/rule_ipv4.db
23/10/2019 02:42:57             dut.10.240.176.196: 
23/10/2019 02:42:57             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:42:57             dut.10.240.176.196: 
23/10/2019 02:42:57             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:42:58             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:42:58                         tester: ls -d /tmp/tester/
23/10/2019 02:42:58                         tester: /tmp/tester/
23/10/2019 02:42:58                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:42:58                         tester: 
23/10/2019 02:43:03                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769783.56 root@10.240.176.173:/tmp/tester/
23/10/2019 02:43:05                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769783.56 root@10.240.176.173:/tmp/tester/
23/10/2019 02:43:06                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769783.56
23/10/2019 02:43:07                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=6, tos=0, dst='100.10.0.1', chksum=20153, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25436, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:43:10                         tester: ls -d /tmp/tester/
23/10/2019 02:43:10                         tester: /tmp/tester/
23/10/2019 02:43:10                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:43:11                         tester: 
23/10/2019 02:43:16                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769796.14 root@10.240.176.173:/tmp/tester/
23/10/2019 02:43:17                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769796.14 root@10.240.176.173:/tmp/tester/
23/10/2019 02:43:18                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769796.14
23/10/2019 02:43:19                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.2', chksum=20152, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=54213)
.
Sent 1 packets.
23/10/2019 02:43:23             dut.10.240.176.196: ^C
23/10/2019 02:43:23             dut.10.240.176.196: 
23/10/2019 02:43:23             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:43:23             dut.10.240.176.196: 
23/10/2019 02:43:23             dut.10.240.176.196: echo @2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv6.db
23/10/2019 02:43:23             dut.10.240.176.196: 
23/10/2019 02:43:23             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:43:23             dut.10.240.176.196: 
23/10/2019 02:43:23             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:43:24             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:43:24                         tester: ls -d /tmp/tester/
23/10/2019 02:43:24                         tester: /tmp/tester/
23/10/2019 02:43:24                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:43:24                         tester: 
23/10/2019 02:43:29                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769809.75 root@10.240.176.173:/tmp/tester/
23/10/2019 02:43:31                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769809.75 root@10.240.176.173:/tmp/tester/
23/10/2019 02:43:32                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769809.75
23/10/2019 02:43:33                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='2001:db8:85a3:8d3:1319:8a2e:370:7344', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=11842)
.
Sent 1 packets.
23/10/2019 02:43:36                         tester: ls -d /tmp/tester/
23/10/2019 02:43:37                         tester: /tmp/tester/
23/10/2019 02:43:37                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:43:37                         tester: 
23/10/2019 02:43:42                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769822.32 root@10.240.176.173:/tmp/tester/
23/10/2019 02:43:43                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769822.32 root@10.240.176.173:/tmp/tester/
23/10/2019 02:43:45                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769822.32
23/10/2019 02:43:45                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=65132)
.
Sent 1 packets.
23/10/2019 02:43:49             dut.10.240.176.196: ^C
23/10/2019 02:43:49             dut.10.240.176.196: 
23/10/2019 02:43:49             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:43:49             dut.10.240.176.196: 
23/10/2019 02:43:49             dut.10.240.176.196: echo @0:0:0:0:0:0:0:0/0 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv6.db
23/10/2019 02:43:49             dut.10.240.176.196: 
23/10/2019 02:43:49             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:43:49             dut.10.240.176.196: 
23/10/2019 02:43:49             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:43:50             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:43:50                         tester: ls -d /tmp/tester/
23/10/2019 02:43:50                         tester: /tmp/tester/
23/10/2019 02:43:50                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:43:50                         tester: 
23/10/2019 02:43:55                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769835.93 root@10.240.176.173:/tmp/tester/
23/10/2019 02:43:57                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769835.93 root@10.240.176.173:/tmp/tester/
23/10/2019 02:43:58                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769835.93
23/10/2019 02:43:59                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='2002:db8:85a3:8d3:1319:8a2e:370:7344', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=11585)
.
Sent 1 packets.
23/10/2019 02:44:03                         tester: ls -d /tmp/tester/
23/10/2019 02:44:03                         tester: /tmp/tester/
23/10/2019 02:44:03                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:44:03                         tester: 
23/10/2019 02:44:08                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769848.48 root@10.240.176.173:/tmp/tester/
23/10/2019 02:44:09                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769848.48 root@10.240.176.173:/tmp/tester/
23/10/2019 02:44:11                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769848.48
23/10/2019 02:44:12                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=64876)
.
Sent 1 packets.
23/10/2019 02:44:15             dut.10.240.176.196: ^C
23/10/2019 02:44:15             dut.10.240.176.196: 
23/10/2019 02:44:15             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:44:15             dut.10.240.176.196: 
23/10/2019 02:44:15             dut.10.240.176.196: echo @0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 11 : 11 0 : 65535 0x00/0x00  >> /root/rule_ipv6.db
23/10/2019 02:44:15             dut.10.240.176.196: 
23/10/2019 02:44:15             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:44:16             dut.10.240.176.196: 
23/10/2019 02:44:16             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:44:16             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 11 : 11 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:44:16                         tester: ls -d /tmp/tester/
23/10/2019 02:44:16                         tester: /tmp/tester/
23/10/2019 02:44:16                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:44:17                         tester: 
23/10/2019 02:44:22                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769862.12 root@10.240.176.173:/tmp/tester/
23/10/2019 02:44:23                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769862.12 root@10.240.176.173:/tmp/tester/
23/10/2019 02:44:24                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769862.12
23/10/2019 02:44:25                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=64620)
.
Sent 1 packets.
23/10/2019 02:44:29                         tester: ls -d /tmp/tester/
23/10/2019 02:44:29                         tester: /tmp/tester/
23/10/2019 02:44:29                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:44:29                         tester: 
23/10/2019 02:44:34                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769874.7 root@10.240.176.173:/tmp/tester/
23/10/2019 02:44:36                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769874.7 root@10.240.176.173:/tmp/tester/
23/10/2019 02:44:37                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769874.7
23/10/2019 02:44:38                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=0, len=8, chksum=64631)
.
Sent 1 packets.
23/10/2019 02:44:41             dut.10.240.176.196: ^C
23/10/2019 02:44:41             dut.10.240.176.196: 
23/10/2019 02:44:41             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:44:42             dut.10.240.176.196: 
23/10/2019 02:44:42             dut.10.240.176.196: echo @0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 101 : 101 0x00/0x00  >> /root/rule_ipv6.db
23/10/2019 02:44:42             dut.10.240.176.196: 
23/10/2019 02:44:42             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:44:42             dut.10.240.176.196: 
23/10/2019 02:44:42             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:44:42             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 101 : 101 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:44:42                         tester: ls -d /tmp/tester/
23/10/2019 02:44:43                         tester: /tmp/tester/
23/10/2019 02:44:43                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:44:43                         tester: 
23/10/2019 02:44:48                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769888.35 root@10.240.176.173:/tmp/tester/
23/10/2019 02:44:49                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769888.35 root@10.240.176.173:/tmp/tester/
23/10/2019 02:44:51                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769888.35
23/10/2019 02:44:51                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=64620)
.
Sent 1 packets.
23/10/2019 02:44:55                         tester: ls -d /tmp/tester/
23/10/2019 02:44:55                         tester: /tmp/tester/
23/10/2019 02:44:55                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:44:55                         tester: 
23/10/2019 02:45:00                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769900.89 root@10.240.176.173:/tmp/tester/
23/10/2019 02:45:02                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769900.89 root@10.240.176.173:/tmp/tester/
23/10/2019 02:45:03                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769900.89
23/10/2019 02:45:04                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=0, sport=11, len=8, chksum=64721)
.
Sent 1 packets.
23/10/2019 02:45:08             dut.10.240.176.196: ^C
23/10/2019 02:45:08             dut.10.240.176.196: 
23/10/2019 02:45:08             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:45:08             dut.10.240.176.196: 
23/10/2019 02:45:08             dut.10.240.176.196: echo @0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x06/0xff  >> /root/rule_ipv6.db
23/10/2019 02:45:08             dut.10.240.176.196: 
23/10/2019 02:45:08             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:45:08             dut.10.240.176.196: 
23/10/2019 02:45:08             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:45:09             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:45:09                         tester: ls -d /tmp/tester/
23/10/2019 02:45:09                         tester: /tmp/tester/
23/10/2019 02:45:09                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:45:09                         tester: 
23/10/2019 02:45:14                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769914.5 root@10.240.176.173:/tmp/tester/
23/10/2019 02:45:15                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769914.5 root@10.240.176.173:/tmp/tester/
23/10/2019 02:45:17                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769914.5
23/10/2019 02:45:18                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=6, src='200::1', dst='100::1', version=6, hlim=64, plen=20, fl=0, tc=0)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=35953, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:45:21                         tester: ls -d /tmp/tester/
23/10/2019 02:45:21                         tester: /tmp/tester/
23/10/2019 02:45:21                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:45:22                         tester: 
23/10/2019 02:45:27                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769927.09 root@10.240.176.173:/tmp/tester/
23/10/2019 02:45:28                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769927.09 root@10.240.176.173:/tmp/tester/
23/10/2019 02:45:29                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769927.09
23/10/2019 02:45:30                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=64620)
.
Sent 1 packets.
23/10/2019 02:45:34             dut.10.240.176.196: ^C
23/10/2019 02:45:34             dut.10.240.176.196: 
23/10/2019 02:45:34             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:45:34             dut.10.240.176.196: 
23/10/2019 02:45:34             dut.10.240.176.196: echo @2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 11 : 11 101 : 101 0x06/0xff  >> /root/rule_ipv6.db
23/10/2019 02:45:34             dut.10.240.176.196: 
23/10/2019 02:45:34             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:45:34             dut.10.240.176.196: 
23/10/2019 02:45:34             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:45:35             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:45:35                         tester: ls -d /tmp/tester/
23/10/2019 02:45:35                         tester: /tmp/tester/
23/10/2019 02:45:35                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:45:35                         tester: 
23/10/2019 02:45:40                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769940.71 root@10.240.176.173:/tmp/tester/
23/10/2019 02:45:42                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769940.71 root@10.240.176.173:/tmp/tester/
23/10/2019 02:45:43                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769940.71
23/10/2019 02:45:44                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=6, src='2001:db8:85a3:8d3:1319:8a2e:370:7344', dst='2002:db8:85a3:8d3:1319:8a2e:370:7344', version=6, hlim=64, plen=20, fl=0, tc=0)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=61210, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:45:47                         tester: ls -d /tmp/tester/
23/10/2019 02:45:48                         tester: /tmp/tester/
23/10/2019 02:45:48                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:45:48                         tester: 
23/10/2019 02:45:53                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571769953.28 root@10.240.176.173:/tmp/tester/
23/10/2019 02:45:54                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571769953.28 root@10.240.176.173:/tmp/tester/
23/10/2019 02:45:56                         tester: python /tmp/tester/scapy_ens160f0.cmd1571769953.28
23/10/2019 02:45:56                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='::1', dst='::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=0, sport=0, len=8, chksum=65500)
.
Sent 1 packets.
23/10/2019 02:46:00             dut.10.240.176.196: ^C
23/10/2019 02:46:00             dut.10.240.176.196: 
23/10/2019 02:46:00             dut.10.240.176.196: rm -rf  /root/rule_ipv4.db
23/10/2019 02:46:00             dut.10.240.176.196: 
23/10/2019 02:46:00             dut.10.240.176.196: rm -rf  /root/rule_ipv6.db
23/10/2019 02:46:00             dut.10.240.176.196: 
23/10/2019 02:46:00                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Result PASSED:
23/10/2019 02:46:00             dut.10.240.176.196: kill_all: called by dut and has no prefix list.
23/10/2019 02:46:04                            dts: 
TEST SUITE ENDED: TestL3fwdacl
23/10/2019 02:49:23                            dts: 
TEST SUITE : TestL3fwdacl
23/10/2019 02:49:23                            dts: NIC :        fortville_eagle
23/10/2019 02:49:23             dut.10.240.176.196: 
23/10/2019 02:49:23                         tester: 
23/10/2019 02:49:23             dut.10.240.176.196: export RTE_SDK=`pwd`
23/10/2019 02:49:23             dut.10.240.176.196: 
23/10/2019 02:49:23             dut.10.240.176.196: rm -rf ./app/test/test_resource_c.res.o
23/10/2019 02:49:23             dut.10.240.176.196: 
23/10/2019 02:49:23             dut.10.240.176.196: rm -rf ./app/test/test_resource_tar.res.o
23/10/2019 02:49:23             dut.10.240.176.196: 
23/10/2019 02:49:23             dut.10.240.176.196: rm -rf ./app/test/test_pci_sysfs.res.o
23/10/2019 02:49:23             dut.10.240.176.196: 
23/10/2019 02:49:23             dut.10.240.176.196: make -j 38 -C examples/l3fwd-acl 
23/10/2019 02:49:25             dut.10.240.176.196: make: Entering directory '/root/dpdk/examples/l3fwd-acl'
/bin/sh: 1: pkg-config: not found
/bin/sh: 1: pkg-config: not found
  CC main.o
  LD l3fwd-acl
  INSTALL-APP l3fwd-acl
  INSTALL-MAP l3fwd-acl.map
make: Leaving directory '/root/dpdk/examples/l3fwd-acl'
23/10/2019 02:49:25                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Begin
23/10/2019 02:49:25             dut.10.240.176.196: 
23/10/2019 02:49:25                         tester: 
23/10/2019 02:49:25             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:49:26             dut.10.240.176.196: 
23/10/2019 02:49:26             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 02:49:26             dut.10.240.176.196: 
23/10/2019 02:49:26             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:49:26             dut.10.240.176.196: 
23/10/2019 02:49:26             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 02:49:26             dut.10.240.176.196: 
23/10/2019 02:49:26             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:49:26             dut.10.240.176.196: 
23/10/2019 02:49:26             dut.10.240.176.196: echo @200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:49:26             dut.10.240.176.196: 
23/10/2019 02:49:26             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:49:26             dut.10.240.176.196: 
23/10/2019 02:49:26             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:49:27             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:49:27                         tester: ls -d /tmp/tester/
23/10/2019 02:49:27                         tester: /tmp/tester/
23/10/2019 02:49:27                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:49:27                         tester: 
23/10/2019 02:49:32                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770172.81 root@10.240.176.173:/tmp/tester/
23/10/2019 02:49:34                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770172.81 root@10.240.176.173:/tmp/tester/
23/10/2019 02:49:35                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770172.81
23/10/2019 02:49:36                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:49:39                         tester: ls -d /tmp/tester/
23/10/2019 02:49:40                         tester: /tmp/tester/
23/10/2019 02:49:40                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:49:40                         tester: 
23/10/2019 02:49:45                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770185.37 root@10.240.176.173:/tmp/tester/
23/10/2019 02:49:46                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770185.37 root@10.240.176.173:/tmp/tester/
23/10/2019 02:49:48                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770185.37
23/10/2019 02:49:48                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.1', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 02:49:52             dut.10.240.176.196: ^C
23/10/2019 02:49:52             dut.10.240.176.196: 
23/10/2019 02:49:52             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:49:52             dut.10.240.176.196: 
23/10/2019 02:49:52             dut.10.240.176.196: echo @0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:49:52             dut.10.240.176.196: 
23/10/2019 02:49:52             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:49:52             dut.10.240.176.196: 
23/10/2019 02:49:52             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:49:53             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 100.10.0.1/32 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:49:53                         tester: ls -d /tmp/tester/
23/10/2019 02:49:53                         tester: /tmp/tester/
23/10/2019 02:49:53                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:49:53                         tester: 
23/10/2019 02:49:58                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770198.99 root@10.240.176.173:/tmp/tester/
23/10/2019 02:50:00                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770198.99 root@10.240.176.173:/tmp/tester/
23/10/2019 02:50:01                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770198.99
23/10/2019 02:50:02                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:50:06                         tester: ls -d /tmp/tester/
23/10/2019 02:50:06                         tester: /tmp/tester/
23/10/2019 02:50:06                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:50:06                         tester: 
23/10/2019 02:50:11                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770211.56 root@10.240.176.173:/tmp/tester/
23/10/2019 02:50:13                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770211.56 root@10.240.176.173:/tmp/tester/
23/10/2019 02:50:14                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770211.56
23/10/2019 02:50:15                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.2', chksum=20153, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54102)
.
Sent 1 packets.
23/10/2019 02:50:18             dut.10.240.176.196: ^C
23/10/2019 02:50:18             dut.10.240.176.196: 
23/10/2019 02:50:18             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:50:18             dut.10.240.176.196: 
23/10/2019 02:50:18             dut.10.240.176.196: echo @0.0.0.0/0 0.0.0.0/0 11 : 11 0 : 65535 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:50:19             dut.10.240.176.196: 
23/10/2019 02:50:19             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:50:19             dut.10.240.176.196: 
23/10/2019 02:50:19             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:50:19             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 0.0.0.0/0 11 : 11 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e0826c0
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:50:19                         tester: ls -d /tmp/tester/
23/10/2019 02:50:20                         tester: /tmp/tester/
23/10/2019 02:50:20                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:50:20                         tester: 
23/10/2019 02:50:25                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770225.2 root@10.240.176.173:/tmp/tester/
23/10/2019 02:50:26                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770225.2 root@10.240.176.173:/tmp/tester/
23/10/2019 02:50:27                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770225.2
23/10/2019 02:50:28                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:50:32                         tester: ls -d /tmp/tester/
23/10/2019 02:50:32                         tester: /tmp/tester/
23/10/2019 02:50:32                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:50:32                         tester: 
23/10/2019 02:50:37                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770237.74 root@10.240.176.173:/tmp/tester/
23/10/2019 02:50:39                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770237.74 root@10.240.176.173:/tmp/tester/
23/10/2019 02:50:40                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770237.74
23/10/2019 02:50:41                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=0, len=8, chksum=54114)
.
Sent 1 packets.
23/10/2019 02:50:44             dut.10.240.176.196: ^C
23/10/2019 02:50:44             dut.10.240.176.196: 
23/10/2019 02:50:44             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:50:45             dut.10.240.176.196: 
23/10/2019 02:50:45             dut.10.240.176.196: echo @0.0.0.0/0 0.0.0.0/0 0 : 65535 101 : 101 0x00/0x00  >> /root/rule_ipv4.db
23/10/2019 02:50:45             dut.10.240.176.196: 
23/10/2019 02:50:45             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:50:45             dut.10.240.176.196: 
23/10/2019 02:50:45             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:50:45             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 101 : 101 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e0826c0
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:50:45                         tester: ls -d /tmp/tester/
23/10/2019 02:50:46                         tester: /tmp/tester/
23/10/2019 02:50:46                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:50:46                         tester: 
23/10/2019 02:50:51                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770251.35 root@10.240.176.173:/tmp/tester/
23/10/2019 02:50:52                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770251.35 root@10.240.176.173:/tmp/tester/
23/10/2019 02:50:54                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770251.35
23/10/2019 02:50:54                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:50:58                         tester: ls -d /tmp/tester/
23/10/2019 02:50:58                         tester: /tmp/tester/
23/10/2019 02:50:58                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:50:58                         tester: 
23/10/2019 02:51:03                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770263.92 root@10.240.176.173:/tmp/tester/
23/10/2019 02:51:05                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770263.92 root@10.240.176.173:/tmp/tester/
23/10/2019 02:51:06                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770263.92
23/10/2019 02:51:07                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=11, len=8, chksum=54204)
.
Sent 1 packets.
23/10/2019 02:51:11             dut.10.240.176.196: ^C
23/10/2019 02:51:11             dut.10.240.176.196: 
23/10/2019 02:51:11             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:51:11             dut.10.240.176.196: 
23/10/2019 02:51:11             dut.10.240.176.196: echo @0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x06/0xff  >> /root/rule_ipv4.db
23/10/2019 02:51:11             dut.10.240.176.196: 
23/10/2019 02:51:11             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:51:11             dut.10.240.176.196: 
23/10/2019 02:51:11             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:51:12             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082700
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:51:12                         tester: ls -d /tmp/tester/
23/10/2019 02:51:12                         tester: /tmp/tester/
23/10/2019 02:51:12                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:51:12                         tester: 
23/10/2019 02:51:17                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770277.55 root@10.240.176.173:/tmp/tester/
23/10/2019 02:51:19                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770277.55 root@10.240.176.173:/tmp/tester/
23/10/2019 02:51:20                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770277.55
23/10/2019 02:51:21                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=6, tos=0, dst='100.10.0.1', chksum=20153, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25436, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:51:24                         tester: ls -d /tmp/tester/
23/10/2019 02:51:24                         tester: /tmp/tester/
23/10/2019 02:51:24                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:51:25                         tester: 
23/10/2019 02:51:30                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770290.11 root@10.240.176.173:/tmp/tester/
23/10/2019 02:51:31                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770290.11 root@10.240.176.173:/tmp/tester/
23/10/2019 02:51:32                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770290.11
23/10/2019 02:51:33                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=17, tos=0, dst='100.10.0.1', chksum=20154, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=101, sport=11, len=8, chksum=54103)
.
Sent 1 packets.
23/10/2019 02:51:37             dut.10.240.176.196: ^C
23/10/2019 02:51:37             dut.10.240.176.196: 
23/10/2019 02:51:37             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:51:37             dut.10.240.176.196: 
23/10/2019 02:51:37             dut.10.240.176.196: echo @200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x06/0xff  >> /root/rule_ipv4.db
23/10/2019 02:51:37             dut.10.240.176.196: 
23/10/2019 02:51:37             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:51:37             dut.10.240.176.196: 
23/10/2019 02:51:37             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:51:38             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:51:38                         tester: ls -d /tmp/tester/
23/10/2019 02:51:38                         tester: /tmp/tester/
23/10/2019 02:51:38                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:51:38                         tester: 
23/10/2019 02:51:43                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770303.73 root@10.240.176.173:/tmp/tester/
23/10/2019 02:51:45                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770303.73 root@10.240.176.173:/tmp/tester/
23/10/2019 02:51:46                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770303.73
23/10/2019 02:51:47                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=6, tos=0, dst='100.10.0.1', chksum=20153, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25436, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:51:50                         tester: ls -d /tmp/tester/
23/10/2019 02:51:51                         tester: /tmp/tester/
23/10/2019 02:51:51                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:51:51                         tester: 
23/10/2019 02:51:56                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770316.28 root@10.240.176.173:/tmp/tester/
23/10/2019 02:51:57                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770316.28 root@10.240.176.173:/tmp/tester/
23/10/2019 02:51:59                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770316.28
23/10/2019 02:51:59                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.2', chksum=20152, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=54213)
.
Sent 1 packets.
23/10/2019 02:52:03             dut.10.240.176.196: ^C
23/10/2019 02:52:03             dut.10.240.176.196: 
23/10/2019 02:52:03             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:52:03             dut.10.240.176.196: 
23/10/2019 02:52:03             dut.10.240.176.196: echo @2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv6.db
23/10/2019 02:52:03             dut.10.240.176.196: 
23/10/2019 02:52:03             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:52:03             dut.10.240.176.196: 
23/10/2019 02:52:03             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:52:04             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:52:04                         tester: ls -d /tmp/tester/
23/10/2019 02:52:04                         tester: /tmp/tester/
23/10/2019 02:52:04                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:52:04                         tester: 
23/10/2019 02:52:09                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770329.88 root@10.240.176.173:/tmp/tester/
23/10/2019 02:52:11                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770329.88 root@10.240.176.173:/tmp/tester/
23/10/2019 02:52:12                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770329.88
23/10/2019 02:52:13                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='2001:db8:85a3:8d3:1319:8a2e:370:7344', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=11842)
.
Sent 1 packets.
23/10/2019 02:52:17                         tester: ls -d /tmp/tester/
23/10/2019 02:52:17                         tester: /tmp/tester/
23/10/2019 02:52:17                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:52:17                         tester: 
23/10/2019 02:52:22                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770342.45 root@10.240.176.173:/tmp/tester/
23/10/2019 02:52:23                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770342.45 root@10.240.176.173:/tmp/tester/
23/10/2019 02:52:25                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770342.45
23/10/2019 02:52:25                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=65132)
.
Sent 1 packets.
23/10/2019 02:52:29             dut.10.240.176.196: ^C
23/10/2019 02:52:29             dut.10.240.176.196: 
23/10/2019 02:52:29             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:52:29             dut.10.240.176.196: 
23/10/2019 02:52:29             dut.10.240.176.196: echo @0:0:0:0:0:0:0:0/0 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 0 : 65535 0 : 65535 0x00/0x00  >> /root/rule_ipv6.db
23/10/2019 02:52:29             dut.10.240.176.196: 
23/10/2019 02:52:29             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:52:30             dut.10.240.176.196: 
23/10/2019 02:52:30             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:52:30             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:52:30                         tester: ls -d /tmp/tester/
23/10/2019 02:52:30                         tester: /tmp/tester/
23/10/2019 02:52:30                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:52:31                         tester: 
23/10/2019 02:52:36                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770356.06 root@10.240.176.173:/tmp/tester/
23/10/2019 02:52:37                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770356.06 root@10.240.176.173:/tmp/tester/
23/10/2019 02:52:38                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770356.06
23/10/2019 02:52:39                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='2002:db8:85a3:8d3:1319:8a2e:370:7344', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=11585)
.
Sent 1 packets.
23/10/2019 02:52:43                         tester: ls -d /tmp/tester/
23/10/2019 02:52:43                         tester: /tmp/tester/
23/10/2019 02:52:43                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:52:43                         tester: 
23/10/2019 02:52:48                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770368.63 root@10.240.176.173:/tmp/tester/
23/10/2019 02:52:50                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770368.63 root@10.240.176.173:/tmp/tester/
23/10/2019 02:52:51                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770368.63
23/10/2019 02:52:52                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=64876)
.
Sent 1 packets.
23/10/2019 02:52:55             dut.10.240.176.196: ^C
23/10/2019 02:52:55             dut.10.240.176.196: 
23/10/2019 02:52:55             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:52:55             dut.10.240.176.196: 
23/10/2019 02:52:55             dut.10.240.176.196: echo @0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 11 : 11 0 : 65535 0x00/0x00  >> /root/rule_ipv6.db
23/10/2019 02:52:56             dut.10.240.176.196: 
23/10/2019 02:52:56             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:52:56             dut.10.240.176.196: 
23/10/2019 02:52:56             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:52:56             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 11 : 11 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:52:56                         tester: ls -d /tmp/tester/
23/10/2019 02:52:57                         tester: /tmp/tester/
23/10/2019 02:52:57                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:52:57                         tester: 
23/10/2019 02:53:02                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770382.24 root@10.240.176.173:/tmp/tester/
23/10/2019 02:53:03                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770382.24 root@10.240.176.173:/tmp/tester/
23/10/2019 02:53:05                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770382.24
23/10/2019 02:53:05                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=64620)
.
Sent 1 packets.
23/10/2019 02:53:09                         tester: ls -d /tmp/tester/
23/10/2019 02:53:09                         tester: /tmp/tester/
23/10/2019 02:53:09                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:53:09                         tester: 
23/10/2019 02:53:14                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770394.79 root@10.240.176.173:/tmp/tester/
23/10/2019 02:53:16                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770394.79 root@10.240.176.173:/tmp/tester/
23/10/2019 02:53:17                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770394.79
23/10/2019 02:53:18                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=0, len=8, chksum=64631)
.
Sent 1 packets.
23/10/2019 02:53:21             dut.10.240.176.196: ^C
23/10/2019 02:53:22             dut.10.240.176.196: 
23/10/2019 02:53:22             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:53:22             dut.10.240.176.196: 
23/10/2019 02:53:22             dut.10.240.176.196: echo @0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 101 : 101 0x00/0x00  >> /root/rule_ipv6.db
23/10/2019 02:53:22             dut.10.240.176.196: 
23/10/2019 02:53:22             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:53:22             dut.10.240.176.196: 
23/10/2019 02:53:22             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:53:23             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 101 : 101 0x0/0x0 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:53:23                         tester: ls -d /tmp/tester/
23/10/2019 02:53:23                         tester: /tmp/tester/
23/10/2019 02:53:23                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:53:23                         tester: 
23/10/2019 02:53:28                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770408.41 root@10.240.176.173:/tmp/tester/
23/10/2019 02:53:29                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770408.41 root@10.240.176.173:/tmp/tester/
23/10/2019 02:53:31                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770408.41
23/10/2019 02:53:31                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=64620)
.
Sent 1 packets.
23/10/2019 02:53:35                         tester: ls -d /tmp/tester/
23/10/2019 02:53:35                         tester: /tmp/tester/
23/10/2019 02:53:35                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:53:35                         tester: 
23/10/2019 02:53:40                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770420.97 root@10.240.176.173:/tmp/tester/
23/10/2019 02:53:42                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770420.97 root@10.240.176.173:/tmp/tester/
23/10/2019 02:53:43                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770420.97
23/10/2019 02:53:44                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=0, sport=11, len=8, chksum=64721)
.
Sent 1 packets.
23/10/2019 02:53:48             dut.10.240.176.196: ^C
23/10/2019 02:53:48             dut.10.240.176.196: 
23/10/2019 02:53:48             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:53:48             dut.10.240.176.196: 
23/10/2019 02:53:48             dut.10.240.176.196: echo @0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x06/0xff  >> /root/rule_ipv6.db
23/10/2019 02:53:48             dut.10.240.176.196: 
23/10/2019 02:53:48             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:53:48             dut.10.240.176.196: 
23/10/2019 02:53:48             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:53:49             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:53:49                         tester: ls -d /tmp/tester/
23/10/2019 02:53:49                         tester: /tmp/tester/
23/10/2019 02:53:49                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:53:49                         tester: 
23/10/2019 02:53:54                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770434.57 root@10.240.176.173:/tmp/tester/
23/10/2019 02:53:56                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770434.57 root@10.240.176.173:/tmp/tester/
23/10/2019 02:53:57                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770434.57
23/10/2019 02:53:58                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=6, src='200::1', dst='100::1', version=6, hlim=64, plen=20, fl=0, tc=0)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=35953, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:54:01                         tester: ls -d /tmp/tester/
23/10/2019 02:54:01                         tester: /tmp/tester/
23/10/2019 02:54:01                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:54:02                         tester: 
23/10/2019 02:54:07                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770447.13 root@10.240.176.173:/tmp/tester/
23/10/2019 02:54:08                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770447.13 root@10.240.176.173:/tmp/tester/
23/10/2019 02:54:09                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770447.13
23/10/2019 02:54:10                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='200::1', dst='100::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=101, sport=11, len=8, chksum=64620)
.
Sent 1 packets.
23/10/2019 02:54:14             dut.10.240.176.196: ^C
23/10/2019 02:54:14             dut.10.240.176.196: 
23/10/2019 02:54:14             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:54:14             dut.10.240.176.196: 
23/10/2019 02:54:14             dut.10.240.176.196: echo @2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 11 : 11 101 : 101 0x06/0xff  >> /root/rule_ipv6.db
23/10/2019 02:54:14             dut.10.240.176.196: 
23/10/2019 02:54:14             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:54:14             dut.10.240.176.196: 
23/10/2019 02:54:14             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:54:15             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:54:15                         tester: ls -d /tmp/tester/
23/10/2019 02:54:15                         tester: /tmp/tester/
23/10/2019 02:54:15                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:54:15                         tester: 
23/10/2019 02:54:20                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770460.74 root@10.240.176.173:/tmp/tester/
23/10/2019 02:54:22                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770460.74 root@10.240.176.173:/tmp/tester/
23/10/2019 02:54:23                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770460.74
23/10/2019 02:54:24                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=6, src='2001:db8:85a3:8d3:1319:8a2e:370:7344', dst='2002:db8:85a3:8d3:1319:8a2e:370:7344', version=6, hlim=64, plen=20, fl=0, tc=0)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=61210, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:54:27                         tester: ls -d /tmp/tester/
23/10/2019 02:54:28                         tester: /tmp/tester/
23/10/2019 02:54:28                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:54:28                         tester: 
23/10/2019 02:54:33                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770473.32 root@10.240.176.173:/tmp/tester/
23/10/2019 02:54:34                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770473.32 root@10.240.176.173:/tmp/tester/
23/10/2019 02:54:36                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770473.32
23/10/2019 02:54:36                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='::1', dst='::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=0, sport=0, len=8, chksum=65500)
.
Sent 1 packets.
23/10/2019 02:54:40             dut.10.240.176.196: ^C
23/10/2019 02:54:40             dut.10.240.176.196: 
23/10/2019 02:54:40             dut.10.240.176.196: rm -rf  /root/rule_ipv4.db
23/10/2019 02:54:40             dut.10.240.176.196: 
23/10/2019 02:54:40             dut.10.240.176.196: rm -rf  /root/rule_ipv6.db
23/10/2019 02:54:40             dut.10.240.176.196: 
23/10/2019 02:54:40                   TestL3fwdacl: Test Case test_l3fwdacl_acl_rule Result PASSED:
23/10/2019 02:54:40                   TestL3fwdacl: Test Case test_l3fwdacl_exact_route Begin
23/10/2019 02:54:40             dut.10.240.176.196: 
23/10/2019 02:54:40                         tester: 
23/10/2019 02:54:40             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:54:41             dut.10.240.176.196: 
23/10/2019 02:54:41             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 02:54:41             dut.10.240.176.196: 
23/10/2019 02:54:41             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:54:41             dut.10.240.176.196: 
23/10/2019 02:54:41             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 02:54:41             dut.10.240.176.196: 
23/10/2019 02:54:41             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:54:41             dut.10.240.176.196: 
23/10/2019 02:54:41             dut.10.240.176.196: echo R200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x06/0xff 0 >> /root/rule_ipv4.db
23/10/2019 02:54:41             dut.10.240.176.196: 
23/10/2019 02:54:41             dut.10.240.176.196: echo R200.20.0.1/32 100.20.0.1/32 12 : 12 102 : 102 0x06/0xff 1 >> /root/rule_ipv4.db
23/10/2019 02:54:41             dut.10.240.176.196: 
23/10/2019 02:54:41             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:54:42             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 2:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0x1 
	2:200.20.0.1/32 100.20.0.1/32 12 : 12 102 : 102 0x6/0xff 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 0:
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082500
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:54:42                         tester: ls -d /tmp/tester/
23/10/2019 02:54:42                         tester: /tmp/tester/
23/10/2019 02:54:42                         tester: rm -rf /tmp/tester/sniff_ens160f0.pcap
23/10/2019 02:54:42                         tester: 
23/10/2019 02:54:47                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770487.81 root@10.240.176.173:/tmp/tester/
23/10/2019 02:54:49                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770487.81 root@10.240.176.173:/tmp/tester/
23/10/2019 02:54:50                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770487.81
23/10/2019 02:54:51                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=6, tos=0, dst='100.10.0.1', chksum=20153, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25436, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:54:54                         tester: ls -d /tmp/tester/
23/10/2019 02:54:55                         tester: /tmp/tester/
23/10/2019 02:54:55                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:54:55                         tester: 
23/10/2019 02:55:00                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770500.37 root@10.240.176.173:/tmp/tester/
23/10/2019 02:55:01                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770500.37 root@10.240.176.173:/tmp/tester/
23/10/2019 02:55:03                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770500.37
23/10/2019 02:55:03                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.20.0.1', proto=6, tos=0, dst='100.20.0.1', chksum=20133, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25414, dport=102, sport=12)
.
Sent 1 packets.
23/10/2019 02:55:07             dut.10.240.176.196: ^C
23/10/2019 02:55:07             dut.10.240.176.196: 
23/10/2019 02:55:07             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:55:07             dut.10.240.176.196: 
23/10/2019 02:55:07             dut.10.240.176.196: echo R2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 11 : 11 101 : 101 0x06/0xff 0 >> /root/rule_ipv6.db
23/10/2019 02:55:07             dut.10.240.176.196: 
23/10/2019 02:55:07             dut.10.240.176.196: echo R2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 12 : 12 102 : 102 0x06/0xff 1 >> /root/rule_ipv6.db
23/10/2019 02:55:07             dut.10.240.176.196: 
23/10/2019 02:55:07             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:55:08             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 2:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0x1 
	2:200.20.0.1/32 100.20.0.1/32 12 : 12 102 : 102 0x6/0xff 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 0:
L3FWDACL: IPv6 Route entries 2:
	1:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0x1 
	2:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/128 12 : 12 102 : 102 0x6/0xff 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082500
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:55:08                         tester: ls -d /tmp/tester/
23/10/2019 02:55:08                         tester: /tmp/tester/
23/10/2019 02:55:08                         tester: rm -rf /tmp/tester/sniff_ens160f0.pcap
23/10/2019 02:55:08                         tester: 
23/10/2019 02:55:13                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770513.99 root@10.240.176.173:/tmp/tester/
23/10/2019 02:55:15                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770513.99 root@10.240.176.173:/tmp/tester/
23/10/2019 02:55:16                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770513.99
23/10/2019 02:55:17                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=6, src='2001:db8:85a3:8d3:1319:8a2e:370:7344', dst='2002:db8:85a3:8d3:1319:8a2e:370:7344', version=6, hlim=64, plen=20, fl=0, tc=0)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=61210, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:55:21                         tester: ls -d /tmp/tester/
23/10/2019 02:55:21                         tester: /tmp/tester/
23/10/2019 02:55:21                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:55:21                         tester: 
23/10/2019 02:55:26                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770526.59 root@10.240.176.173:/tmp/tester/
23/10/2019 02:55:28                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770526.59 root@10.240.176.173:/tmp/tester/
23/10/2019 02:55:29                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770526.59
23/10/2019 02:55:30                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=6, src='2001:db8:85a3:8d3:1319:8a2e:370:7344', dst='2002:db8:85a3:8d3:1319:8a2e:370:7344', version=6, hlim=64, plen=20, fl=0, tc=0)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=61208, dport=102, sport=12)
.
Sent 1 packets.
23/10/2019 02:55:33             dut.10.240.176.196: ^C
23/10/2019 02:55:33             dut.10.240.176.196: 
23/10/2019 02:55:33             dut.10.240.176.196: rm -rf  /root/rule_ipv4.db
23/10/2019 02:55:33             dut.10.240.176.196: 
23/10/2019 02:55:33             dut.10.240.176.196: rm -rf  /root/rule_ipv6.db
23/10/2019 02:55:34             dut.10.240.176.196: 
23/10/2019 02:55:34                   TestL3fwdacl: Test Case test_l3fwdacl_exact_route Result PASSED:
23/10/2019 02:55:34                   TestL3fwdacl: Test Case test_l3fwdacl_invalid Begin
23/10/2019 02:55:34             dut.10.240.176.196: 
23/10/2019 02:55:34                         tester: 
23/10/2019 02:55:34             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:55:34             dut.10.240.176.196: 
23/10/2019 02:55:34             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 02:55:34             dut.10.240.176.196: 
23/10/2019 02:55:34             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:55:34             dut.10.240.176.196: 
23/10/2019 02:55:34             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 02:55:34             dut.10.240.176.196: 
23/10/2019 02:55:34             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:55:34             dut.10.240.176.196: 
23/10/2019 02:55:34             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 12 : 11 0 : 65535 0x00/0x00 0 >> /root/rule_ipv4.db
23/10/2019 02:55:34             dut.10.240.176.196: 
23/10/2019 02:55:34             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:55:35             dut.10.240.176.196: 
23/10/2019 02:55:35             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
23/10/2019 02:55:35             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
23/10/2019 02:55:35             dut.10.240.176.196: ^C
23/10/2019 02:55:35             dut.10.240.176.196: ^C
23/10/2019 02:55:35             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:55:35             dut.10.240.176.196: 
23/10/2019 02:55:35             dut.10.240.176.196: echo @R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 0 >> /root/rule_ipv4.db
23/10/2019 02:55:35             dut.10.240.176.196: 
23/10/2019 02:55:35             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:55:36             dut.10.240.176.196: 
23/10/2019 02:55:36             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
23/10/2019 02:55:36             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: failed to read source address/mask: R0.0.0.0/0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
23/10/2019 02:55:36             dut.10.240.176.196: ^C
23/10/2019 02:55:36             dut.10.240.176.196: ^C
23/10/2019 02:55:36             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:55:36             dut.10.240.176.196: 
23/10/2019 02:55:36             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535   >> /root/rule_ipv4.db
23/10/2019 02:55:36             dut.10.240.176.196: 
23/10/2019 02:55:36             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:55:37             dut.10.240.176.196: 
23/10/2019 02:55:37             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
23/10/2019 02:55:37             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
23/10/2019 02:55:37             dut.10.240.176.196: ^C
23/10/2019 02:55:37             dut.10.240.176.196: ^C
23/10/2019 02:55:37             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:55:37             dut.10.240.176.196: 
23/10/2019 02:55:37             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 12 : 11 0 : 65535 0x00/0x00 0 >> /root/rule_ipv6.db
23/10/2019 02:55:37             dut.10.240.176.196: 
23/10/2019 02:55:37             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:55:38             dut.10.240.176.196: 
23/10/2019 02:55:38             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
23/10/2019 02:55:38             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
23/10/2019 02:55:38             dut.10.240.176.196: ^C
23/10/2019 02:55:38             dut.10.240.176.196: ^C
23/10/2019 02:55:38             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:55:38             dut.10.240.176.196: 
23/10/2019 02:55:38             dut.10.240.176.196: echo @R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 0 >> /root/rule_ipv6.db
23/10/2019 02:55:38             dut.10.240.176.196: 
23/10/2019 02:55:38             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:55:38             dut.10.240.176.196: 
23/10/2019 02:55:38             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
23/10/2019 02:55:39             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
23/10/2019 02:55:39             dut.10.240.176.196: ^C
23/10/2019 02:55:39             dut.10.240.176.196: ^C
23/10/2019 02:55:39             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:55:39             dut.10.240.176.196: 
23/10/2019 02:55:39             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535   >> /root/rule_ipv6.db
23/10/2019 02:55:39             dut.10.240.176.196: 
23/10/2019 02:55:39             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:55:39             dut.10.240.176.196: 
23/10/2019 02:55:39             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db"
23/10/2019 02:55:40             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: parse rules error
23/10/2019 02:55:40             dut.10.240.176.196: ^C
23/10/2019 02:55:40             dut.10.240.176.196: ^C
23/10/2019 02:55:40             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:55:40             dut.10.240.176.196: 
23/10/2019 02:55:40             dut.10.240.176.196: echo R200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x06/0xff 99 >> /root/rule_ipv4.db
23/10/2019 02:55:40             dut.10.240.176.196: 
23/10/2019 02:55:40             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" --scalar
23/10/2019 02:55:41             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 1
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: fwd number illegal:99
23/10/2019 02:55:41             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:55:41             dut.10.240.176.196: 
23/10/2019 02:55:41             dut.10.240.176.196: echo @2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/101 11 : 11 101 : 101 0x06/0xff 99 >> /root/rule_ipv6.db
23/10/2019 02:55:41             dut.10.240.176.196: 
23/10/2019 02:55:41             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" --scalar
23/10/2019 02:55:42             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 1
EAL: Error - exiting with code: 1
  Cause: /root/rule_ipv4.db Line 2: fwd number illegal:99
23/10/2019 02:55:42             dut.10.240.176.196: rm -rf  /root/rule_ipv4.db
23/10/2019 02:55:42             dut.10.240.176.196: 
23/10/2019 02:55:42             dut.10.240.176.196: rm -rf  /root/rule_ipv6.db
23/10/2019 02:55:42             dut.10.240.176.196: 
23/10/2019 02:55:42                   TestL3fwdacl: Test Case test_l3fwdacl_invalid Result PASSED:
23/10/2019 02:55:42                   TestL3fwdacl: Test Case test_l3fwdacl_lpm_route Begin
23/10/2019 02:55:42             dut.10.240.176.196: 
23/10/2019 02:55:42                         tester: 
23/10/2019 02:55:42             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:55:42             dut.10.240.176.196: 
23/10/2019 02:55:42             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 02:55:42             dut.10.240.176.196: 
23/10/2019 02:55:42             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:55:43             dut.10.240.176.196: 
23/10/2019 02:55:43             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 02:55:43             dut.10.240.176.196: 
23/10/2019 02:55:43             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:55:43             dut.10.240.176.196: 
23/10/2019 02:55:43             dut.10.240.176.196: echo R0.0.0.0/0 1.1.1.0/24 0 : 65535 0 : 65535 0x00/0x00 0 >> /root/rule_ipv4.db
23/10/2019 02:55:43             dut.10.240.176.196: 
23/10/2019 02:55:43             dut.10.240.176.196: echo R0.0.0.0/0 2.1.1.0/24 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:55:43             dut.10.240.176.196: 
23/10/2019 02:55:43             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:55:44             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 2:
	1:0.0.0.0/0 1.1.1.0/24 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x1 
	2:0.0.0.0/0 2.1.1.0/24 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 0:
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:55:44                         tester: ls -d /tmp/tester/
23/10/2019 02:55:44                         tester: /tmp/tester/
23/10/2019 02:55:44                         tester: rm -rf /tmp/tester/sniff_ens160f0.pcap
23/10/2019 02:55:44                         tester: 
23/10/2019 02:55:49                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770549.55 root@10.240.176.173:/tmp/tester/
23/10/2019 02:55:50                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770549.55 root@10.240.176.173:/tmp/tester/
23/10/2019 02:55:52                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770549.55
23/10/2019 02:55:53                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='0.0.0.0', proto=17, tos=0, dst='1.1.1.0', chksum=30928, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=64989)
.
Sent 1 packets.
23/10/2019 02:55:56                         tester: ls -d /tmp/tester/
23/10/2019 02:55:56                         tester: /tmp/tester/
23/10/2019 02:55:56                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:55:57                         tester: 
23/10/2019 02:56:02                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770562.11 root@10.240.176.173:/tmp/tester/
23/10/2019 02:56:03                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770562.11 root@10.240.176.173:/tmp/tester/
23/10/2019 02:56:04                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770562.11
23/10/2019 02:56:05                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='0.0.0.0', proto=17, tos=0, dst='2.1.1.0', chksum=30672, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=64733)
.
Sent 1 packets.
23/10/2019 02:56:09             dut.10.240.176.196: ^C
23/10/2019 02:56:09             dut.10.240.176.196: 
23/10/2019 02:56:09             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:56:09             dut.10.240.176.196: 
23/10/2019 02:56:09             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 1:1:1:1:1:1:0:0/96 0 : 65535 0 : 65535 0x00/0x00 0 >> /root/rule_ipv6.db
23/10/2019 02:56:09             dut.10.240.176.196: 
23/10/2019 02:56:09             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 2:1:1:1:1:1:0:0/96 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:56:09             dut.10.240.176.196: 
23/10/2019 02:56:09             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" 
23/10/2019 02:56:10             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 0
L3FWDACL: IPv4 Route entries 2:
	1:0.0.0.0/0 1.1.1.0/24 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x1 
	2:0.0.0.0/0 2.1.1.0/24 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 0:
L3FWDACL: IPv6 Route entries 2:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0001:0001:0001:0001:0001:0001:0000:0000/96 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x1 
	2:0000:0000:0000:0000:0000:0000:0000:0000/0 0002:0001:0001:0001:0001:0001:0000:0000/96 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082680
  socket_id=0
  alg=2
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:56:10                         tester: ls -d /tmp/tester/
23/10/2019 02:56:10                         tester: /tmp/tester/
23/10/2019 02:56:10                         tester: rm -rf /tmp/tester/sniff_ens160f0.pcap
23/10/2019 02:56:10                         tester: 
23/10/2019 02:56:15                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770575.72 root@10.240.176.173:/tmp/tester/
23/10/2019 02:56:17                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770575.72 root@10.240.176.173:/tmp/tester/
23/10/2019 02:56:18                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770575.72
23/10/2019 02:56:19                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='::', dst='1:1:1:1:1:1::', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=0, sport=0, len=8, chksum=65496)
.
Sent 1 packets.
23/10/2019 02:56:22                         tester: ls -d /tmp/tester/
23/10/2019 02:56:23                         tester: /tmp/tester/
23/10/2019 02:56:23                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:56:23                         tester: 
23/10/2019 02:56:28                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770588.31 root@10.240.176.173:/tmp/tester/
23/10/2019 02:56:29                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770588.31 root@10.240.176.173:/tmp/tester/
23/10/2019 02:56:31                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770588.31
23/10/2019 02:56:31                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='::', dst='2:1:1:1:1:1::', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=0, sport=0, len=8, chksum=65495)
.
Sent 1 packets.
23/10/2019 02:56:35             dut.10.240.176.196: ^C
23/10/2019 02:56:35             dut.10.240.176.196: 
23/10/2019 02:56:35             dut.10.240.176.196: rm -rf  /root/rule_ipv4.db
23/10/2019 02:56:35             dut.10.240.176.196: 
23/10/2019 02:56:35             dut.10.240.176.196: rm -rf  /root/rule_ipv6.db
23/10/2019 02:56:35             dut.10.240.176.196: 
23/10/2019 02:56:35                   TestL3fwdacl: Test Case test_l3fwdacl_lpm_route Result PASSED:
23/10/2019 02:56:35                   TestL3fwdacl: Test Case test_l3fwdacl_scalar Begin
23/10/2019 02:56:35             dut.10.240.176.196: 
23/10/2019 02:56:35                         tester: 
23/10/2019 02:56:35             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:56:36             dut.10.240.176.196: 
23/10/2019 02:56:36             dut.10.240.176.196: echo 'R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv4.db
23/10/2019 02:56:36             dut.10.240.176.196: 
23/10/2019 02:56:36             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:56:36             dut.10.240.176.196: 
23/10/2019 02:56:36             dut.10.240.176.196: echo 'R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1' >> /root/rule_ipv6.db
23/10/2019 02:56:36             dut.10.240.176.196: 
23/10/2019 02:56:36             dut.10.240.176.196: echo '' > /root/rule_ipv4.db
23/10/2019 02:56:36             dut.10.240.176.196: 
23/10/2019 02:56:36             dut.10.240.176.196: echo @200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x06/0xff  >> /root/rule_ipv4.db
23/10/2019 02:56:36             dut.10.240.176.196: 
23/10/2019 02:56:36             dut.10.240.176.196: echo R0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv4.db
23/10/2019 02:56:36             dut.10.240.176.196: 
23/10/2019 02:56:36             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" --scalar
23/10/2019 02:56:37             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 1
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1fffffff-0x2 
L3FWDACL: IPv6 ACL entries 0:
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=1
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=1
  max_rules=100000
  rule_size=192
  num_rules=1
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:56:37                         tester: ls -d /tmp/tester/
23/10/2019 02:56:37                         tester: /tmp/tester/
23/10/2019 02:56:37                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:56:37                         tester: 
23/10/2019 02:56:42                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770602.82 root@10.240.176.173:/tmp/tester/
23/10/2019 02:56:44                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770602.82 root@10.240.176.173:/tmp/tester/
23/10/2019 02:56:45                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770602.82
23/10/2019 02:56:46                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.1', proto=6, tos=0, dst='100.10.0.1', chksum=20153, len=40, id=1, version=4, flags=0, ihl=5, ttl=64)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=25436, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:56:49                         tester: ls -d /tmp/tester/
23/10/2019 02:56:50                         tester: /tmp/tester/
23/10/2019 02:56:50                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:56:50                         tester: 
23/10/2019 02:56:55                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770615.37 root@10.240.176.173:/tmp/tester/
23/10/2019 02:56:56                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770615.37 root@10.240.176.173:/tmp/tester/
23/10/2019 02:56:58                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770615.37
23/10/2019 02:56:58                         tester: packet ready for sending...
Ether(src='00:0c:29:05:5e:b3', dst='68:05:ca:bb:bb:a1', type=2048)/IP(frag=0, src='200.10.0.2', proto=17, tos=0, dst='100.10.0.2', chksum=20152, len=28, id=1, version=4, flags=0, ihl=5, ttl=64)/UDP(dport=0, sport=0, len=8, chksum=54213)
.
Sent 1 packets.
23/10/2019 02:57:02             dut.10.240.176.196: ^C
23/10/2019 02:57:02             dut.10.240.176.196: 
23/10/2019 02:57:02             dut.10.240.176.196: echo '' > /root/rule_ipv6.db
23/10/2019 02:57:02             dut.10.240.176.196: 
23/10/2019 02:57:02             dut.10.240.176.196: echo @2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/101 11 : 11 101 : 101 0x06/0xff  >> /root/rule_ipv6.db
23/10/2019 02:57:02             dut.10.240.176.196: 
23/10/2019 02:57:02             dut.10.240.176.196: echo R0:0:0:0:0:0:0:0/0 0:0:0:0:0:0:0:0/0 0 : 65535 0 : 65535 0x00/0x00 1 >> /root/rule_ipv6.db
23/10/2019 02:57:02             dut.10.240.176.196: 
23/10/2019 02:57:02             dut.10.240.176.196: ./examples/l3fwd-acl/build/l3fwd-acl -c 0x1e -n 4 -- -p 0x3 --config="(0,0,2),(1,0,3)" --rule_ipv4="/root/rule_ipv4.db" --rule_ipv6="/root/rule_ipv6.db" --scalar
23/10/2019 02:57:03             dut.10.240.176.196: EAL: Detected 40 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/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: PCI device 0000:02:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:02:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1521 net_e1000_igb
EAL: PCI device 0000:06:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:06:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: PCI device 0000:08:00.0 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
EAL: PCI device 0000:08:00.1 on NUMA socket 0
EAL:   probe driver: 8086:10fb net_ixgbe
ACL option are:
rule_ipv4: /root/rule_ipv4.db
rule_ipv6: /root/rule_ipv6.db
scalar: 1
L3FWDACL: IPv4 Route entries 1:
	1:0.0.0.0/0 0.0.0.0/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv4 ACL entries 1:
	1:200.10.0.1/32 100.10.0.1/32 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
L3FWDACL: IPv6 Route entries 1:
	1:0000:0000:0000:0000:0000:0000:0000:0000/0 0000:0000:0000:0000:0000:0000:0000:0000/0 0 : 65535 0 : 65535 0x0/0x0 0xffffffff-0x1ffffffe-0x2 
L3FWDACL: IPv6 ACL entries 1:
	1:2001:0db8:85a3:08d3:1319:8a2e:0370:7344/128 2002:0db8:85a3:08d3:1319:8a2e:0370:7344/101 11 : 11 101 : 101 0x6/0xff 0xffffffff-0x1fffffff-0xf0000000 
acl context <l3fwd-acl-ipv40>@0x17f2d3d80
  socket_id=0
  alg=1
  max_rules=100000
  rule_size=96
  num_rules=2
  num_categories=1
  num_tries=1
acl context <l3fwd-acl-ipv60>@0x17e082580
  socket_id=0
  alg=1
  max_rules=100000
  rule_size=192
  num_rules=2
  num_categories=1
  num_tries=1
Initializing port 0 ... Creating queues: nb_rxq=1 nb_txq=4... Port 0 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A1, Allocated mbuf pool on socket 0
txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 
Initializing port 1 ... Creating queues: nb_rxq=1 nb_txq=4... Port 1 modified RSS hash function based on hardware support,requested:0x3bffc configured:0x3ef8
 Address:68:05:CA:BB:BB:A2, txq=1,0,0 txq=2,1,0 txq=3,2,0 txq=4,3,0 

Initializing rx queues on lcore 1 ... 
Initializing rx queues on lcore 2 ... rxq=0,0,0 
Initializing rx queues on lcore 3 ... rxq=1,0,0 
Initializing rx queues on lcore 4 ... 

Checking link statusdone
Port0 Link Up. Speed 10000 Mbps full-duplex
Port1 Link Up. Speed 10000 Mbps full-duplex
23/10/2019 02:57:03                         tester: ls -d /tmp/tester/
23/10/2019 02:57:03                         tester: /tmp/tester/
23/10/2019 02:57:03                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:57:03                         tester: 
23/10/2019 02:57:08                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770628.98 root@10.240.176.173:/tmp/tester/
23/10/2019 02:57:10                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770628.98 root@10.240.176.173:/tmp/tester/
23/10/2019 02:57:11                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770628.98
23/10/2019 02:57:12                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=6, src='2001:db8:85a3:8d3:1319:8a2e:370:7344', dst='2002:db8:85a3:8d3:1319:8a2e:370:7344', version=6, hlim=64, plen=20, fl=0, tc=0)/TCP(reserved=0, seq=0, ack=0, dataofs=5, urgptr=0, window=8192, flags=2, chksum=61210, dport=101, sport=11)
.
Sent 1 packets.
23/10/2019 02:57:16                         tester: ls -d /tmp/tester/
23/10/2019 02:57:16                         tester: /tmp/tester/
23/10/2019 02:57:16                         tester: rm -rf /tmp/tester/sniff_ens160f1.pcap
23/10/2019 02:57:16                         tester: 
23/10/2019 02:57:21                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.pcap1571770641.54 root@10.240.176.173:/tmp/tester/
23/10/2019 02:57:22                         tester: scp -v /home/autoregression/zhushaui/output/tmp/pcap/scapy_ens160f0.cmd1571770641.54 root@10.240.176.173:/tmp/tester/
23/10/2019 02:57:24                         tester: python /tmp/tester/scapy_ens160f0.cmd1571770641.54
23/10/2019 02:57:25                         tester: packet ready for sending...
Ether(src='00:00:00:00:00:00', dst='68:05:ca:bb:bb:a1', type=34525)/IPv6(nh=17, src='::1', dst='::1', version=6, hlim=64, plen=8, fl=0, tc=0)/UDP(dport=0, sport=0, len=8, chksum=65500)
.
Sent 1 packets.
23/10/2019 02:57:28             dut.10.240.176.196: ^C
23/10/2019 02:57:28             dut.10.240.176.196: 
23/10/2019 02:57:28             dut.10.240.176.196: rm -rf  /root/rule_ipv4.db
23/10/2019 02:57:28             dut.10.240.176.196: 
23/10/2019 02:57:28             dut.10.240.176.196: rm -rf  /root/rule_ipv6.db
23/10/2019 02:57:29             dut.10.240.176.196: 
23/10/2019 02:57:29                   TestL3fwdacl: Test Case test_l3fwdacl_scalar Result PASSED:
23/10/2019 02:57:29             dut.10.240.176.196: kill_all: called by dut and has no prefix list.
23/10/2019 02:57:32                            dts: 
TEST SUITE ENDED: TestL3fwdacl

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

* Re: [dts] [PATCH V1] tests/l3fwdacl:Increase the time of the default timeout.
  2019-10-23  3:58 [dts] [PATCH V1] tests/l3fwdacl:Increase the time of the default timeout zhu,shuai
  2019-10-23  4:06 ` Zhu, WenhuiX
@ 2019-11-04  2:42 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2019-11-04  2:42 UTC (permalink / raw)
  To: Zhu, ShuaiX, dts; +Cc: Zhu, ShuaiX

Applied, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of zhu,shuai
> Sent: Wednesday, October 23, 2019 11:59 AM
> To: dts@dpdk.org
> Cc: Zhu, ShuaiX <shuaix.zhu@intel.com>
> Subject: [dts] [PATCH V1] tests/l3fwdacl:Increase the time of the default
> timeout.
> 
> Increase the default timeout time in the send_pkt method.
> 
> Signed-off-by: zhu,shuai <shuaix.zhu@intel.com>
> ---
>  tests/TestSuite_l3fwdacl.py | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/tests/TestSuite_l3fwdacl.py b/tests/TestSuite_l3fwdacl.py index
> dce37de..564ceb2 100644
> --- a/tests/TestSuite_l3fwdacl.py
> +++ b/tests/TestSuite_l3fwdacl.py
> @@ -272,7 +272,7 @@ class TestL3fwdacl(TestCase):
>          inst = self.tester.tcpdump_sniff_packets(rx_interface, filters=filters)
>          pkt = packet.Packet()
>          pkt.append_pkt(ethernet_str)
> -        pkt.send_pkt(crb=self.tester, tx_port=tx_interface)
> +        pkt.send_pkt(crb=self.tester, tx_port=tx_interface, timeout=30)
>          out = self.remove_dhcp_from_revpackets(inst)
>          return len(out)
> 
> @@ -302,7 +302,7 @@ class TestL3fwdacl(TestCase):
>          inst = self.tester.tcpdump_sniff_packets(rx_interface, filters=fil)
>          pkt = packet.Packet()
>          pkt.append_pkt(ethernet_str)
> -        pkt.send_pkt(crb=self.tester, tx_port=tx_interface)
> +        pkt.send_pkt(crb=self.tester, tx_port=tx_interface, timeout=30)
> 
>          out = self.remove_dhcp_from_revpackets(inst)
>          return len(out)
> @@ -320,7 +320,7 @@ class TestL3fwdacl(TestCase):
>          inst = self.tester.tcpdump_sniff_packets(rx_interface, filters=filters)
>          pkt = packet.Packet()
>          pkt.append_pkt(etherStr)
> -        pkt.send_pkt(crb=self.tester, tx_port=tx_interface)
> +        pkt.send_pkt(crb=self.tester, tx_port=tx_interface, timeout=30)
>          out = self.remove_dhcp_from_revpackets(inst)
>          return len(out)
> 
> @@ -336,7 +336,7 @@ class TestL3fwdacl(TestCase):
>          inst = self.tester.tcpdump_sniff_packets(rx_interface, filters=fil)
>          pkt = packet.Packet()
>          pkt.append_pkt(etherStr)
> -        pkt.send_pkt(crb=self.tester, tx_port=tx_interface)
> +        pkt.send_pkt(crb=self.tester, tx_port=tx_interface, timeout=30)
> 
>          out = self.remove_dhcp_from_revpackets(inst)
>          return len(out)
> --
> 2.17.2


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

end of thread, other threads:[~2019-11-04  2:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-23  3:58 [dts] [PATCH V1] tests/l3fwdacl:Increase the time of the default timeout zhu,shuai
2019-10-23  4:06 ` Zhu, WenhuiX
2019-11-04  2:42 ` Tu, Lijuan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).