test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V2] tests/bonding: fix save pcapfile method and path
@ 2019-10-17  7:29 Xiao Qimai
  2019-10-17  8:08 ` Zhu, ShuaiX
  2019-10-22  9:11 ` Tu, Lijuan
  0 siblings, 2 replies; 3+ messages in thread
From: Xiao Qimai @ 2019-10-17  7:29 UTC (permalink / raw)
  To: dts; +Cc: Xiao Qimai

fix save pcapfile method to new api

Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
 tests/bonding.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tests/bonding.py b/tests/bonding.py
index fb2a69e..6c136a3 100644
--- a/tests/bonding.py
+++ b/tests/bonding.py
@@ -36,7 +36,7 @@ import struct
 import socket
 from socket import htonl
 
-from packet import Packet
+from packet import Packet, TMP_PATH
 from scapy.sendrecv import sendp
 from scapy.utils import wrpcap
 
@@ -181,14 +181,14 @@ class PmdBonding(object):
         # create packet
         streams = []
         # keep a copy of pcap for debug
-        savePath = os.sep.join([self.target_source,
+        savePath = os.sep.join([TMP_PATH,
                                 "pkt_{0}.pcap".format(pkt_name)])
         pkt_type = pkt_config.get('type')
         pkt_layers = pkt_config.get('pkt_layers')
         pkt = Packet(pkt_type=pkt_type.upper())
         for layer in pkt_layers.keys():
             pkt.config_layer(layer, pkt_layers[layer])
-        pkt.pktgen.write_pcap(savePath)
+        pkt.save_pcapfile(filename=savePath)
         streams.append(pkt.pktgen.pkt)
 
         return streams
@@ -228,14 +228,14 @@ class PmdBonding(object):
         streams = []
         for values in pkt_configs:
             # keep a copy of pcap for debug
-            savePath = os.sep.join([self.target_source,
+            savePath = os.sep.join([TMP_PATH,
                                     "pkt_{0}.pcap".format(stm_name)])
             pkt_type = values.get('type')
             pkt_layers = values.get('pkt_layers')
             pkt = Packet(pkt_type=pkt_type.upper())
             for layer in pkt_layers.keys():
                 pkt.config_layer(layer, pkt_layers[layer])
-            pkt.pktgen.write_pcap(savePath)
+            pkt.save_pcapfile(filename=savePath)
             streams.append(pkt.pktgen.pkt)
 
         return streams
-- 
1.8.3.1


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

* Re: [dts] [PATCH V2] tests/bonding: fix save pcapfile method and path
  2019-10-17  7:29 [dts] [PATCH V2] tests/bonding: fix save pcapfile method and path Xiao Qimai
@ 2019-10-17  8:08 ` Zhu, ShuaiX
  2019-10-22  9:11 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Zhu, ShuaiX @ 2019-10-17  8:08 UTC (permalink / raw)
  To: Xiao, QimaiX, dts; +Cc: Xiao, QimaiX, Zhu, ShuaiX

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

Tested-by: Zhu, ShuaiX <shuaix.zhu@intel.com>

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xiao Qimai
> Sent: Thursday, October 17, 2019 3:30 PM
> To: dts@dpdk.org
> Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
> Subject: [dts] [PATCH V2] tests/bonding: fix save pcapfile method and path
> 
> fix save pcapfile method to new api
> 
> Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
> ---
>  tests/bonding.py | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/tests/bonding.py b/tests/bonding.py index fb2a69e..6c136a3 100644
> --- a/tests/bonding.py
> +++ b/tests/bonding.py
> @@ -36,7 +36,7 @@ import struct
>  import socket
>  from socket import htonl
> 
> -from packet import Packet
> +from packet import Packet, TMP_PATH
>  from scapy.sendrecv import sendp
>  from scapy.utils import wrpcap
> 
> @@ -181,14 +181,14 @@ class PmdBonding(object):
>          # create packet
>          streams = []
>          # keep a copy of pcap for debug
> -        savePath = os.sep.join([self.target_source,
> +        savePath = os.sep.join([TMP_PATH,
>                                  "pkt_{0}.pcap".format(pkt_name)])
>          pkt_type = pkt_config.get('type')
>          pkt_layers = pkt_config.get('pkt_layers')
>          pkt = Packet(pkt_type=pkt_type.upper())
>          for layer in pkt_layers.keys():
>              pkt.config_layer(layer, pkt_layers[layer])
> -        pkt.pktgen.write_pcap(savePath)
> +        pkt.save_pcapfile(filename=savePath)
>          streams.append(pkt.pktgen.pkt)
> 
>          return streams
> @@ -228,14 +228,14 @@ class PmdBonding(object):
>          streams = []
>          for values in pkt_configs:
>              # keep a copy of pcap for debug
> -            savePath = os.sep.join([self.target_source,
> +            savePath = os.sep.join([TMP_PATH,
>                                      "pkt_{0}.pcap".format(stm_name)])
>              pkt_type = values.get('type')
>              pkt_layers = values.get('pkt_layers')
>              pkt = Packet(pkt_type=pkt_type.upper())
>              for layer in pkt_layers.keys():
>                  pkt.config_layer(layer, pkt_layers[layer])
> -            pkt.pktgen.write_pcap(savePath)
> +            pkt.save_pcapfile(filename=savePath)
>              streams.append(pkt.pktgen.pkt)
> 
>          return streams
> --
> 1.8.3.1


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

17/10/2019 15:18:20                            dts: 
TEST SUITE : TestBondingStacked
17/10/2019 15:18:20                            dts: NIC :        twinpond
17/10/2019 15:18:20             dut.10.240.176.151: 
17/10/2019 15:18:21                         tester: 
17/10/2019 15:18:21             TestBondingStacked: Test Case test_basic_behav Begin
17/10/2019 15:18:21             dut.10.240.176.151: 
17/10/2019 15:18:21                         tester: 
17/10/2019 15:18:21             TestBondingStacked: begin mode <0> checking
17/10/2019 15:18:21             dut.10.240.176.151: ./x86_64-native-linuxapp-clang/app/testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -w 0000:81:00.0 -w 0000:81:00.1  --file-prefix=dpdk_27497_20191017151659   -- -i 
17/10/2019 15:18:24             dut.10.240.176.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_27497_20191017151659/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: PCI device 0000:81:00.0 on NUMA socket 1
EAL:   probe driver: 8086:1528 net_ixgbe
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
EAL: PCI device 0000:81:00.1 on NUMA socket 1
EAL:   probe driver: 8086:1528 net_ixgbe
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(5)
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=411456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=411456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: B4:96:91:46:E1:20
Configuring Port 1 (socket 1)
Port 1: B4:96:91:46:E1:22
Checking link statuses...
Done
17/10/2019 15:18:24             TestBondingStacked: Test Case test_basic_behav SKIPPED: 
17/10/2019 15:18:24             TestBondingStacked: Test Case test_mode_backup_one_slave_down Begin
17/10/2019 15:18:24             dut.10.240.176.151: 
17/10/2019 15:18:24             TestBondingStacked: Test Case test_mode_backup_one_slave_down SKIPPED: 
17/10/2019 15:18:24             TestBondingStacked: Test Case test_mode_backup_rx Begin
17/10/2019 15:18:24             dut.10.240.176.151: 
17/10/2019 15:18:25                         tester: 
17/10/2019 15:18:25             TestBondingStacked: begin checking bonding backup(stacked) mode transmission
17/10/2019 15:18:25             dut.10.240.176.151: ./x86_64-native-linuxapp-clang/app/testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -w 0000:81:00.0 -w 0000:81:00.1  --file-prefix=dpdk_27497_20191017151659   -- -i 
17/10/2019 15:18:25             TestBondingStacked: Test Case test_mode_backup_rx SKIPPED: 
17/10/2019 15:18:25             TestBondingStacked: Test Case test_mode_xor_rx Begin
17/10/2019 15:18:25             TestBondingStacked: Test Case test_mode_xor_rx SKIPPED: 
17/10/2019 15:18:25             TestBondingStacked: Test Case test_mode_xor_rx_one_slave_down Begin
17/10/2019 15:18:25             dut.10.240.176.151: 
17/10/2019 15:18:25             TestBondingStacked: Test Case test_mode_xor_rx_one_slave_down SKIPPED: 
17/10/2019 15:18:25             dut.10.240.176.151: kill_all: called by dut and prefix list has value.
17/10/2019 15:18:25                            dts:  !!! STOPPING DTS
17/10/2019 15:18:25             dut.10.240.176.151: kill_all: called by dut and prefix list has value.
17/10/2019 15:18:25             dut.10.240.176.151: kill_all: called by dut and prefix list has value.
17/10/2019 15:19:37                            dts: 
TEST SUITE : TestBondingStacked
17/10/2019 15:19:37                            dts: NIC :        fortville_eagle
17/10/2019 15:19:37             dut.10.240.176.151: 
17/10/2019 15:19:37                         tester: 
17/10/2019 15:19:37             TestBondingStacked: Test Case test_basic_behav Begin
17/10/2019 15:19:37             dut.10.240.176.151: 
17/10/2019 15:19:37                         tester: 
17/10/2019 15:19:37             TestBondingStacked: begin mode <0> checking
17/10/2019 15:19:37             dut.10.240.176.151: ./x86_64-native-linuxapp-clang/app/testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -w 0000:04:00.0 -w 0000:04:00.1 -w 0000:04:00.2 -w 0000:04:00.3  --file-prefix=dpdk_27774_20191017151856   -- -i 
17/10/2019 15:19:40             dut.10.240.176.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_27774_20191017151856/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: PCI device 0000:04:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=411456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
Port 0: 3C:FD:FE:B2:43:88
Configuring Port 1 (socket 0)
Port 1: 3C:FD:FE:B2:43:89
Configuring Port 2 (socket 0)
Port 2: 3C:FD:FE:B2:43:8A
Configuring Port 3 (socket 0)
Port 3: 3C:FD:FE:B2:43:8B
Checking link statuses...
Done
17/10/2019 15:20:00             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:20:00             dut.10.240.176.151: 32264
17/10/2019 15:20:00             TestBondingStacked: testpmd boot up successful
17/10/2019 15:20:00             dut.10.240.176.151: port stop all
17/10/2019 15:20:00             dut.10.240.176.151: port stop all
Stopping ports...

Port 0: link state change event

Port 1: link state change event

Port 2: link state change event
Checking link statuses...

Port 3: link state change event
Done
17/10/2019 15:20:03             TestBondingStacked: check bonding mode <0>
17/10/2019 15:20:03             dut.10.240.176.151: create bonded device 0 0
17/10/2019 15:20:03             dut.10.240.176.151: create bonded device 0 0
Created new bonded device net_bonding_testpmd_0 on (port 4).
17/10/2019 15:20:05             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:20:05             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:20:07             dut.10.240.176.151: show bonding config 4
17/10/2019 15:20:07             dut.10.240.176.151: show bonding config 4
	Bonding mode: 0
	Slaves (1): [0]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:20:09             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:20:10             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:20:12             dut.10.240.176.151: show bonding config 4
17/10/2019 15:20:12             dut.10.240.176.151: show bonding config 4
	Bonding mode: 0
	Slaves (2): [0 1]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:20:14             dut.10.240.176.151: create bonded device 0 0
17/10/2019 15:20:14             dut.10.240.176.151: create bonded device 0 0
Created new bonded device net_bonding_testpmd_1 on (port 5).
17/10/2019 15:20:16             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:20:16             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:20:18             dut.10.240.176.151: show bonding config 5
17/10/2019 15:20:18             dut.10.240.176.151: show bonding config 5
	Bonding mode: 0
	Slaves (1): [2]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:20:20             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:20:20             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:20:22             dut.10.240.176.151: show bonding config 5
17/10/2019 15:20:22             dut.10.240.176.151: show bonding config 5
	Bonding mode: 0
	Slaves (2): [2 3]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:20:24             dut.10.240.176.151: create bonded device 0 0
17/10/2019 15:20:24             dut.10.240.176.151: create bonded device 0 0
Created new bonded device net_bonding_testpmd_2 on (port 6).
17/10/2019 15:20:26             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:20:27             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:20:29             dut.10.240.176.151: show bonding config 6
17/10/2019 15:20:29             dut.10.240.176.151: show bonding config 6
	Bonding mode: 0
	Slaves (1): [4]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:20:31             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:20:31             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:20:33             dut.10.240.176.151: show bonding config 6
17/10/2019 15:20:33             dut.10.240.176.151: show bonding config 6
	Bonding mode: 0
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:20:35             dut.10.240.176.151: show port info 6
17/10/2019 15:20:35             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:20:37             dut.10.240.176.151: show port info 6
17/10/2019 15:20:37             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:20:39             dut.10.240.176.151: show port info 6
17/10/2019 15:20:39             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:20:41             dut.10.240.176.151: show port info 6
17/10/2019 15:20:41             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:20:43             dut.10.240.176.151: show port info 6
17/10/2019 15:20:43             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:20:45             dut.10.240.176.151: show port info 6
17/10/2019 15:20:46             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:20:48             dut.10.240.176.151: show port info 4
17/10/2019 15:20:48             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:20:50             dut.10.240.176.151: show port info 4
17/10/2019 15:20:50             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:20:52             dut.10.240.176.151: show port info 4
17/10/2019 15:20:52             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:20:54             dut.10.240.176.151: show port info 4
17/10/2019 15:20:54             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:20:56             dut.10.240.176.151: show port info 4
17/10/2019 15:20:56             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:20:58             dut.10.240.176.151: show port info 4
17/10/2019 15:20:58             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:21:00             dut.10.240.176.151: show port info 5
17/10/2019 15:21:00             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:21:02             dut.10.240.176.151: show port info 5
17/10/2019 15:21:02             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:21:04             dut.10.240.176.151: show port info 5
17/10/2019 15:21:05             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:21:07             dut.10.240.176.151: show port info 5
17/10/2019 15:21:07             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:21:09             dut.10.240.176.151: show port info 5
17/10/2019 15:21:09             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:21:11             dut.10.240.176.151: show port info 5
17/10/2019 15:21:11             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=0,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:21:13             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:21:13             dut.10.240.176.151: add bonding slave 4 6
__eth_bond_slave_add_lock_free(465) - Slave device is already a slave of a bonded device
	 Failed to add slave 4 to master port = 6.
17/10/2019 15:21:15             dut.10.240.176.151: show bonding config 6
17/10/2019 15:21:15             dut.10.240.176.151: show bonding config 6
	Bonding mode: 0
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:21:17             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:21:17             dut.10.240.176.151: add bonding slave 5 6
__eth_bond_slave_add_lock_free(465) - Slave device is already a slave of a bonded device
	 Failed to add slave 5 to master port = 6.
17/10/2019 15:21:19             dut.10.240.176.151: show bonding config 6
17/10/2019 15:21:19             dut.10.240.176.151: show bonding config 6
	Bonding mode: 0
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:21:21             dut.10.240.176.151: create bonded device 0 0
17/10/2019 15:21:21             dut.10.240.176.151: create bonded device 0 0
Created new bonded device net_bonding_testpmd_3 on (port 7).
17/10/2019 15:21:23             dut.10.240.176.151: add bonding slave 6 7
17/10/2019 15:21:24             dut.10.240.176.151: add bonding slave 6 7
17/10/2019 15:21:26             dut.10.240.176.151: show bonding config 7
17/10/2019 15:21:26             dut.10.240.176.151: show bonding config 7
	Bonding mode: 0
	Slaves (1): [6]
	Active Slaves: []
	Primary: [6]
17/10/2019 15:21:28             TestBondingStacked: mode <0> done !
17/10/2019 15:21:29             dut.10.240.176.151: port stop all
17/10/2019 15:21:29             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from bonded device.
Please remove port 1 from bonded device.
Please remove port 2 from bonded device.
Please remove port 3 from bonded device.
Please remove port 4 from bonded device.
Please remove port 5 from bonded device.
Please remove port 6 from bonded device.
Done
17/10/2019 15:21:29             dut.10.240.176.151: show port stats all
17/10/2019 15:21:29             dut.10.240.176.151: show port stats all

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 1  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 3  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 4  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 6  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 7  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:21:29             dut.10.240.176.151: stop
17/10/2019 15:21:29             dut.10.240.176.151: stop
Packet forwarding not started
17/10/2019 15:21:33             dut.10.240.176.151: quit
17/10/2019 15:21:34             dut.10.240.176.151: quit

Stopping port 0...
Stopping ports...
Please remove port 0 from bonded device.
Done

Stopping port 1...
Stopping ports...
Please remove port 1 from bonded device.
Done

Stopping port 2...
Stopping ports...
Please remove port 2 from bonded device.
Done

Stopping port 3...
Stopping ports...
Please remove port 3 from bonded device.
Done

Stopping port 4...
Stopping ports...
Please remove port 4 from bonded device.
Done

Stopping port 5...
Stopping ports...
Please remove port 5 from bonded device.
Done

Stopping port 6...
Stopping ports...
Please remove port 6 from bonded device.
Done

Stopping port 7...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Please remove port 0 from bonded device.
Done

Shutting down port 1...
Closing ports...
Please remove port 1 from bonded device.
Done

Shutting down port 2...
Closing ports...
Please remove port 2 from bonded device.
Done

Shutting down port 3...
Closing ports...
Please remove port 3 from bonded device.
Done

Shutting down port 4...
Closing ports...
Please remove port 4 from bonded device.
Done

Shutting down port 5...
Closing ports...
Please remove port 5 from bonded device.
Done

Shutting down port 6...
Closing ports...
Please remove port 6 from bonded device.
Done

Shutting down port 7...
Closing ports...
Device with port_id=6 already stopped
Done

Bye...
17/10/2019 15:21:44             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:21:44             dut.10.240.176.151: 
17/10/2019 15:21:44             TestBondingStacked: close testpmd successful
17/10/2019 15:21:49             TestBondingStacked: begin mode <1> checking
17/10/2019 15:21:49             dut.10.240.176.151: ./x86_64-native-linuxapp-clang/app/testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -w 0000:04:00.0 -w 0000:04:00.1 -w 0000:04:00.2 -w 0000:04:00.3  --file-prefix=dpdk_27774_20191017151856   -- -i 
17/10/2019 15:21:52             dut.10.240.176.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_27774_20191017151856/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: PCI device 0000:04:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=411456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
Port 0: 3C:FD:FE:B2:43:88
Configuring Port 1 (socket 0)
Port 1: 3C:FD:FE:B2:43:89
Configuring Port 2 (socket 0)
Port 2: 3C:FD:FE:B2:43:8A
Configuring Port 3 (socket 0)
Port 3: 3C:FD:FE:B2:43:8B
Checking link statuses...
Done
17/10/2019 15:22:12             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:22:12             dut.10.240.176.151: 32343
17/10/2019 15:22:12             TestBondingStacked: testpmd boot up successful
17/10/2019 15:22:12             dut.10.240.176.151: port stop all
17/10/2019 15:22:12             dut.10.240.176.151: port stop all
Stopping ports...

Port 0: link state change event

Port 1: link state change event

Port 2: link state change event
Checking link statuses...

Port 3: link state change event
Done
17/10/2019 15:22:15             TestBondingStacked: check bonding mode <1>
17/10/2019 15:22:15             dut.10.240.176.151: create bonded device 1 0
17/10/2019 15:22:15             dut.10.240.176.151: create bonded device 1 0
Created new bonded device net_bonding_testpmd_0 on (port 4).
17/10/2019 15:22:17             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:22:17             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:22:19             dut.10.240.176.151: show bonding config 4
17/10/2019 15:22:20             dut.10.240.176.151: show bonding config 4
	Bonding mode: 1
	Slaves (1): [0]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:22:22             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:22:22             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:22:24             dut.10.240.176.151: show bonding config 4
17/10/2019 15:22:24             dut.10.240.176.151: show bonding config 4
	Bonding mode: 1
	Slaves (2): [0 1]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:22:26             dut.10.240.176.151: create bonded device 1 0
17/10/2019 15:22:26             dut.10.240.176.151: create bonded device 1 0
Created new bonded device net_bonding_testpmd_1 on (port 5).
17/10/2019 15:22:28             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:22:28             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:22:30             dut.10.240.176.151: show bonding config 5
17/10/2019 15:22:30             dut.10.240.176.151: show bonding config 5
	Bonding mode: 1
	Slaves (1): [2]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:22:32             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:22:32             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:22:34             dut.10.240.176.151: show bonding config 5
17/10/2019 15:22:34             dut.10.240.176.151: show bonding config 5
	Bonding mode: 1
	Slaves (2): [2 3]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:22:36             dut.10.240.176.151: create bonded device 1 0
17/10/2019 15:22:37             dut.10.240.176.151: create bonded device 1 0
Created new bonded device net_bonding_testpmd_2 on (port 6).
17/10/2019 15:22:39             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:22:39             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:22:41             dut.10.240.176.151: show bonding config 6
17/10/2019 15:22:41             dut.10.240.176.151: show bonding config 6
	Bonding mode: 1
	Slaves (1): [4]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:22:43             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:22:43             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:22:45             dut.10.240.176.151: show bonding config 6
17/10/2019 15:22:45             dut.10.240.176.151: show bonding config 6
	Bonding mode: 1
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:22:47             dut.10.240.176.151: show port info 6
17/10/2019 15:22:47             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:22:49             dut.10.240.176.151: show port info 6
17/10/2019 15:22:49             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:22:51             dut.10.240.176.151: show port info 6
17/10/2019 15:22:51             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:22:53             dut.10.240.176.151: show port info 6
17/10/2019 15:22:53             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:22:55             dut.10.240.176.151: show port info 6
17/10/2019 15:22:56             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:22:58             dut.10.240.176.151: show port info 6
17/10/2019 15:22:58             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:23:00             dut.10.240.176.151: show port info 4
17/10/2019 15:23:00             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:23:02             dut.10.240.176.151: show port info 4
17/10/2019 15:23:02             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:23:04             dut.10.240.176.151: show port info 4
17/10/2019 15:23:04             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:23:06             dut.10.240.176.151: show port info 4
17/10/2019 15:23:06             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:23:08             dut.10.240.176.151: show port info 4
17/10/2019 15:23:08             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:23:10             dut.10.240.176.151: show port info 4
17/10/2019 15:23:10             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:23:12             dut.10.240.176.151: show port info 5
17/10/2019 15:23:12             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:23:14             dut.10.240.176.151: show port info 5
17/10/2019 15:23:15             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:23:17             dut.10.240.176.151: show port info 5
17/10/2019 15:23:17             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:23:19             dut.10.240.176.151: show port info 5
17/10/2019 15:23:19             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:23:21             dut.10.240.176.151: show port info 5
17/10/2019 15:23:21             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:23:23             dut.10.240.176.151: show port info 5
17/10/2019 15:23:23             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=1,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:23:25             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:23:25             dut.10.240.176.151: add bonding slave 4 6
__eth_bond_slave_add_lock_free(465) - Slave device is already a slave of a bonded device
	 Failed to add slave 4 to master port = 6.
17/10/2019 15:23:27             dut.10.240.176.151: show bonding config 6
17/10/2019 15:23:27             dut.10.240.176.151: show bonding config 6
	Bonding mode: 1
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:23:29             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:23:29             dut.10.240.176.151: add bonding slave 5 6
__eth_bond_slave_add_lock_free(465) - Slave device is already a slave of a bonded device
	 Failed to add slave 5 to master port = 6.
17/10/2019 15:23:31             dut.10.240.176.151: show bonding config 6
17/10/2019 15:23:31             dut.10.240.176.151: show bonding config 6
	Bonding mode: 1
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:23:33             dut.10.240.176.151: create bonded device 1 0
17/10/2019 15:23:34             dut.10.240.176.151: create bonded device 1 0
Created new bonded device net_bonding_testpmd_3 on (port 7).
17/10/2019 15:23:36             dut.10.240.176.151: add bonding slave 6 7
17/10/2019 15:23:36             dut.10.240.176.151: add bonding slave 6 7
17/10/2019 15:23:38             dut.10.240.176.151: show bonding config 7
17/10/2019 15:23:38             dut.10.240.176.151: show bonding config 7
	Bonding mode: 1
	Slaves (1): [6]
	Active Slaves: []
	Primary: [6]
17/10/2019 15:23:40             TestBondingStacked: mode <1> done !
17/10/2019 15:23:41             dut.10.240.176.151: port stop all
17/10/2019 15:23:41             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from bonded device.
Please remove port 1 from bonded device.
Please remove port 2 from bonded device.
Please remove port 3 from bonded device.
Please remove port 4 from bonded device.
Please remove port 5 from bonded device.
Please remove port 6 from bonded device.
Done
17/10/2019 15:23:41             dut.10.240.176.151: show port stats all
17/10/2019 15:23:41             dut.10.240.176.151: show port stats all

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 1  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 3  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 4  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 6  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 7  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:23:41             dut.10.240.176.151: stop
17/10/2019 15:23:41             dut.10.240.176.151: stop
Packet forwarding not started
17/10/2019 15:23:45             dut.10.240.176.151: quit
17/10/2019 15:23:46             dut.10.240.176.151: quit

Stopping port 0...
Stopping ports...
Please remove port 0 from bonded device.
Done

Stopping port 1...
Stopping ports...
Please remove port 1 from bonded device.
Done

Stopping port 2...
Stopping ports...
Please remove port 2 from bonded device.
Done

Stopping port 3...
Stopping ports...
Please remove port 3 from bonded device.
Done

Stopping port 4...
Stopping ports...
Please remove port 4 from bonded device.
Done

Stopping port 5...
Stopping ports...
Please remove port 5 from bonded device.
Done

Stopping port 6...
Stopping ports...
Please remove port 6 from bonded device.
Done

Stopping port 7...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Please remove port 0 from bonded device.
Done

Shutting down port 1...
Closing ports...
Please remove port 1 from bonded device.
Done

Shutting down port 2...
Closing ports...
Please remove port 2 from bonded device.
Done

Shutting down port 3...
Closing ports...
Please remove port 3 from bonded device.
Done

Shutting down port 4...
Closing ports...
Please remove port 4 from bonded device.
Done

Shutting down port 5...
Closing ports...
Please remove port 5 from bonded device.
Done

Shutting down port 6...
Closing ports...
Please remove port 6 from bonded device.
Done

Shutting down port 7...
Closing ports...
Device with port_id=6 already stopped
Done

Bye...
17/10/2019 15:23:56             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:23:57             dut.10.240.176.151: 
17/10/2019 15:23:57             TestBondingStacked: close testpmd successful
17/10/2019 15:24:02             TestBondingStacked: begin mode <2> checking
17/10/2019 15:24:02             dut.10.240.176.151: ./x86_64-native-linuxapp-clang/app/testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -w 0000:04:00.0 -w 0000:04:00.1 -w 0000:04:00.2 -w 0000:04:00.3  --file-prefix=dpdk_27774_20191017151856   -- -i 
17/10/2019 15:24:04             dut.10.240.176.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_27774_20191017151856/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: PCI device 0000:04:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=411456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
Port 0: 3C:FD:FE:B2:43:88
Configuring Port 1 (socket 0)
Port 1: 3C:FD:FE:B2:43:89
Configuring Port 2 (socket 0)
Port 2: 3C:FD:FE:B2:43:8A
Configuring Port 3 (socket 0)
Port 3: 3C:FD:FE:B2:43:8B
Checking link statuses...
Done
17/10/2019 15:24:24             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:24:24             dut.10.240.176.151: 32404
17/10/2019 15:24:24             TestBondingStacked: testpmd boot up successful
17/10/2019 15:24:24             dut.10.240.176.151: port stop all
17/10/2019 15:24:25             dut.10.240.176.151: port stop all
Stopping ports...

Port 0: link state change event

Port 1: link state change event

Port 2: link state change event
Checking link statuses...

Port 3: link state change event
Done
17/10/2019 15:24:28             TestBondingStacked: check bonding mode <2>
17/10/2019 15:24:28             dut.10.240.176.151: create bonded device 2 0
17/10/2019 15:24:28             dut.10.240.176.151: create bonded device 2 0
Created new bonded device net_bonding_testpmd_0 on (port 4).
17/10/2019 15:24:30             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:24:30             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:24:32             dut.10.240.176.151: show bonding config 4
17/10/2019 15:24:32             dut.10.240.176.151: show bonding config 4
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (1): [0]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:24:34             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:24:34             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:24:36             dut.10.240.176.151: show bonding config 4
17/10/2019 15:24:36             dut.10.240.176.151: show bonding config 4
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [0 1]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:24:38             dut.10.240.176.151: create bonded device 2 0
17/10/2019 15:24:38             dut.10.240.176.151: create bonded device 2 0
Created new bonded device net_bonding_testpmd_1 on (port 5).
17/10/2019 15:24:40             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:24:41             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:24:43             dut.10.240.176.151: show bonding config 5
17/10/2019 15:24:43             dut.10.240.176.151: show bonding config 5
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (1): [2]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:24:45             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:24:45             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:24:47             dut.10.240.176.151: show bonding config 5
17/10/2019 15:24:47             dut.10.240.176.151: show bonding config 5
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [2 3]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:24:49             dut.10.240.176.151: create bonded device 2 0
17/10/2019 15:24:49             dut.10.240.176.151: create bonded device 2 0
Created new bonded device net_bonding_testpmd_2 on (port 6).
17/10/2019 15:24:51             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:24:51             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:24:53             dut.10.240.176.151: show bonding config 6
17/10/2019 15:24:53             dut.10.240.176.151: show bonding config 6
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (1): [4]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:24:55             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:24:55             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:24:57             dut.10.240.176.151: show bonding config 6
17/10/2019 15:24:57             dut.10.240.176.151: show bonding config 6
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:24:59             dut.10.240.176.151: show port info 6
17/10/2019 15:25:00             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:02             dut.10.240.176.151: show port info 6
17/10/2019 15:25:02             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:04             dut.10.240.176.151: show port info 6
17/10/2019 15:25:04             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:06             dut.10.240.176.151: show port info 6
17/10/2019 15:25:06             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:08             dut.10.240.176.151: show port info 6
17/10/2019 15:25:08             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:10             dut.10.240.176.151: show port info 6
17/10/2019 15:25:10             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:12             dut.10.240.176.151: show port info 4
17/10/2019 15:25:12             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:14             dut.10.240.176.151: show port info 4
17/10/2019 15:25:14             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:16             dut.10.240.176.151: show port info 4
17/10/2019 15:25:16             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:18             dut.10.240.176.151: show port info 4
17/10/2019 15:25:19             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:21             dut.10.240.176.151: show port info 4
17/10/2019 15:25:21             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:23             dut.10.240.176.151: show port info 4
17/10/2019 15:25:23             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:25             dut.10.240.176.151: show port info 5
17/10/2019 15:25:25             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:27             dut.10.240.176.151: show port info 5
17/10/2019 15:25:27             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:29             dut.10.240.176.151: show port info 5
17/10/2019 15:25:29             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:31             dut.10.240.176.151: show port info 5
17/10/2019 15:25:31             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:33             dut.10.240.176.151: show port info 5
17/10/2019 15:25:33             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:35             dut.10.240.176.151: show port info 5
17/10/2019 15:25:36             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=2,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:25:38             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:25:38             dut.10.240.176.151: add bonding slave 4 6
__eth_bond_slave_add_lock_free(465) - Slave device is already a slave of a bonded device
	 Failed to add slave 4 to master port = 6.
17/10/2019 15:25:40             dut.10.240.176.151: show bonding config 6
17/10/2019 15:25:40             dut.10.240.176.151: show bonding config 6
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:25:42             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:25:42             dut.10.240.176.151: add bonding slave 5 6
__eth_bond_slave_add_lock_free(465) - Slave device is already a slave of a bonded device
	 Failed to add slave 5 to master port = 6.
17/10/2019 15:25:44             dut.10.240.176.151: show bonding config 6
17/10/2019 15:25:44             dut.10.240.176.151: show bonding config 6
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:25:46             dut.10.240.176.151: create bonded device 2 0
17/10/2019 15:25:46             dut.10.240.176.151: create bonded device 2 0
Created new bonded device net_bonding_testpmd_3 on (port 7).
17/10/2019 15:25:48             dut.10.240.176.151: add bonding slave 6 7
17/10/2019 15:25:48             dut.10.240.176.151: add bonding slave 6 7
17/10/2019 15:25:50             dut.10.240.176.151: show bonding config 7
17/10/2019 15:25:50             dut.10.240.176.151: show bonding config 7
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (1): [6]
	Active Slaves: []
	Primary: [6]
17/10/2019 15:25:52             TestBondingStacked: mode <2> done !
17/10/2019 15:25:53             dut.10.240.176.151: port stop all
17/10/2019 15:25:53             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from bonded device.
Please remove port 1 from bonded device.
Please remove port 2 from bonded device.
Please remove port 3 from bonded device.
Please remove port 4 from bonded device.
Please remove port 5 from bonded device.
Please remove port 6 from bonded device.
Done
17/10/2019 15:25:53             dut.10.240.176.151: show port stats all
17/10/2019 15:25:54             dut.10.240.176.151: show port stats all

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 1  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 3  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 4  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 6  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 7  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:25:54             dut.10.240.176.151: stop
17/10/2019 15:25:54             dut.10.240.176.151: stop
Packet forwarding not started
17/10/2019 15:25:58             dut.10.240.176.151: quit
17/10/2019 15:25:58             dut.10.240.176.151: quit

Stopping port 0...
Stopping ports...
Please remove port 0 from bonded device.
Done

Stopping port 1...
Stopping ports...
Please remove port 1 from bonded device.
Done

Stopping port 2...
Stopping ports...
Please remove port 2 from bonded device.
Done

Stopping port 3...
Stopping ports...
Please remove port 3 from bonded device.
Done

Stopping port 4...
Stopping ports...
Please remove port 4 from bonded device.
Done

Stopping port 5...
Stopping ports...
Please remove port 5 from bonded device.
Done

Stopping port 6...
Stopping ports...
Please remove port 6 from bonded device.
Done

Stopping port 7...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Please remove port 0 from bonded device.
Done

Shutting down port 1...
Closing ports...
Please remove port 1 from bonded device.
Done

Shutting down port 2...
Closing ports...
Please remove port 2 from bonded device.
Done

Shutting down port 3...
Closing ports...
Please remove port 3 from bonded device.
Done

Shutting down port 4...
Closing ports...
Please remove port 4 from bonded device.
Done

Shutting down port 5...
Closing ports...
Please remove port 5 from bonded device.
Done

Shutting down port 6...
Closing ports...
Please remove port 6 from bonded device.
Done

Shutting down port 7...
Closing ports...
Device with port_id=6 already stopped
Done

Bye...
17/10/2019 15:26:08             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:26:09             dut.10.240.176.151: 
17/10/2019 15:26:09             TestBondingStacked: close testpmd successful
17/10/2019 15:26:14             TestBondingStacked: begin mode <3> checking
17/10/2019 15:26:14             dut.10.240.176.151: ./x86_64-native-linuxapp-clang/app/testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -w 0000:04:00.0 -w 0000:04:00.1 -w 0000:04:00.2 -w 0000:04:00.3  --file-prefix=dpdk_27774_20191017151856   -- -i 
17/10/2019 15:26:16             dut.10.240.176.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_27774_20191017151856/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: PCI device 0000:04:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=411456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
Port 0: 3C:FD:FE:B2:43:88
Configuring Port 1 (socket 0)
Port 1: 3C:FD:FE:B2:43:89
Configuring Port 2 (socket 0)
Port 2: 3C:FD:FE:B2:43:8A
Configuring Port 3 (socket 0)
Port 3: 3C:FD:FE:B2:43:8B
Checking link statuses...
Done
17/10/2019 15:26:36             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:26:37             dut.10.240.176.151: 32464
17/10/2019 15:26:37             TestBondingStacked: testpmd boot up successful
17/10/2019 15:26:37             dut.10.240.176.151: port stop all
17/10/2019 15:26:37             dut.10.240.176.151: port stop all
Stopping ports...

Port 0: link state change event

Port 1: link state change event

Port 2: link state change event
Checking link statuses...

Port 3: link state change event
Done
17/10/2019 15:26:40             TestBondingStacked: check bonding mode <3>
17/10/2019 15:26:40             dut.10.240.176.151: create bonded device 3 0
17/10/2019 15:26:40             dut.10.240.176.151: create bonded device 3 0
Created new bonded device net_bonding_testpmd_0 on (port 4).
17/10/2019 15:26:42             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:26:42             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:26:44             dut.10.240.176.151: show bonding config 4
17/10/2019 15:26:44             dut.10.240.176.151: show bonding config 4
	Bonding mode: 3
	Slaves (1): [0]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:26:46             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:26:46             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:26:48             dut.10.240.176.151: show bonding config 4
17/10/2019 15:26:48             dut.10.240.176.151: show bonding config 4
	Bonding mode: 3
	Slaves (2): [0 1]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:26:50             dut.10.240.176.151: create bonded device 3 0
17/10/2019 15:26:51             dut.10.240.176.151: create bonded device 3 0
Created new bonded device net_bonding_testpmd_1 on (port 5).
17/10/2019 15:26:53             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:26:53             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:26:55             dut.10.240.176.151: show bonding config 5
17/10/2019 15:26:55             dut.10.240.176.151: show bonding config 5
	Bonding mode: 3
	Slaves (1): [2]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:26:57             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:26:57             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:26:59             dut.10.240.176.151: show bonding config 5
17/10/2019 15:26:59             dut.10.240.176.151: show bonding config 5
	Bonding mode: 3
	Slaves (2): [2 3]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:27:01             dut.10.240.176.151: create bonded device 3 0
17/10/2019 15:27:01             dut.10.240.176.151: create bonded device 3 0
Created new bonded device net_bonding_testpmd_2 on (port 6).
17/10/2019 15:27:03             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:27:03             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:27:05             dut.10.240.176.151: show bonding config 6
17/10/2019 15:27:05             dut.10.240.176.151: show bonding config 6
	Bonding mode: 3
	Slaves (1): [4]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:27:07             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:27:08             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:27:10             dut.10.240.176.151: show bonding config 6
17/10/2019 15:27:10             dut.10.240.176.151: show bonding config 6
	Bonding mode: 3
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:27:12             dut.10.240.176.151: show port info 6
17/10/2019 15:27:12             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:14             dut.10.240.176.151: show port info 6
17/10/2019 15:27:14             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:16             dut.10.240.176.151: show port info 6
17/10/2019 15:27:16             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:18             dut.10.240.176.151: show port info 6
17/10/2019 15:27:18             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:20             dut.10.240.176.151: show port info 6
17/10/2019 15:27:20             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:22             dut.10.240.176.151: show port info 6
17/10/2019 15:27:22             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:24             dut.10.240.176.151: show port info 4
17/10/2019 15:27:24             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:26             dut.10.240.176.151: show port info 4
17/10/2019 15:27:27             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:29             dut.10.240.176.151: show port info 4
17/10/2019 15:27:29             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:31             dut.10.240.176.151: show port info 4
17/10/2019 15:27:31             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:33             dut.10.240.176.151: show port info 4
17/10/2019 15:27:33             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:35             dut.10.240.176.151: show port info 4
17/10/2019 15:27:35             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:37             dut.10.240.176.151: show port info 5
17/10/2019 15:27:37             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:39             dut.10.240.176.151: show port info 5
17/10/2019 15:27:39             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:41             dut.10.240.176.151: show port info 5
17/10/2019 15:27:41             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:43             dut.10.240.176.151: show port info 5
17/10/2019 15:27:43             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:45             dut.10.240.176.151: show port info 5
17/10/2019 15:27:46             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:48             dut.10.240.176.151: show port info 5
17/10/2019 15:27:48             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=3,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:27:50             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:27:50             dut.10.240.176.151: add bonding slave 4 6
__eth_bond_slave_add_lock_free(465) - Slave device is already a slave of a bonded device
	 Failed to add slave 4 to master port = 6.
17/10/2019 15:27:52             dut.10.240.176.151: show bonding config 6
17/10/2019 15:27:52             dut.10.240.176.151: show bonding config 6
	Bonding mode: 3
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:27:54             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:27:54             dut.10.240.176.151: add bonding slave 5 6
__eth_bond_slave_add_lock_free(465) - Slave device is already a slave of a bonded device
	 Failed to add slave 5 to master port = 6.
17/10/2019 15:27:56             dut.10.240.176.151: show bonding config 6
17/10/2019 15:27:56             dut.10.240.176.151: show bonding config 6
	Bonding mode: 3
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:27:58             dut.10.240.176.151: create bonded device 3 0
17/10/2019 15:27:58             dut.10.240.176.151: create bonded device 3 0
Created new bonded device net_bonding_testpmd_3 on (port 7).
17/10/2019 15:28:00             dut.10.240.176.151: add bonding slave 6 7
17/10/2019 15:28:00             dut.10.240.176.151: add bonding slave 6 7
17/10/2019 15:28:02             dut.10.240.176.151: show bonding config 7
17/10/2019 15:28:02             dut.10.240.176.151: show bonding config 7
	Bonding mode: 3
	Slaves (1): [6]
	Active Slaves: []
	Primary: [6]
17/10/2019 15:28:04             TestBondingStacked: mode <3> done !
17/10/2019 15:28:05             dut.10.240.176.151: port stop all
17/10/2019 15:28:06             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from bonded device.
Please remove port 1 from bonded device.
Please remove port 2 from bonded device.
Please remove port 3 from bonded device.
Please remove port 4 from bonded device.
Please remove port 5 from bonded device.
Please remove port 6 from bonded device.
Done
17/10/2019 15:28:06             dut.10.240.176.151: show port stats all
17/10/2019 15:28:06             dut.10.240.176.151: show port stats all

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 1  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 3  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 4  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 6  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 7  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:28:06             dut.10.240.176.151: stop
17/10/2019 15:28:06             dut.10.240.176.151: stop
Packet forwarding not started
17/10/2019 15:28:10             dut.10.240.176.151: quit
17/10/2019 15:28:11             dut.10.240.176.151: quit

Stopping port 0...
Stopping ports...
Please remove port 0 from bonded device.
Done

Stopping port 1...
Stopping ports...
Please remove port 1 from bonded device.
Done

Stopping port 2...
Stopping ports...
Please remove port 2 from bonded device.
Done

Stopping port 3...
Stopping ports...
Please remove port 3 from bonded device.
Done

Stopping port 4...
Stopping ports...
Please remove port 4 from bonded device.
Done

Stopping port 5...
Stopping ports...
Please remove port 5 from bonded device.
Done

Stopping port 6...
Stopping ports...
Please remove port 6 from bonded device.
Done

Stopping port 7...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Please remove port 0 from bonded device.
Done

Shutting down port 1...
Closing ports...
Please remove port 1 from bonded device.
Done

Shutting down port 2...
Closing ports...
Please remove port 2 from bonded device.
Done

Shutting down port 3...
Closing ports...
Please remove port 3 from bonded device.
Done

Shutting down port 4...
Closing ports...
Please remove port 4 from bonded device.
Done

Shutting down port 5...
Closing ports...
Please remove port 5 from bonded device.
Done

Shutting down port 6...
Closing ports...
Please remove port 6 from bonded device.
Done

Shutting down port 7...
Closing ports...
Device with port_id=6 already stopped
Done

Bye...
17/10/2019 15:28:21             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:28:21             dut.10.240.176.151: 
17/10/2019 15:28:21             TestBondingStacked: close testpmd successful
17/10/2019 15:28:26             TestBondingStacked: begin mode <5> checking
17/10/2019 15:28:26             dut.10.240.176.151: ./x86_64-native-linuxapp-clang/app/testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -w 0000:04:00.0 -w 0000:04:00.1 -w 0000:04:00.2 -w 0000:04:00.3  --file-prefix=dpdk_27774_20191017151856   -- -i 
17/10/2019 15:28:29             dut.10.240.176.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_27774_20191017151856/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: PCI device 0000:04:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=411456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
Port 0: 3C:FD:FE:B2:43:88
Configuring Port 1 (socket 0)
Port 1: 3C:FD:FE:B2:43:89
Configuring Port 2 (socket 0)
Port 2: 3C:FD:FE:B2:43:8A
Configuring Port 3 (socket 0)
Port 3: 3C:FD:FE:B2:43:8B
Checking link statuses...
Done
17/10/2019 15:28:49             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:28:49             dut.10.240.176.151: 32526
17/10/2019 15:28:49             TestBondingStacked: testpmd boot up successful
17/10/2019 15:28:49             dut.10.240.176.151: port stop all
17/10/2019 15:28:49             dut.10.240.176.151: port stop all
Stopping ports...

Port 0: link state change event

Port 1: link state change event

Port 2: link state change event
Checking link statuses...

Port 3: link state change event
Done
17/10/2019 15:28:52             TestBondingStacked: check bonding mode <5>
17/10/2019 15:28:52             dut.10.240.176.151: create bonded device 5 0
17/10/2019 15:28:52             dut.10.240.176.151: create bonded device 5 0
Created new bonded device net_bonding_testpmd_0 on (port 4).
17/10/2019 15:28:54             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:28:54             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:28:56             dut.10.240.176.151: show bonding config 4
17/10/2019 15:28:56             dut.10.240.176.151: show bonding config 4
	Bonding mode: 5
	Slaves (1): [0]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:28:58             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:28:59             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:29:01             dut.10.240.176.151: show bonding config 4
17/10/2019 15:29:01             dut.10.240.176.151: show bonding config 4
	Bonding mode: 5
	Slaves (2): [0 1]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:29:03             dut.10.240.176.151: create bonded device 5 0
17/10/2019 15:29:03             dut.10.240.176.151: create bonded device 5 0
Created new bonded device net_bonding_testpmd_1 on (port 5).
17/10/2019 15:29:05             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:29:05             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:29:07             dut.10.240.176.151: show bonding config 5
17/10/2019 15:29:07             dut.10.240.176.151: show bonding config 5
	Bonding mode: 5
	Slaves (1): [2]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:29:09             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:29:09             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:29:11             dut.10.240.176.151: show bonding config 5
17/10/2019 15:29:11             dut.10.240.176.151: show bonding config 5
	Bonding mode: 5
	Slaves (2): [2 3]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:29:13             dut.10.240.176.151: create bonded device 5 0
17/10/2019 15:29:13             dut.10.240.176.151: create bonded device 5 0
Created new bonded device net_bonding_testpmd_2 on (port 6).
17/10/2019 15:29:15             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:29:15             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:29:17             dut.10.240.176.151: show bonding config 6
17/10/2019 15:29:18             dut.10.240.176.151: show bonding config 6
	Bonding mode: 5
	Slaves (1): [4]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:29:20             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:29:20             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:29:22             dut.10.240.176.151: show bonding config 6
17/10/2019 15:29:22             dut.10.240.176.151: show bonding config 6
	Bonding mode: 5
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:29:24             dut.10.240.176.151: show port info 6
17/10/2019 15:29:24             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:26             dut.10.240.176.151: show port info 6
17/10/2019 15:29:26             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:28             dut.10.240.176.151: show port info 6
17/10/2019 15:29:28             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:30             dut.10.240.176.151: show port info 6
17/10/2019 15:29:30             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:32             dut.10.240.176.151: show port info 6
17/10/2019 15:29:32             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:34             dut.10.240.176.151: show port info 6
17/10/2019 15:29:34             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:36             dut.10.240.176.151: show port info 4
17/10/2019 15:29:37             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:39             dut.10.240.176.151: show port info 4
17/10/2019 15:29:39             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:41             dut.10.240.176.151: show port info 4
17/10/2019 15:29:41             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:43             dut.10.240.176.151: show port info 4
17/10/2019 15:29:43             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:45             dut.10.240.176.151: show port info 4
17/10/2019 15:29:45             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:47             dut.10.240.176.151: show port info 4
17/10/2019 15:29:47             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:49             dut.10.240.176.151: show port info 5
17/10/2019 15:29:49             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:51             dut.10.240.176.151: show port info 5
17/10/2019 15:29:51             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:53             dut.10.240.176.151: show port info 5
17/10/2019 15:29:54             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:56             dut.10.240.176.151: show port info 5
17/10/2019 15:29:56             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:29:58             dut.10.240.176.151: show port info 5
17/10/2019 15:29:58             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:30:00             dut.10.240.176.151: show port info 5
17/10/2019 15:30:00             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=5,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:30:02             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:30:02             dut.10.240.176.151: add bonding slave 4 6
__eth_bond_slave_add_lock_free(465) - Slave device is already a slave of a bonded device
	 Failed to add slave 4 to master port = 6.
17/10/2019 15:30:04             dut.10.240.176.151: show bonding config 6
17/10/2019 15:30:04             dut.10.240.176.151: show bonding config 6
	Bonding mode: 5
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:30:06             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:30:06             dut.10.240.176.151: add bonding slave 5 6
__eth_bond_slave_add_lock_free(465) - Slave device is already a slave of a bonded device
	 Failed to add slave 5 to master port = 6.
17/10/2019 15:30:08             dut.10.240.176.151: show bonding config 6
17/10/2019 15:30:08             dut.10.240.176.151: show bonding config 6
	Bonding mode: 5
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:30:10             dut.10.240.176.151: create bonded device 5 0
17/10/2019 15:30:10             dut.10.240.176.151: create bonded device 5 0
Created new bonded device net_bonding_testpmd_3 on (port 7).
17/10/2019 15:30:12             dut.10.240.176.151: add bonding slave 6 7
17/10/2019 15:30:13             dut.10.240.176.151: add bonding slave 6 7
17/10/2019 15:30:15             dut.10.240.176.151: show bonding config 7
17/10/2019 15:30:15             dut.10.240.176.151: show bonding config 7
	Bonding mode: 5
	Slaves (1): [6]
	Active Slaves: []
	Primary: [6]
17/10/2019 15:30:17             TestBondingStacked: mode <5> done !
17/10/2019 15:30:18             dut.10.240.176.151: port stop all
17/10/2019 15:30:18             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from bonded device.
Please remove port 1 from bonded device.
Please remove port 2 from bonded device.
Please remove port 3 from bonded device.
Please remove port 4 from bonded device.
Please remove port 5 from bonded device.
Please remove port 6 from bonded device.
Done
17/10/2019 15:30:18             dut.10.240.176.151: show port stats all
17/10/2019 15:30:18             dut.10.240.176.151: show port stats all

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 1  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 3  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 4  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 6  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 7  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:30:18             dut.10.240.176.151: stop
17/10/2019 15:30:18             dut.10.240.176.151: stop
Packet forwarding not started
17/10/2019 15:30:22             dut.10.240.176.151: quit
17/10/2019 15:30:23             dut.10.240.176.151: quit

Stopping port 0...
Stopping ports...
Please remove port 0 from bonded device.
Done

Stopping port 1...
Stopping ports...
Please remove port 1 from bonded device.
Done

Stopping port 2...
Stopping ports...
Please remove port 2 from bonded device.
Done

Stopping port 3...
Stopping ports...
Please remove port 3 from bonded device.
Done

Stopping port 4...
Stopping ports...
Please remove port 4 from bonded device.
Done

Stopping port 5...
Stopping ports...
Please remove port 5 from bonded device.
Done

Stopping port 6...
Stopping ports...
Please remove port 6 from bonded device.
Done

Stopping port 7...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Please remove port 0 from bonded device.
Done

Shutting down port 1...
Closing ports...
Please remove port 1 from bonded device.
Done

Shutting down port 2...
Closing ports...
Please remove port 2 from bonded device.
Done

Shutting down port 3...
Closing ports...
Please remove port 3 from bonded device.
Done

Shutting down port 4...
Closing ports...
Please remove port 4 from bonded device.
Done

Shutting down port 5...
Closing ports...
Please remove port 5 from bonded device.
Done

Shutting down port 6...
Closing ports...
Please remove port 6 from bonded device.
Done

Shutting down port 7...
Closing ports...
Device with port_id=6 already stopped
Done

Bye...
17/10/2019 15:30:33             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:30:33             dut.10.240.176.151: 
17/10/2019 15:30:33             TestBondingStacked: close testpmd successful
17/10/2019 15:30:38             TestBondingStacked: begin mode <6> checking
17/10/2019 15:30:38             dut.10.240.176.151: ./x86_64-native-linuxapp-clang/app/testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -w 0000:04:00.0 -w 0000:04:00.1 -w 0000:04:00.2 -w 0000:04:00.3  --file-prefix=dpdk_27774_20191017151856   -- -i 
17/10/2019 15:30:41             dut.10.240.176.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_27774_20191017151856/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: PCI device 0000:04:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=411456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
Port 0: 3C:FD:FE:B2:43:88
Configuring Port 1 (socket 0)
Port 1: 3C:FD:FE:B2:43:89
Configuring Port 2 (socket 0)
Port 2: 3C:FD:FE:B2:43:8A
Configuring Port 3 (socket 0)
Port 3: 3C:FD:FE:B2:43:8B
Checking link statuses...
Done
17/10/2019 15:31:01             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:31:01             dut.10.240.176.151: 32595
17/10/2019 15:31:01             TestBondingStacked: testpmd boot up successful
17/10/2019 15:31:01             dut.10.240.176.151: port stop all
17/10/2019 15:31:01             dut.10.240.176.151: port stop all
Stopping ports...

Port 0: link state change event

Port 1: link state change event

Port 2: link state change event
Checking link statuses...

Port 3: link state change event
Done
17/10/2019 15:31:04             TestBondingStacked: check bonding mode <6>
17/10/2019 15:31:04             dut.10.240.176.151: create bonded device 6 0
17/10/2019 15:31:04             dut.10.240.176.151: create bonded device 6 0
Created new bonded device net_bonding_testpmd_0 on (port 4).
17/10/2019 15:31:06             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:31:06             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:31:08             dut.10.240.176.151: show bonding config 4
17/10/2019 15:31:09             dut.10.240.176.151: show bonding config 4
	Bonding mode: 6
	Slaves (1): [0]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:31:11             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:31:11             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:31:13             dut.10.240.176.151: show bonding config 4
17/10/2019 15:31:13             dut.10.240.176.151: show bonding config 4
	Bonding mode: 6
	Slaves (2): [0 1]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:31:15             dut.10.240.176.151: create bonded device 6 0
17/10/2019 15:31:15             dut.10.240.176.151: create bonded device 6 0
Created new bonded device net_bonding_testpmd_1 on (port 5).
17/10/2019 15:31:17             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:31:17             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:31:19             dut.10.240.176.151: show bonding config 5
17/10/2019 15:31:19             dut.10.240.176.151: show bonding config 5
	Bonding mode: 6
	Slaves (1): [2]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:31:21             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:31:21             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:31:23             dut.10.240.176.151: show bonding config 5
17/10/2019 15:31:23             dut.10.240.176.151: show bonding config 5
	Bonding mode: 6
	Slaves (2): [2 3]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:31:25             dut.10.240.176.151: create bonded device 6 0
17/10/2019 15:31:25             dut.10.240.176.151: create bonded device 6 0
Created new bonded device net_bonding_testpmd_2 on (port 6).
17/10/2019 15:31:27             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:31:28             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:31:30             dut.10.240.176.151: show bonding config 6
17/10/2019 15:31:30             dut.10.240.176.151: show bonding config 6
	Bonding mode: 6
	Slaves (1): [4]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:31:32             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:31:32             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:31:34             dut.10.240.176.151: show bonding config 6
17/10/2019 15:31:34             dut.10.240.176.151: show bonding config 6
	Bonding mode: 6
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:31:36             dut.10.240.176.151: show port info 6
17/10/2019 15:31:36             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:31:38             dut.10.240.176.151: show port info 6
17/10/2019 15:31:38             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:31:40             dut.10.240.176.151: show port info 6
17/10/2019 15:31:40             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:31:42             dut.10.240.176.151: show port info 6
17/10/2019 15:31:42             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:31:44             dut.10.240.176.151: show port info 6
17/10/2019 15:31:44             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:31:46             dut.10.240.176.151: show port info 6
17/10/2019 15:31:47             dut.10.240.176.151: show port info 6

********************* Infos for port 6  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_2
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:31:49             dut.10.240.176.151: show port info 4
17/10/2019 15:31:49             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:31:51             dut.10.240.176.151: show port info 4
17/10/2019 15:31:51             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:31:53             dut.10.240.176.151: show port info 4
17/10/2019 15:31:53             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:31:55             dut.10.240.176.151: show port info 4
17/10/2019 15:31:55             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:31:57             dut.10.240.176.151: show port info 4
17/10/2019 15:31:57             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:31:59             dut.10.240.176.151: show port info 4
17/10/2019 15:31:59             dut.10.240.176.151: show port info 4

********************* Infos for port 4  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: net_bonding_testpmd_0
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:32:01             dut.10.240.176.151: show port info 5
17/10/2019 15:32:01             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:32:03             dut.10.240.176.151: show port info 5
17/10/2019 15:32:03             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:32:05             dut.10.240.176.151: show port info 5
17/10/2019 15:32:06             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:32:08             dut.10.240.176.151: show port info 5
17/10/2019 15:32:08             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:32:10             dut.10.240.176.151: show port info 5
17/10/2019 15:32:10             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:32:12             dut.10.240.176.151: show port info 5
17/10/2019 15:32:12             dut.10.240.176.151: show port info 5

********************* Infos for port 5  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: net_bonding_testpmd_1
Driver name: net_bonding
Devargs: driver=net_bonding,mode=6,socket_id=0
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: half-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 16
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 0
Maximum configurable length of RX packet: 9728
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 0
RXDs number alignment: 1
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 0
TXDs number alignment: 1
Max segment number per packet: 65535
Max segment number per MTU/TSO: 65535
17/10/2019 15:32:14             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:32:14             dut.10.240.176.151: add bonding slave 4 6
__eth_bond_slave_add_lock_free(465) - Slave device is already a slave of a bonded device
	 Failed to add slave 4 to master port = 6.
17/10/2019 15:32:16             dut.10.240.176.151: show bonding config 6
17/10/2019 15:32:16             dut.10.240.176.151: show bonding config 6
	Bonding mode: 6
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:32:18             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:32:18             dut.10.240.176.151: add bonding slave 5 6
__eth_bond_slave_add_lock_free(465) - Slave device is already a slave of a bonded device
	 Failed to add slave 5 to master port = 6.
17/10/2019 15:32:20             dut.10.240.176.151: show bonding config 6
17/10/2019 15:32:20             dut.10.240.176.151: show bonding config 6
	Bonding mode: 6
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:32:22             dut.10.240.176.151: create bonded device 6 0
17/10/2019 15:32:23             dut.10.240.176.151: create bonded device 6 0
Created new bonded device net_bonding_testpmd_3 on (port 7).
17/10/2019 15:32:25             dut.10.240.176.151: add bonding slave 6 7
17/10/2019 15:32:25             dut.10.240.176.151: add bonding slave 6 7
17/10/2019 15:32:27             dut.10.240.176.151: show bonding config 7
17/10/2019 15:32:27             dut.10.240.176.151: show bonding config 7
	Bonding mode: 6
	Slaves (1): [6]
	Active Slaves: []
	Primary: [6]
17/10/2019 15:32:29             TestBondingStacked: mode <6> done !
17/10/2019 15:32:30             dut.10.240.176.151: port stop all
17/10/2019 15:32:30             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from bonded device.
Please remove port 1 from bonded device.
Please remove port 2 from bonded device.
Please remove port 3 from bonded device.
Please remove port 4 from bonded device.
Please remove port 5 from bonded device.
Please remove port 6 from bonded device.
Done
17/10/2019 15:32:30             dut.10.240.176.151: show port stats all
17/10/2019 15:32:30             dut.10.240.176.151: show port stats all

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 1  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 3  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 4  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 6  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 7  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:32:30             dut.10.240.176.151: stop
17/10/2019 15:32:30             dut.10.240.176.151: stop
Packet forwarding not started
17/10/2019 15:32:34             dut.10.240.176.151: quit
17/10/2019 15:32:35             dut.10.240.176.151: quit

Stopping port 0...
Stopping ports...
Please remove port 0 from bonded device.
Done

Stopping port 1...
Stopping ports...
Please remove port 1 from bonded device.
Done

Stopping port 2...
Stopping ports...
Please remove port 2 from bonded device.
Done

Stopping port 3...
Stopping ports...
Please remove port 3 from bonded device.
Done

Stopping port 4...
Stopping ports...
Please remove port 4 from bonded device.
Done

Stopping port 5...
Stopping ports...
Please remove port 5 from bonded device.
Done

Stopping port 6...
Stopping ports...
Please remove port 6 from bonded device.
Done

Stopping port 7...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Please remove port 0 from bonded device.
Done

Shutting down port 1...
Closing ports...
Please remove port 1 from bonded device.
Done

Shutting down port 2...
Closing ports...
Please remove port 2 from bonded device.
Done

Shutting down port 3...
Closing ports...
Please remove port 3 from bonded device.
Done

Shutting down port 4...
Closing ports...
Please remove port 4 from bonded device.
Done

Shutting down port 5...
Closing ports...
Please remove port 5 from bonded device.
Done

Shutting down port 6...
Closing ports...
Please remove port 6 from bonded device.
Done

Shutting down port 7...
Closing ports...
Device with port_id=6 already stopped
Done

Bye...
17/10/2019 15:32:45             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:32:45             dut.10.240.176.151: 
17/10/2019 15:32:45             TestBondingStacked: close testpmd successful
17/10/2019 15:32:50             dut.10.240.176.151: ./x86_64-native-linuxapp-clang/app/testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -w 0000:04:00.0 -w 0000:04:00.1 -w 0000:04:00.2 -w 0000:04:00.3  --file-prefix=dpdk_27774_20191017151856   -- -i 
17/10/2019 15:32:53             dut.10.240.176.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_27774_20191017151856/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: PCI device 0000:04:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=411456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
Port 0: 3C:FD:FE:B2:43:88
Configuring Port 1 (socket 0)
Port 1: 3C:FD:FE:B2:43:89
Configuring Port 2 (socket 0)
Port 2: 3C:FD:FE:B2:43:8A
Configuring Port 3 (socket 0)
Port 3: 3C:FD:FE:B2:43:8B
Checking link statuses...
Done
17/10/2019 15:33:13             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:33:13             dut.10.240.176.151: 32676
17/10/2019 15:33:13             TestBondingStacked: testpmd boot up successful
17/10/2019 15:33:13             dut.10.240.176.151: port stop all
17/10/2019 15:33:13             dut.10.240.176.151: port stop all
Stopping ports...

Port 0: link state change event

Port 1: link state change event

Port 2: link state change event
Checking link statuses...

Port 3: link state change event
Done
17/10/2019 15:33:16             dut.10.240.176.151: create bonded device 4 0
17/10/2019 15:33:17             dut.10.240.176.151: create bonded device 4 0
bond_ethdev_mode_set(1590) - Using mode 4, it is necessary to do TX burst and RX burst at least every 100ms.
Created new bonded device net_bonding_testpmd_0 on (port 4).
17/10/2019 15:33:19             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:33:19             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:33:21             dut.10.240.176.151: show bonding config 4
17/10/2019 15:33:21             dut.10.240.176.151: show bonding config 4
	Bonding mode: 4
	IEEE802.3AD Aggregator Mode: stable
	Slaves (1): [0]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:33:23             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:33:23             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:33:25             dut.10.240.176.151: show bonding config 4
17/10/2019 15:33:25             dut.10.240.176.151: show bonding config 4
	Bonding mode: 4
	IEEE802.3AD Aggregator Mode: stable
	Slaves (2): [0 1]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:33:27             dut.10.240.176.151: create bonded device 4 0
17/10/2019 15:33:27             dut.10.240.176.151: create bonded device 4 0
bond_ethdev_mode_set(1590) - Using mode 4, it is necessary to do TX burst and RX burst at least every 100ms.
Created new bonded device net_bonding_testpmd_1 on (port 5).
17/10/2019 15:33:29             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:33:29             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:33:31             dut.10.240.176.151: show bonding config 5
17/10/2019 15:33:31             dut.10.240.176.151: show bonding config 5
	Bonding mode: 4
	IEEE802.3AD Aggregator Mode: stable
	Slaves (1): [2]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:33:33             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:33:33             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:33:35             dut.10.240.176.151: show bonding config 5
17/10/2019 15:33:36             dut.10.240.176.151: show bonding config 5
	Bonding mode: 4
	IEEE802.3AD Aggregator Mode: stable
	Slaves (2): [2 3]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:33:38             dut.10.240.176.151: create bonded device 4 0
17/10/2019 15:33:38             dut.10.240.176.151: create bonded device 4 0
bond_ethdev_mode_set(1590) - Using mode 4, it is necessary to do TX burst and RX burst at least every 100ms.
Created new bonded device net_bonding_testpmd_2 on (port 6).
17/10/2019 15:33:40             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:33:40             dut.10.240.176.151: add bonding slave 4 6
valid_slave_port_id(68) - Cannot add slave to bonded device in 802.3ad mode as slave is also a bonded device, only physical devices can be support in this mode.
	 Failed to add slave 4 to master port = 6.
17/10/2019 15:33:42             dut.10.240.176.151: show bonding config 6
17/10/2019 15:33:42             dut.10.240.176.151: show bonding config 6
	Bonding mode: 4
	IEEE802.3AD Aggregator Mode: stable
	Slaves: []
	Active Slaves: []
	Failed to get primary slave for port = 6
17/10/2019 15:33:44             TestBondingStacked: Slaves \(\d\): \[ hasn't match anything
17/10/2019 15:33:45             dut.10.240.176.151: port stop all
17/10/2019 15:33:45             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from bonded device.
Please remove port 1 from bonded device.
Please remove port 2 from bonded device.
Please remove port 3 from bonded device.
Done
17/10/2019 15:33:45             dut.10.240.176.151: show port stats all
17/10/2019 15:33:45             dut.10.240.176.151: show port stats all

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 1  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 3  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 4  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 6  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:33:45             dut.10.240.176.151: stop
17/10/2019 15:33:45             dut.10.240.176.151: stop
Packet forwarding not started
17/10/2019 15:33:49             dut.10.240.176.151: quit
17/10/2019 15:33:50             dut.10.240.176.151: quit

Stopping port 0...
Stopping ports...
Please remove port 0 from bonded device.
Done

Stopping port 1...
Stopping ports...
Please remove port 1 from bonded device.
Done

Stopping port 2...
Stopping ports...
Please remove port 2 from bonded device.
Done

Stopping port 3...
Stopping ports...
Please remove port 3 from bonded device.
Done

Stopping port 4...
Stopping ports...
Done

Stopping port 5...
Stopping ports...
Done

Stopping port 6...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Please remove port 0 from bonded device.
Done

Shutting down port 1...
Closing ports...
Please remove port 1 from bonded device.
Done

Shutting down port 2...
Closing ports...
Please remove port 2 from bonded device.
Done

Shutting down port 3...
Closing ports...
Please remove port 3 from bonded device.
Done

Shutting down port 4...
Closing ports...
Device with port_id=0 already stopped
Device with port_id=1 already stopped
Done

Shutting down port 5...
Closing ports...
Device with port_id=2 already stopped
Device with port_id=3 already stopped
Done

Shutting down port 6...
Closing ports...
Done

Bye...
17/10/2019 15:34:00             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:34:00             dut.10.240.176.151: 
17/10/2019 15:34:00             TestBondingStacked: close testpmd successful
17/10/2019 15:34:00             TestBondingStacked: mode <0> done !
17/10/2019 15:34:00             TestBondingStacked: mode <1> done !
17/10/2019 15:34:00             TestBondingStacked: mode <2> done !
17/10/2019 15:34:00             TestBondingStacked: mode <3> done !
17/10/2019 15:34:00             TestBondingStacked: mode <5> done !
17/10/2019 15:34:00             TestBondingStacked: mode <6> done !
17/10/2019 15:34:00             TestBondingStacked: mode <4> done !
17/10/2019 15:34:00             TestBondingStacked: all test items have done !
17/10/2019 15:34:00             TestBondingStacked: Test Case test_basic_behav Result PASSED:
17/10/2019 15:34:00             TestBondingStacked: Test Case test_mode_backup_one_slave_down Begin
17/10/2019 15:34:01             dut.10.240.176.151: 
17/10/2019 15:34:01                         tester: 
17/10/2019 15:34:01             TestBondingStacked: begin checking bonding backup(stacked) mode transmission with one slave down
17/10/2019 15:34:01             dut.10.240.176.151: ./x86_64-native-linuxapp-clang/app/testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -w 0000:04:00.0 -w 0000:04:00.1 -w 0000:04:00.2 -w 0000:04:00.3  --file-prefix=dpdk_27774_20191017151856   -- -i 
17/10/2019 15:34:03             dut.10.240.176.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_27774_20191017151856/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: PCI device 0000:04:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=411456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
Port 0: 3C:FD:FE:B2:43:88
Configuring Port 1 (socket 0)
Port 1: 3C:FD:FE:B2:43:89
Configuring Port 2 (socket 0)
Port 2: 3C:FD:FE:B2:43:8A
Configuring Port 3 (socket 0)
Port 3: 3C:FD:FE:B2:43:8B
Checking link statuses...
Done
17/10/2019 15:34:23             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:34:24             dut.10.240.176.151: 32728
17/10/2019 15:34:24             TestBondingStacked: testpmd boot up successful
17/10/2019 15:34:24             dut.10.240.176.151: port stop all
17/10/2019 15:34:24             dut.10.240.176.151: port stop all
Stopping ports...

Port 0: link state change event

Port 1: link state change event

Port 2: link state change event
Checking link statuses...

Port 3: link state change event
Done
17/10/2019 15:34:27             dut.10.240.176.151: create bonded device 1 0
17/10/2019 15:34:27             dut.10.240.176.151: create bonded device 1 0
Created new bonded device net_bonding_testpmd_0 on (port 4).
17/10/2019 15:34:29             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:34:29             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:34:31             dut.10.240.176.151: show bonding config 4
17/10/2019 15:34:31             dut.10.240.176.151: show bonding config 4
	Bonding mode: 1
	Slaves (1): [0]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:34:33             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:34:33             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:34:35             dut.10.240.176.151: show bonding config 4
17/10/2019 15:34:35             dut.10.240.176.151: show bonding config 4
	Bonding mode: 1
	Slaves (2): [0 1]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:34:37             dut.10.240.176.151: create bonded device 1 0
17/10/2019 15:34:38             dut.10.240.176.151: create bonded device 1 0
Created new bonded device net_bonding_testpmd_1 on (port 5).
17/10/2019 15:34:40             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:34:40             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:34:42             dut.10.240.176.151: show bonding config 5
17/10/2019 15:34:42             dut.10.240.176.151: show bonding config 5
	Bonding mode: 1
	Slaves (1): [2]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:34:44             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:34:44             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:34:46             dut.10.240.176.151: show bonding config 5
17/10/2019 15:34:46             dut.10.240.176.151: show bonding config 5
	Bonding mode: 1
	Slaves (2): [2 3]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:34:48             dut.10.240.176.151: create bonded device 1 0
17/10/2019 15:34:48             dut.10.240.176.151: create bonded device 1 0
Created new bonded device net_bonding_testpmd_2 on (port 6).
17/10/2019 15:34:50             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:34:50             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:34:52             dut.10.240.176.151: show bonding config 6
17/10/2019 15:34:52             dut.10.240.176.151: show bonding config 6
	Bonding mode: 1
	Slaves (1): [4]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:34:54             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:34:54             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:34:56             dut.10.240.176.151: show bonding config 6
17/10/2019 15:34:57             dut.10.240.176.151: show bonding config 6
	Bonding mode: 1
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:34:59             dut.10.240.176.151: port stop all
17/10/2019 15:34:59             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from bonded device.
Please remove port 1 from bonded device.
Please remove port 2 from bonded device.
Please remove port 3 from bonded device.
Please remove port 4 from bonded device.
Please remove port 5 from bonded device.
Done
17/10/2019 15:34:59             dut.10.240.176.151: set portlist 0,2,4,5,6
17/10/2019 15:34:59             dut.10.240.176.151: set portlist 0,2,4,5,6
previous number of forwarding ports 4 - changed to number of configured ports 5

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

17/10/2019 15:34:59             dut.10.240.176.151: port start 6
17/10/2019 15:34:59             dut.10.240.176.151: port
17/10/2019 15:35:06             dut.10.240.176.151:  
17/10/2019 15:35:06             dut.10.240.176.151:  
17/10/2019 15:35:06             dut.10.240.176.151: start
17/10/2019 15:35:06             dut.10.240.176.151: start
io packet forwarding - ports=5 - cores=1 - streams=5 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 5 streams:
  RX P=0/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
  RX P=2/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=4/Q=0 (socket 0) -> TX P=5/Q=0 (socket 0) peer=02:00:00:00:00:05
  RX P=5/Q=0 (socket 0) -> TX P=4/Q=0 (socket 0) peer=02:00:00:00:00:04
  RX P=6/Q=0 (socket 0) -> TX P=6/Q=0 (socket 0) peer=02:00:00:00:00:06

  io packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=5
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 2: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 3: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 4: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=0
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=0
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=0
  port 5: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=0
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=0
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=0
  port 6: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=0
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=0
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=0
17/10/2019 15:35:13             dut.10.240.176.151: set link-down port 0
17/10/2019 15:35:13             dut.10.240.176.151: set link-down port 0
17/10/2019 15:35:20             dut.10.240.176.151: show port info 0
17/10/2019 15:35:20             dut.10.240.176.151: show port info 0

********************* Infos for port 0  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.0
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:35:22             TestBondingStacked: port 0 is [down]
17/10/2019 15:35:22             dut.10.240.176.151: show bonding config 4
17/10/2019 15:35:23             dut.10.240.176.151: show bonding config 4
	Bonding mode: 1
	Slaves (2): [0 1]
	Active Slaves (1): [1]
	Primary: [1]
17/10/2019 15:35:25             dut.10.240.176.151: show bonding config 4
17/10/2019 15:35:25             dut.10.240.176.151: show bonding config 4
	Bonding mode: 1
	Slaves (2): [0 1]
	Active Slaves (1): [1]
	Primary: [1]
17/10/2019 15:35:27             dut.10.240.176.151: set link-down port 2
17/10/2019 15:35:27             dut.10.240.176.151: set link-down port 2
17/10/2019 15:35:34             dut.10.240.176.151: show port info 2
17/10/2019 15:35:34             dut.10.240.176.151: show port info 2

********************* Infos for port 2  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: 0000:04:00.2
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:35:36             TestBondingStacked: port 2 is [down]
17/10/2019 15:35:36             dut.10.240.176.151: show bonding config 5
17/10/2019 15:35:36             dut.10.240.176.151: show bonding config 5
	Bonding mode: 1
	Slaves (2): [2 3]
	Active Slaves (1): [3]
	Primary: [3]
17/10/2019 15:35:38             dut.10.240.176.151: show bonding config 5
17/10/2019 15:35:38             dut.10.240.176.151: show bonding config 5
	Bonding mode: 1
	Slaves (2): [2 3]
	Active Slaves (1): [3]
	Primary: [3]
17/10/2019 15:35:40             TestBondingStacked: send packet to active slave port <1>
17/10/2019 15:35:40             dut.10.240.176.151: show port info 1
17/10/2019 15:35:40             dut.10.240.176.151: show port info 1

********************* Infos for port 1  *********************
MAC address: 3C:FD:FE:B2:43:89
Device name: 0000:04:00.1
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:35:42             dut.10.240.176.151: show port stats 1
17/10/2019 15:35:42             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:35:42             dut.10.240.176.151: show port stats 6
17/10/2019 15:35:42             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:35:44             TestBondingStacked: begin transmission ...
17/10/2019 15:35:44                         tester: ifconfig ens160f1 up
17/10/2019 15:35:45                         tester: 
17/10/2019 15:35:46             TestBondingStacked: complete transmission
17/10/2019 15:35:46             dut.10.240.176.151: show port stats 1
17/10/2019 15:35:46             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 49         TX-errors: 0          TX-bytes:  2940

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           14
  ############################################################################
17/10/2019 15:35:46             dut.10.240.176.151: show port stats 6
17/10/2019 15:35:46             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 100        TX-errors: 0          TX-bytes:  6000

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           29
  ############################################################################
17/10/2019 15:35:46             TestBondingStacked: tester port ens160f1  <----> dut port 1 is ok
17/10/2019 15:35:46             TestBondingStacked: send packet to active slave port <3>
17/10/2019 15:35:46             dut.10.240.176.151: show port info 3
17/10/2019 15:35:46             dut.10.240.176.151: show port info 3

********************* Infos for port 3  *********************
MAC address: 3C:FD:FE:B2:43:8B
Device name: 0000:04:00.3
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:35:48             dut.10.240.176.151: show port stats 3
17/10/2019 15:35:48             dut.10.240.176.151: show port stats 3

  ######################## NIC statistics for port 3  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 51         TX-errors: 0          TX-bytes:  3060

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:35:48             dut.10.240.176.151: show port stats 6
17/10/2019 15:35:48             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 100        TX-errors: 0          TX-bytes:  6000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:35:50             TestBondingStacked: begin transmission ...
17/10/2019 15:35:50                         tester: ifconfig ens224f1 up
17/10/2019 15:35:50                         tester: 
17/10/2019 15:35:51             TestBondingStacked: complete transmission
17/10/2019 15:35:51             dut.10.240.176.151: show port stats 3
17/10/2019 15:35:52             dut.10.240.176.151: show port stats 3

  ######################## NIC statistics for port 3  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 51         TX-errors: 0          TX-bytes:  3060

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:35:52             dut.10.240.176.151: show port stats 6
17/10/2019 15:35:52             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           29
  ############################################################################
17/10/2019 15:35:52             TestBondingStacked: tester port ens224f1  <----> dut port 3 is ok
17/10/2019 15:35:52             TestBondingStacked: send packet to inactive slave port <0>
17/10/2019 15:35:52             dut.10.240.176.151: show port info 0
17/10/2019 15:35:52             dut.10.240.176.151: show port info 0

********************* Infos for port 0  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.0
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:35:54             dut.10.240.176.151: show port stats 0
17/10/2019 15:35:54             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:35:54             dut.10.240.176.151: show port stats 6
17/10/2019 15:35:54             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:35:56             TestBondingStacked: begin transmission ...
17/10/2019 15:35:56                         tester: ifconfig eno16777984 up
17/10/2019 15:35:56                         tester: 
17/10/2019 15:35:57             TestBondingStacked: complete transmission
17/10/2019 15:35:57             dut.10.240.176.151: show port stats 0
17/10/2019 15:35:57             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:35:57             dut.10.240.176.151: show port stats 6
17/10/2019 15:35:57             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:35:57             TestBondingStacked: tester port eno16777984  <-|  |-> dut port 0 is blocked
17/10/2019 15:35:57             TestBondingStacked: send packet to inactive slave port <2>
17/10/2019 15:35:57             dut.10.240.176.151: show port info 2
17/10/2019 15:35:58             dut.10.240.176.151: show port info 2

********************* Infos for port 2  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: 0000:04:00.2
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:36:00             dut.10.240.176.151: show port stats 2
17/10/2019 15:36:00             dut.10.240.176.151: show port stats 2

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:36:00             dut.10.240.176.151: show port stats 6
17/10/2019 15:36:00             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:36:02             TestBondingStacked: begin transmission ...
17/10/2019 15:36:02                         tester: ifconfig eno50336512 up
17/10/2019 15:36:02                         tester: 
17/10/2019 15:36:03             TestBondingStacked: complete transmission
17/10/2019 15:36:03             dut.10.240.176.151: show port stats 2
17/10/2019 15:36:03             dut.10.240.176.151: show port stats 2

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:36:03             dut.10.240.176.151: show port stats 6
17/10/2019 15:36:03             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:36:03             TestBondingStacked: tester port eno50336512  <-|  |-> dut port 2 is blocked
17/10/2019 15:36:04             dut.10.240.176.151: port stop all
17/10/2019 15:36:05             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from forwarding configuration.
Please remove port 1 from bonded device.
Please remove port 2 from forwarding configuration.
Please remove port 3 from bonded device.
Please remove port 4 from forwarding configuration.
Please remove port 5 from forwarding configuration.
Please remove port 6 from forwarding configuration.
Done
17/10/2019 15:36:05             dut.10.240.176.151: show port stats all
17/10/2019 15:36:05             dut.10.240.176.151: show port stats all

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 1  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 149        TX-errors: 0          TX-bytes:  8940

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            5
  ############################################################################

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 3  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 51         TX-errors: 0          TX-bytes:  3060

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 4  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 149        TX-errors: 0          TX-bytes:  8940

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 5  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 51         TX-errors: 0          TX-bytes:  3060

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 6  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:36:05             dut.10.240.176.151: stop
17/10/2019 15:36:05             dut.10.240.176.151: stop
Telling cores to stop...
Waiting for lcores to finish...

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

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

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

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

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

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

Done.
17/10/2019 15:36:09             dut.10.240.176.151: quit
17/10/2019 15:36:10             dut.10.240.176.151: quit

Stopping port 0...
Stopping ports...
Please remove port 0 from bonded device.
Done

Stopping port 1...
Stopping ports...
Please remove port 1 from bonded device.
Done

Stopping port 2...
Stopping ports...
Please remove port 2 from bonded device.
Done

Stopping port 3...
Stopping ports...
Please remove port 3 from bonded device.
Done

Stopping port 4...
Stopping ports...
Please remove port 4 from bonded device.
Done

Stopping port 5...
Stopping ports...
Please remove port 5 from bonded device.
Done

Stopping port 6...
Stopping ports...

Port 1: link state change event
Done

Shutting down port 0...
Closing ports...
Please remove port 0 from bonded device.
Done

Shutting down port 1...
Closing ports...
Please remove port 1 from bonded device.
Done

Shutting down port 2...
Closing ports...
Please remove port 2 from bonded device.
Done

Shutting down port 3...
Closing ports...
Please remove port 3 from bonded device.
Done

Shutting down port 4...
Closing ports...
Please remove port 4 from bonded device.
Done

Shutting down port 5...
Closing ports...
Please remove port 5 from bonded device.
Done

Shutting down port 6...
Closing ports...
Device with port_id=4 already stopped
Device with port_id=5 already stopped
Done

Port 3: link state change event

Bye...
17/10/2019 15:36:20             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:36:20             dut.10.240.176.151: 
17/10/2019 15:36:20             TestBondingStacked: close testpmd successful
17/10/2019 15:36:20             TestBondingStacked: Test Case test_mode_backup_one_slave_down Result PASSED:
17/10/2019 15:36:20             TestBondingStacked: Test Case test_mode_backup_rx Begin
17/10/2019 15:36:20             dut.10.240.176.151: 
17/10/2019 15:36:20                         tester: 
17/10/2019 15:36:20             TestBondingStacked: begin checking bonding backup(stacked) mode transmission
17/10/2019 15:36:20             dut.10.240.176.151: ./x86_64-native-linuxapp-clang/app/testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -w 0000:04:00.0 -w 0000:04:00.1 -w 0000:04:00.2 -w 0000:04:00.3  --file-prefix=dpdk_27774_20191017151856   -- -i 
17/10/2019 15:36:23             dut.10.240.176.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_27774_20191017151856/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: PCI device 0000:04:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=411456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
Port 0: 3C:FD:FE:B2:43:88
Configuring Port 1 (socket 0)
Port 1: 3C:FD:FE:B2:43:89
Configuring Port 2 (socket 0)
Port 2: 3C:FD:FE:B2:43:8A
Configuring Port 3 (socket 0)
Port 3: 3C:FD:FE:B2:43:8B
Checking link statuses...
Done
17/10/2019 15:36:43             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:36:43             dut.10.240.176.151: 32789
17/10/2019 15:36:43             TestBondingStacked: testpmd boot up successful
17/10/2019 15:36:43             dut.10.240.176.151: port stop all
17/10/2019 15:36:43             dut.10.240.176.151: port stop all
Stopping ports...

Port 0: link state change event

Port 1: link state change event

Port 2: link state change event
Checking link statuses...

Port 3: link state change event
Done
17/10/2019 15:36:46             dut.10.240.176.151: create bonded device 1 0
17/10/2019 15:36:47             dut.10.240.176.151: create bonded device 1 0
Created new bonded device net_bonding_testpmd_0 on (port 4).
17/10/2019 15:36:49             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:36:49             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:36:51             dut.10.240.176.151: show bonding config 4
17/10/2019 15:36:51             dut.10.240.176.151: show bonding config 4
	Bonding mode: 1
	Slaves (1): [0]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:36:53             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:36:54             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:36:56             dut.10.240.176.151: show bonding config 4
17/10/2019 15:36:56             dut.10.240.176.151: show bonding config 4
	Bonding mode: 1
	Slaves (2): [0 1]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:36:58             dut.10.240.176.151: create bonded device 1 0
17/10/2019 15:36:58             dut.10.240.176.151: create bonded device 1 0
Created new bonded device net_bonding_testpmd_1 on (port 5).
17/10/2019 15:37:00             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:37:00             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:37:02             dut.10.240.176.151: show bonding config 5
17/10/2019 15:37:02             dut.10.240.176.151: show bonding config 5
	Bonding mode: 1
	Slaves (1): [2]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:37:04             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:37:04             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:37:06             dut.10.240.176.151: show bonding config 5
17/10/2019 15:37:07             dut.10.240.176.151: show bonding config 5
	Bonding mode: 1
	Slaves (2): [2 3]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:37:09             dut.10.240.176.151: create bonded device 1 0
17/10/2019 15:37:09             dut.10.240.176.151: create bonded device 1 0
Created new bonded device net_bonding_testpmd_2 on (port 6).
17/10/2019 15:37:11             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:37:11             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:37:13             dut.10.240.176.151: show bonding config 6
17/10/2019 15:37:13             dut.10.240.176.151: show bonding config 6
	Bonding mode: 1
	Slaves (1): [4]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:37:15             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:37:15             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:37:17             dut.10.240.176.151: show bonding config 6
17/10/2019 15:37:17             dut.10.240.176.151: show bonding config 6
	Bonding mode: 1
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:37:19             dut.10.240.176.151: port stop all
17/10/2019 15:37:20             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from bonded device.
Please remove port 1 from bonded device.
Please remove port 2 from bonded device.
Please remove port 3 from bonded device.
Please remove port 4 from bonded device.
Please remove port 5 from bonded device.
Done
17/10/2019 15:37:20             dut.10.240.176.151: set portlist 0,2,4,5,6
17/10/2019 15:37:20             dut.10.240.176.151: set portlist 0,2,4,5,6
previous number of forwarding ports 4 - changed to number of configured ports 5

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

17/10/2019 15:37:20             dut.10.240.176.151: port start 6
17/10/2019 15:37:20             dut.10.240.176.151: port
17/10/2019 15:37:27             dut.10.240.176.151:  
17/10/2019 15:37:27             dut.10.240.176.151:  
17/10/2019 15:37:27             dut.10.240.176.151: start
17/10/2019 15:37:27             dut.10.240.176.151: start
io packet forwarding - ports=5 - cores=1 - streams=5 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 5 streams:
  RX P=0/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
  RX P=2/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=4/Q=0 (socket 0) -> TX P=5/Q=0 (socket 0) peer=02:00:00:00:00:05
  RX P=5/Q=0 (socket 0) -> TX P=4/Q=0 (socket 0) peer=02:00:00:00:00:04
  RX P=6/Q=0 (socket 0) -> TX P=6/Q=0 (socket 0) peer=02:00:00:00:00:06

  io packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=5
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 2: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 3: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 4: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=0
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=0
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=0
  port 5: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=0
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=0
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=0
  port 6: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=0
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=0
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=0
17/10/2019 15:37:34             TestBondingStacked: check first bonded device
17/10/2019 15:37:34             TestBondingStacked: send packet to active slave port <0>
17/10/2019 15:37:34             dut.10.240.176.151: show port info 0
17/10/2019 15:37:34             dut.10.240.176.151: show port info 0

********************* Infos for port 0  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.0
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:37:36             dut.10.240.176.151: show port stats 0
17/10/2019 15:37:36             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:37:36             dut.10.240.176.151: show port stats 4
17/10/2019 15:37:37             dut.10.240.176.151: show port stats 4

  ######################## NIC statistics for port 4  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:37:39             TestBondingStacked: begin transmission ...
17/10/2019 15:37:39                         tester: ifconfig eno16777984 up
17/10/2019 15:37:39                         tester: 
17/10/2019 15:37:40             TestBondingStacked: complete transmission
17/10/2019 15:37:40             dut.10.240.176.151: show port stats 0
17/10/2019 15:37:40             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 66         TX-errors: 0          TX-bytes:  3960

  Throughput (since last show)
  Rx-pps:           28
  Tx-pps:           19
  ############################################################################
17/10/2019 15:37:40             dut.10.240.176.151: show port stats 4
17/10/2019 15:37:40             dut.10.240.176.151: show port stats 4

  ######################## NIC statistics for port 4  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 66         TX-errors: 0          TX-bytes:  3960

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           19
  ############################################################################
17/10/2019 15:37:40             TestBondingStacked: tester port eno16777984  <----> dut port 0 is ok
17/10/2019 15:37:40             TestBondingStacked: send packet to active slave port <1>
17/10/2019 15:37:40             dut.10.240.176.151: show port info 1
17/10/2019 15:37:40             dut.10.240.176.151: show port info 1

********************* Infos for port 1  *********************
MAC address: 3C:FD:FE:B2:43:89
Device name: 0000:04:00.1
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:37:42             dut.10.240.176.151: show port stats 1
17/10/2019 15:37:42             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:37:42             dut.10.240.176.151: show port stats 4
17/10/2019 15:37:42             dut.10.240.176.151: show port stats 4

  ######################## NIC statistics for port 4  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 66         TX-errors: 0          TX-bytes:  3960

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:37:44             TestBondingStacked: begin transmission ...
17/10/2019 15:37:44                         tester: ifconfig ens160f1 up
17/10/2019 15:37:44                         tester: 
17/10/2019 15:37:46             TestBondingStacked: complete transmission
17/10/2019 15:37:46             dut.10.240.176.151: show port stats 1
17/10/2019 15:37:46             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:37:46             dut.10.240.176.151: show port stats 4
17/10/2019 15:37:46             dut.10.240.176.151: show port stats 4

  ######################## NIC statistics for port 4  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 66         TX-errors: 0          TX-bytes:  3960

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:37:46             TestBondingStacked: tester port ens160f1  <----> dut port 1 is ok
17/10/2019 15:37:46             TestBondingStacked: check second bonded device
17/10/2019 15:37:46             TestBondingStacked: send packet to active slave port <0>
17/10/2019 15:37:46             dut.10.240.176.151: show port info 0
17/10/2019 15:37:46             dut.10.240.176.151: show port info 0

********************* Infos for port 0  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.0
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:37:48             dut.10.240.176.151: show port stats 0
17/10/2019 15:37:48             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 66         TX-errors: 0          TX-bytes:  3960

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:37:48             dut.10.240.176.151: show port stats 5
17/10/2019 15:37:48             dut.10.240.176.151: show port stats 5

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 34         TX-errors: 0          TX-bytes:  2040

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:37:50             TestBondingStacked: begin transmission ...
17/10/2019 15:37:50                         tester: ifconfig eno16777984 up
17/10/2019 15:37:50                         tester: 
17/10/2019 15:37:51             TestBondingStacked: complete transmission
17/10/2019 15:37:51             dut.10.240.176.151: show port stats 0
17/10/2019 15:37:51             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 135        TX-errors: 0          TX-bytes:  8100

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           20
  ############################################################################
17/10/2019 15:37:51             dut.10.240.176.151: show port stats 5
17/10/2019 15:37:52             dut.10.240.176.151: show port stats 5

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 65         TX-errors: 0          TX-bytes:  3900

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            9
  ############################################################################
17/10/2019 15:37:52             TestBondingStacked: tester port eno16777984  <----> dut port 0 is ok
17/10/2019 15:37:52             TestBondingStacked: send packet to active slave port <1>
17/10/2019 15:37:52             dut.10.240.176.151: show port info 1
17/10/2019 15:37:52             dut.10.240.176.151: show port info 1

********************* Infos for port 1  *********************
MAC address: 3C:FD:FE:B2:43:89
Device name: 0000:04:00.1
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:37:54             dut.10.240.176.151: show port stats 1
17/10/2019 15:37:54             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:37:54             dut.10.240.176.151: show port stats 5
17/10/2019 15:37:54             dut.10.240.176.151: show port stats 5

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 65         TX-errors: 0          TX-bytes:  3900

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:37:56             TestBondingStacked: begin transmission ...
17/10/2019 15:37:56                         tester: ifconfig ens160f1 up
17/10/2019 15:37:56                         tester: 
17/10/2019 15:37:57             TestBondingStacked: complete transmission
17/10/2019 15:37:57             dut.10.240.176.151: show port stats 1
17/10/2019 15:37:57             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:37:57             dut.10.240.176.151: show port stats 5
17/10/2019 15:37:57             dut.10.240.176.151: show port stats 5

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 65         TX-errors: 0          TX-bytes:  3900

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:37:57             TestBondingStacked: tester port ens160f1  <----> dut port 1 is ok
17/10/2019 15:37:57             TestBondingStacked: check master bonded device
17/10/2019 15:37:57             TestBondingStacked: send packet to active slave port <0>
17/10/2019 15:37:57             dut.10.240.176.151: show port info 0
17/10/2019 15:37:57             dut.10.240.176.151: show port info 0

********************* Infos for port 0  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.0
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:37:59             dut.10.240.176.151: show port stats 0
17/10/2019 15:38:00             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 135        TX-errors: 0          TX-bytes:  8100

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:00             dut.10.240.176.151: show port stats 6
17/10/2019 15:38:00             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 400        RX-missed: 0          RX-bytes:  24000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:02             TestBondingStacked: begin transmission ...
17/10/2019 15:38:02                         tester: ifconfig eno16777984 up
17/10/2019 15:38:02                         tester: 
17/10/2019 15:38:03             TestBondingStacked: complete transmission
17/10/2019 15:38:03             dut.10.240.176.151: show port stats 0
17/10/2019 15:38:03             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 300        RX-missed: 0          RX-bytes:  18000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 201        TX-errors: 0          TX-bytes:  12060

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           19
  ############################################################################
17/10/2019 15:38:03             dut.10.240.176.151: show port stats 6
17/10/2019 15:38:03             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 500        RX-missed: 0          RX-bytes:  30000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 300        TX-errors: 0          TX-bytes:  18000

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           29
  ############################################################################
17/10/2019 15:38:03             TestBondingStacked: tester port eno16777984  <----> dut port 0 is ok
17/10/2019 15:38:03             TestBondingStacked: send packet to active slave port <1>
17/10/2019 15:38:03             dut.10.240.176.151: show port info 1
17/10/2019 15:38:03             dut.10.240.176.151: show port info 1

********************* Infos for port 1  *********************
MAC address: 3C:FD:FE:B2:43:89
Device name: 0000:04:00.1
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:38:05             dut.10.240.176.151: show port stats 1
17/10/2019 15:38:05             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:05             dut.10.240.176.151: show port stats 6
17/10/2019 15:38:05             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 500        RX-missed: 0          RX-bytes:  30000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 300        TX-errors: 0          TX-bytes:  18000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:07             TestBondingStacked: begin transmission ...
17/10/2019 15:38:07                         tester: ifconfig ens160f1 up
17/10/2019 15:38:08                         tester: 
17/10/2019 15:38:09             TestBondingStacked: complete transmission
17/10/2019 15:38:09             dut.10.240.176.151: show port stats 1
17/10/2019 15:38:09             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 300        RX-missed: 0          RX-bytes:  18000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:09             dut.10.240.176.151: show port stats 6
17/10/2019 15:38:09             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 600        RX-missed: 0          RX-bytes:  36000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 300        TX-errors: 0          TX-bytes:  18000

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:09             TestBondingStacked: tester port ens160f1  <----> dut port 1 is ok
17/10/2019 15:38:09             TestBondingStacked: send packet to active slave port <2>
17/10/2019 15:38:09             dut.10.240.176.151: show port info 2
17/10/2019 15:38:09             dut.10.240.176.151: show port info 2

********************* Infos for port 2  *********************
MAC address: 3C:FD:FE:B2:43:8A
Device name: 0000:04:00.2
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:38:11             dut.10.240.176.151: show port stats 2
17/10/2019 15:38:11             dut.10.240.176.151: show port stats 2

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 99         TX-errors: 0          TX-bytes:  5940

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:11             dut.10.240.176.151: show port stats 6
17/10/2019 15:38:11             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 600        RX-missed: 0          RX-bytes:  36000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 300        TX-errors: 0          TX-bytes:  18000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:13             TestBondingStacked: begin transmission ...
17/10/2019 15:38:13                         tester: ifconfig eno50336512 up
17/10/2019 15:38:13                         tester: 
17/10/2019 15:38:14             TestBondingStacked: complete transmission
17/10/2019 15:38:14             dut.10.240.176.151: show port stats 2
17/10/2019 15:38:15             dut.10.240.176.151: show port stats 2

  ######################## NIC statistics for port 2  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 99         TX-errors: 0          TX-bytes:  5940

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:15             dut.10.240.176.151: show port stats 6
17/10/2019 15:38:15             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 700        RX-missed: 0          RX-bytes:  42000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 400        TX-errors: 0          TX-bytes:  24000

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           29
  ############################################################################
17/10/2019 15:38:15             TestBondingStacked: tester port eno50336512  <----> dut port 2 is ok
17/10/2019 15:38:15             TestBondingStacked: send packet to active slave port <3>
17/10/2019 15:38:15             dut.10.240.176.151: show port info 3
17/10/2019 15:38:15             dut.10.240.176.151: show port info 3

********************* Infos for port 3  *********************
MAC address: 3C:FD:FE:B2:43:8B
Device name: 0000:04:00.3
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:38:17             dut.10.240.176.151: show port stats 3
17/10/2019 15:38:17             dut.10.240.176.151: show port stats 3

  ######################## NIC statistics for port 3  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:17             dut.10.240.176.151: show port stats 6
17/10/2019 15:38:17             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 700        RX-missed: 0          RX-bytes:  42000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 400        TX-errors: 0          TX-bytes:  24000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:19             TestBondingStacked: begin transmission ...
17/10/2019 15:38:19                         tester: ifconfig ens224f1 up
17/10/2019 15:38:19                         tester: 
17/10/2019 15:38:20             TestBondingStacked: complete transmission
17/10/2019 15:38:20             dut.10.240.176.151: show port stats 3
17/10/2019 15:38:20             dut.10.240.176.151: show port stats 3

  ######################## NIC statistics for port 3  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:20             dut.10.240.176.151: show port stats 6
17/10/2019 15:38:20             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 800        RX-missed: 0          RX-bytes:  48000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 400        TX-errors: 0          TX-bytes:  24000

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:20             TestBondingStacked: tester port ens224f1  <----> dut port 3 is ok
17/10/2019 15:38:21             dut.10.240.176.151: port stop all
17/10/2019 15:38:22             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from forwarding configuration.
Please remove port 1 from bonded device.
Please remove port 2 from forwarding configuration.
Please remove port 3 from bonded device.
Please remove port 4 from forwarding configuration.
Please remove port 5 from forwarding configuration.
Please remove port 6 from forwarding configuration.
Done
17/10/2019 15:38:22             dut.10.240.176.151: show port stats all
17/10/2019 15:38:22             dut.10.240.176.151: show port stats all

  ######################## NIC statistics for port 0  ########################
  RX-packets: 300        RX-missed: 0          RX-bytes:  18000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 301        TX-errors: 0          TX-bytes:  18060

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            5
  ############################################################################

  ######################## NIC statistics for port 1  ########################
  RX-packets: 300        RX-missed: 0          RX-bytes:  18000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 2  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 99         TX-errors: 0          TX-bytes:  5940

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 3  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 4  ########################
  RX-packets: 600        RX-missed: 0          RX-bytes:  36000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 301        TX-errors: 0          TX-bytes:  18060

  Throughput (since last show)
  Rx-pps:           11
  Tx-pps:            6
  ############################################################################

  ######################## NIC statistics for port 5  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 99         TX-errors: 0          TX-bytes:  5940

  Throughput (since last show)
  Rx-pps:            8
  Tx-pps:            1
  ############################################################################

  ######################## NIC statistics for port 6  ########################
  RX-packets: 800        RX-missed: 0          RX-bytes:  48000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 400        TX-errors: 0          TX-bytes:  24000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:38:22             dut.10.240.176.151: stop
17/10/2019 15:38:22             dut.10.240.176.151: stop
Telling cores to stop...
Waiting for lcores to finish...

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

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

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

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

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

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

Done.
17/10/2019 15:38:26             dut.10.240.176.151: quit
17/10/2019 15:38:27             dut.10.240.176.151: quit

Stopping port 0...
Stopping ports...
Please remove port 0 from bonded device.
Done

Stopping port 1...
Stopping ports...
Please remove port 1 from bonded device.
Done

Stopping port 2...
Stopping ports...
Please remove port 2 from bonded device.
Done

Stopping port 3...
Stopping ports...
Please remove port 3 from bonded device.
Done

Stopping port 4...
Stopping ports...
Please remove port 4 from bonded device.
Done

Stopping port 5...
Stopping ports...
Please remove port 5 from bonded device.
Done

Stopping port 6...
Stopping ports...

Port 0: link state change event

Port 1: link state change event

Port 2: link state change event
Done

Shutting down port 0...
Closing ports...
Please remove port 0 from bonded device.
Done

Shutting down port 1...
Closing ports...
Please remove port 1 from bonded device.
Done

Shutting down port 2...
Closing ports...
Please remove port 2 from bonded device.
Done

Shutting down port 3...
Closing ports...
Please remove port 3 from bonded device.
Done

Shutting down port 4...
Closing ports...
Please remove port 4 from bonded device.
Done

Shutting down port 5...
Closing ports...
Please remove port 5 from bonded device.
Done

Shutting down port 6...
Closing ports...
Device with port_id=4 already stopped
Device with port_id=5 already stopped
Done

Port 3: link state change event

Bye...
17/10/2019 15:38:37             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:38:37             dut.10.240.176.151: 
17/10/2019 15:38:37             TestBondingStacked: close testpmd successful
17/10/2019 15:38:37             TestBondingStacked: Test Case test_mode_backup_rx Result PASSED:
17/10/2019 15:38:37             TestBondingStacked: Test Case test_mode_xor_rx Begin
17/10/2019 15:38:37             dut.10.240.176.151: 
17/10/2019 15:38:37                         tester: 
17/10/2019 15:38:37             TestBondingStacked: begin checking bonding xor(stacked) mode transmission
17/10/2019 15:38:37             dut.10.240.176.151: ./x86_64-native-linuxapp-clang/app/testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -w 0000:04:00.0 -w 0000:04:00.1 -w 0000:04:00.2 -w 0000:04:00.3  --file-prefix=dpdk_27774_20191017151856   -- -i 
17/10/2019 15:38:40             dut.10.240.176.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_27774_20191017151856/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: PCI device 0000:04:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=411456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
Port 0: 3C:FD:FE:B2:43:88
Configuring Port 1 (socket 0)
Port 1: 3C:FD:FE:B2:43:89
Configuring Port 2 (socket 0)
Port 2: 3C:FD:FE:B2:43:8A
Configuring Port 3 (socket 0)
Port 3: 3C:FD:FE:B2:43:8B
Checking link statuses...
Done
17/10/2019 15:39:00             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:39:00             dut.10.240.176.151: 32858
17/10/2019 15:39:00             TestBondingStacked: testpmd boot up successful
17/10/2019 15:39:00             dut.10.240.176.151: port stop all
17/10/2019 15:39:00             dut.10.240.176.151: port stop all
Stopping ports...

Port 0: link state change event

Port 1: link state change event

Port 2: link state change event
Checking link statuses...

Port 3: link state change event
Done
17/10/2019 15:39:03             dut.10.240.176.151: create bonded device 2 0
17/10/2019 15:39:03             dut.10.240.176.151: create bonded device 2 0
Created new bonded device net_bonding_testpmd_0 on (port 4).
17/10/2019 15:39:05             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:39:06             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:39:08             dut.10.240.176.151: show bonding config 4
17/10/2019 15:39:08             dut.10.240.176.151: show bonding config 4
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (1): [0]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:39:10             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:39:10             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:39:12             dut.10.240.176.151: show bonding config 4
17/10/2019 15:39:12             dut.10.240.176.151: show bonding config 4
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [0 1]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:39:14             dut.10.240.176.151: create bonded device 2 0
17/10/2019 15:39:14             dut.10.240.176.151: create bonded device 2 0
Created new bonded device net_bonding_testpmd_1 on (port 5).
17/10/2019 15:39:16             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:39:16             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:39:18             dut.10.240.176.151: show bonding config 5
17/10/2019 15:39:18             dut.10.240.176.151: show bonding config 5
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (1): [2]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:39:20             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:39:20             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:39:22             dut.10.240.176.151: show bonding config 5
17/10/2019 15:39:22             dut.10.240.176.151: show bonding config 5
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [2 3]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:39:24             dut.10.240.176.151: create bonded device 2 0
17/10/2019 15:39:25             dut.10.240.176.151: create bonded device 2 0
Created new bonded device net_bonding_testpmd_2 on (port 6).
17/10/2019 15:39:27             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:39:27             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:39:29             dut.10.240.176.151: show bonding config 6
17/10/2019 15:39:29             dut.10.240.176.151: show bonding config 6
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (1): [4]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:39:31             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:39:31             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:39:33             dut.10.240.176.151: show bonding config 6
17/10/2019 15:39:33             dut.10.240.176.151: show bonding config 6
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:39:35             dut.10.240.176.151: port stop all
17/10/2019 15:39:35             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from bonded device.
Please remove port 1 from bonded device.
Please remove port 2 from bonded device.
Please remove port 3 from bonded device.
Please remove port 4 from bonded device.
Please remove port 5 from bonded device.
Done
17/10/2019 15:39:35             dut.10.240.176.151: set portlist 0,2,4,5,6
17/10/2019 15:39:35             dut.10.240.176.151: set portlist 0,2,4,5,6
previous number of forwarding ports 4 - changed to number of configured ports 5

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

17/10/2019 15:39:35             dut.10.240.176.151: port start 6
17/10/2019 15:39:35             dut.10.240.176.151: port
17/10/2019 15:39:42             dut.10.240.176.151:  
17/10/2019 15:39:43             dut.10.240.176.151:  
17/10/2019 15:39:43             dut.10.240.176.151: start
17/10/2019 15:39:43             dut.10.240.176.151: start
io packet forwarding - ports=5 - cores=1 - streams=5 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 5 streams:
  RX P=0/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
  RX P=2/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=4/Q=0 (socket 0) -> TX P=5/Q=0 (socket 0) peer=02:00:00:00:00:05
  RX P=5/Q=0 (socket 0) -> TX P=4/Q=0 (socket 0) peer=02:00:00:00:00:04
  RX P=6/Q=0 (socket 0) -> TX P=6/Q=0 (socket 0) peer=02:00:00:00:00:06

  io packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=5
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 2: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 3: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 4: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=0
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=0
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=0
  port 5: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=0
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=0
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=0
  port 6: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=0
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=0
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=0
17/10/2019 15:39:50             TestBondingStacked: check first bonded device
17/10/2019 15:39:50             TestBondingStacked: send packet to active slave port <0>
17/10/2019 15:39:50             dut.10.240.176.151: show port info 0
17/10/2019 15:39:50             dut.10.240.176.151: show port info 0

********************* Infos for port 0  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.0
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:39:52             dut.10.240.176.151: show port stats 0
17/10/2019 15:39:52             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:39:52             dut.10.240.176.151: show port stats 4
17/10/2019 15:39:52             dut.10.240.176.151: show port stats 4

  ######################## NIC statistics for port 4  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:39:54             TestBondingStacked: begin transmission ...
17/10/2019 15:39:54                         tester: ifconfig eno16777984 up
17/10/2019 15:39:54                         tester: 
17/10/2019 15:39:55             TestBondingStacked: complete transmission
17/10/2019 15:39:55             dut.10.240.176.151: show port stats 0
17/10/2019 15:39:55             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:39:55             dut.10.240.176.151: show port stats 4
17/10/2019 15:39:55             dut.10.240.176.151: show port stats 4

  ######################## NIC statistics for port 4  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:39:55             TestBondingStacked: tester port eno16777984  <----> dut port 0 is ok
17/10/2019 15:39:55             TestBondingStacked: send packet to active slave port <1>
17/10/2019 15:39:55             dut.10.240.176.151: show port info 1
17/10/2019 15:39:56             dut.10.240.176.151: show port info 1

********************* Infos for port 1  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.1
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:39:58             dut.10.240.176.151: show port stats 1
17/10/2019 15:39:58             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:39:58             dut.10.240.176.151: show port stats 4
17/10/2019 15:39:58             dut.10.240.176.151: show port stats 4

  ######################## NIC statistics for port 4  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:00             TestBondingStacked: begin transmission ...
17/10/2019 15:40:00                         tester: ifconfig ens160f1 up
17/10/2019 15:40:00                         tester: 
17/10/2019 15:40:01             TestBondingStacked: complete transmission
17/10/2019 15:40:01             dut.10.240.176.151: show port stats 1
17/10/2019 15:40:01             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:01             dut.10.240.176.151: show port stats 4
17/10/2019 15:40:01             dut.10.240.176.151: show port stats 4

  ######################## NIC statistics for port 4  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:01             TestBondingStacked: tester port ens160f1  <----> dut port 1 is ok
17/10/2019 15:40:01             TestBondingStacked: check second bonded device
17/10/2019 15:40:01             TestBondingStacked: send packet to active slave port <0>
17/10/2019 15:40:01             dut.10.240.176.151: show port info 0
17/10/2019 15:40:01             dut.10.240.176.151: show port info 0

********************* Infos for port 0  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.0
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:40:03             dut.10.240.176.151: show port stats 0
17/10/2019 15:40:03             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:03             dut.10.240.176.151: show port stats 5
17/10/2019 15:40:04             dut.10.240.176.151: show port stats 5

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:06             TestBondingStacked: begin transmission ...
17/10/2019 15:40:06                         tester: ifconfig eno16777984 up
17/10/2019 15:40:06                         tester: 
17/10/2019 15:40:07             TestBondingStacked: complete transmission
17/10/2019 15:40:07             dut.10.240.176.151: show port stats 0
17/10/2019 15:40:07             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:07             dut.10.240.176.151: show port stats 5
17/10/2019 15:40:07             dut.10.240.176.151: show port stats 5

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 300        TX-errors: 0          TX-bytes:  18000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:           29
  ############################################################################
17/10/2019 15:40:07             TestBondingStacked: tester port eno16777984  <----> dut port 0 is ok
17/10/2019 15:40:07             TestBondingStacked: send packet to active slave port <1>
17/10/2019 15:40:07             dut.10.240.176.151: show port info 1
17/10/2019 15:40:07             dut.10.240.176.151: show port info 1

********************* Infos for port 1  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.1
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:40:09             dut.10.240.176.151: show port stats 1
17/10/2019 15:40:09             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:09             dut.10.240.176.151: show port stats 5
17/10/2019 15:40:09             dut.10.240.176.151: show port stats 5

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 300        TX-errors: 0          TX-bytes:  18000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:11             TestBondingStacked: begin transmission ...
17/10/2019 15:40:11                         tester: ifconfig ens160f1 up
17/10/2019 15:40:11                         tester: 
17/10/2019 15:40:13             TestBondingStacked: complete transmission
17/10/2019 15:40:13             dut.10.240.176.151: show port stats 1
17/10/2019 15:40:13             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:           28
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:13             dut.10.240.176.151: show port stats 5
17/10/2019 15:40:13             dut.10.240.176.151: show port stats 5

  ######################## NIC statistics for port 5  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 400        TX-errors: 0          TX-bytes:  24000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:           28
  ############################################################################
17/10/2019 15:40:13             TestBondingStacked: tester port ens160f1  <----> dut port 1 is ok
17/10/2019 15:40:13             TestBondingStacked: check master bonded device
17/10/2019 15:40:13             TestBondingStacked: send packet to active slave port <0>
17/10/2019 15:40:13             dut.10.240.176.151: show port info 0
17/10/2019 15:40:13             dut.10.240.176.151: show port info 0

********************* Infos for port 0  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.0
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:40:15             dut.10.240.176.151: show port stats 0
17/10/2019 15:40:15             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:15             dut.10.240.176.151: show port stats 6
17/10/2019 15:40:15             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 400        RX-missed: 0          RX-bytes:  24000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 400        TX-errors: 0          TX-bytes:  24000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:17             TestBondingStacked: begin transmission ...
17/10/2019 15:40:17                         tester: ifconfig eno16777984 up
17/10/2019 15:40:17                         tester: 
17/10/2019 15:40:18             TestBondingStacked: complete transmission
17/10/2019 15:40:18             dut.10.240.176.151: show port stats 0
17/10/2019 15:40:18             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 300        RX-missed: 0          RX-bytes:  18000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:18             dut.10.240.176.151: show port stats 6
17/10/2019 15:40:19             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 500        RX-missed: 0          RX-bytes:  30000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 500        TX-errors: 0          TX-bytes:  30000

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           29
  ############################################################################
17/10/2019 15:40:19             TestBondingStacked: tester port eno16777984  <----> dut port 0 is ok
17/10/2019 15:40:19             TestBondingStacked: send packet to active slave port <1>
17/10/2019 15:40:19             dut.10.240.176.151: show port info 1
17/10/2019 15:40:19             dut.10.240.176.151: show port info 1

********************* Infos for port 1  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.1
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:40:21             dut.10.240.176.151: show port stats 1
17/10/2019 15:40:21             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:21             dut.10.240.176.151: show port stats 6
17/10/2019 15:40:21             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 500        RX-missed: 0          RX-bytes:  30000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 500        TX-errors: 0          TX-bytes:  30000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:23             TestBondingStacked: begin transmission ...
17/10/2019 15:40:23                         tester: ifconfig ens160f1 up
17/10/2019 15:40:23                         tester: 
17/10/2019 15:40:24             TestBondingStacked: complete transmission
17/10/2019 15:40:24             dut.10.240.176.151: show port stats 1
17/10/2019 15:40:24             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 300        RX-missed: 0          RX-bytes:  18000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:24             dut.10.240.176.151: show port stats 6
17/10/2019 15:40:24             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 600        RX-missed: 0          RX-bytes:  36000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 600        TX-errors: 0          TX-bytes:  36000

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           29
  ############################################################################
17/10/2019 15:40:24             TestBondingStacked: tester port ens160f1  <----> dut port 1 is ok
17/10/2019 15:40:24             TestBondingStacked: send packet to active slave port <2>
17/10/2019 15:40:24             dut.10.240.176.151: show port info 2
17/10/2019 15:40:24             dut.10.240.176.151: show port info 2

********************* Infos for port 2  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.2
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:40:26             dut.10.240.176.151: show port stats 2
17/10/2019 15:40:27             dut.10.240.176.151: show port stats 2

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 46         TX-errors: 0          TX-bytes:  2760

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:27             dut.10.240.176.151: show port stats 6
17/10/2019 15:40:27             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 600        RX-missed: 0          RX-bytes:  36000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 600        TX-errors: 0          TX-bytes:  36000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:29             TestBondingStacked: begin transmission ...
17/10/2019 15:40:29                         tester: ifconfig eno50336512 up
17/10/2019 15:40:29                         tester: 
17/10/2019 15:40:30             TestBondingStacked: complete transmission
17/10/2019 15:40:30             dut.10.240.176.151: show port stats 2
17/10/2019 15:40:30             dut.10.240.176.151: show port stats 2

  ######################## NIC statistics for port 2  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 46         TX-errors: 0          TX-bytes:  2760

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:30             dut.10.240.176.151: show port stats 6
17/10/2019 15:40:30             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 700        RX-missed: 0          RX-bytes:  42000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 700        TX-errors: 0          TX-bytes:  42000

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           29
  ############################################################################
17/10/2019 15:40:30             TestBondingStacked: tester port eno50336512  <----> dut port 2 is ok
17/10/2019 15:40:30             TestBondingStacked: send packet to active slave port <3>
17/10/2019 15:40:30             dut.10.240.176.151: show port info 3
17/10/2019 15:40:30             dut.10.240.176.151: show port info 3

********************* Infos for port 3  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.3
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:40:32             dut.10.240.176.151: show port stats 3
17/10/2019 15:40:32             dut.10.240.176.151: show port stats 3

  ######################## NIC statistics for port 3  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 593        TX-errors: 0          TX-bytes:  35580

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:32             dut.10.240.176.151: show port stats 6
17/10/2019 15:40:32             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 700        RX-missed: 0          RX-bytes:  42000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 700        TX-errors: 0          TX-bytes:  42000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:34             TestBondingStacked: begin transmission ...
17/10/2019 15:40:34                         tester: ifconfig ens224f1 up
17/10/2019 15:40:35                         tester: 
17/10/2019 15:40:36             TestBondingStacked: complete transmission
17/10/2019 15:40:36             dut.10.240.176.151: show port stats 3
17/10/2019 15:40:36             dut.10.240.176.151: show port stats 3

  ######################## NIC statistics for port 3  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 619        TX-errors: 0          TX-bytes:  37140

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            7
  ############################################################################
17/10/2019 15:40:36             dut.10.240.176.151: show port stats 6
17/10/2019 15:40:36             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 800        RX-missed: 0          RX-bytes:  48000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 800        TX-errors: 0          TX-bytes:  48000

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           29
  ############################################################################
17/10/2019 15:40:36             TestBondingStacked: tester port ens224f1  <----> dut port 3 is ok
17/10/2019 15:40:37             dut.10.240.176.151: port stop all
17/10/2019 15:40:37             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from forwarding configuration.
Please remove port 1 from bonded device.
Please remove port 2 from forwarding configuration.
Please remove port 3 from bonded device.
Please remove port 4 from forwarding configuration.
Please remove port 5 from forwarding configuration.
Please remove port 6 from forwarding configuration.
Done
17/10/2019 15:40:37             dut.10.240.176.151: show port stats all
17/10/2019 15:40:37             dut.10.240.176.151: show port stats all

  ######################## NIC statistics for port 0  ########################
  RX-packets: 300        RX-missed: 0          RX-bytes:  18000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 21         TX-errors: 0          TX-bytes:  1260

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            1
  ############################################################################

  ######################## NIC statistics for port 1  ########################
  RX-packets: 300        RX-missed: 0          RX-bytes:  18000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 114        TX-errors: 0          TX-bytes:  6840

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            8
  ############################################################################

  ######################## NIC statistics for port 2  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 46         TX-errors: 0          TX-bytes:  2760

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 3  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 619        TX-errors: 0          TX-bytes:  37140

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 4  ########################
  RX-packets: 600        RX-missed: 0          RX-bytes:  36000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 135        TX-errors: 0          TX-bytes:  8100

  Throughput (since last show)
  Rx-pps:           11
  Tx-pps:            3
  ############################################################################

  ######################## NIC statistics for port 5  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 665        TX-errors: 0          TX-bytes:  39900

  Throughput (since last show)
  Rx-pps:            8
  Tx-pps:           10
  ############################################################################

  ######################## NIC statistics for port 6  ########################
  RX-packets: 800        RX-missed: 0          RX-bytes:  48000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 800        TX-errors: 0          TX-bytes:  48000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:40:37             dut.10.240.176.151: stop
17/10/2019 15:40:37             dut.10.240.176.151: stop
Telling cores to stop...
Waiting for lcores to finish...

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

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

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

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

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

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

Done.
17/10/2019 15:40:41             dut.10.240.176.151: quit
17/10/2019 15:40:42             dut.10.240.176.151: quit

Stopping port 0...
Stopping ports...
Please remove port 0 from bonded device.
Done

Stopping port 1...
Stopping ports...
Please remove port 1 from bonded device.
Done

Stopping port 2...
Stopping ports...
Please remove port 2 from bonded device.
Done

Stopping port 3...
Stopping ports...
Please remove port 3 from bonded device.
Done

Stopping port 4...
Stopping ports...
Please remove port 4 from bonded device.
Done

Stopping port 5...
Stopping ports...
Please remove port 5 from bonded device.
Done

Stopping port 6...
Stopping ports...

Port 0: link state change event

Port 1: link state change event

Port 2: link state change event
Done

Shutting down port 0...
Closing ports...
Please remove port 0 from bonded device.
Done

Shutting down port 1...
Closing ports...
Please remove port 1 from bonded device.
Done

Shutting down port 2...
Closing ports...
Please remove port 2 from bonded device.
Done

Shutting down port 3...
Closing ports...
Please remove port 3 from bonded device.
Done

Shutting down port 4...
Closing ports...
Please remove port 4 from bonded device.
Done

Shutting down port 5...
Closing ports...
Please remove port 5 from bonded device.
Done

Shutting down port 6...
Closing ports...
Device with port_id=4 already stopped
Device with port_id=5 already stopped
Done

Port 3: link state change event

Bye...
17/10/2019 15:40:52             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:40:52             dut.10.240.176.151: 
17/10/2019 15:40:52             TestBondingStacked: close testpmd successful
17/10/2019 15:40:52             TestBondingStacked: Test Case test_mode_xor_rx Result PASSED:
17/10/2019 15:40:52             TestBondingStacked: Test Case test_mode_xor_rx_one_slave_down Begin
17/10/2019 15:40:52             dut.10.240.176.151: 
17/10/2019 15:40:53                         tester: 
17/10/2019 15:40:53             TestBondingStacked: begin checking bonding xor(stacked) mode transmission with one slave down
17/10/2019 15:40:53             dut.10.240.176.151: ./x86_64-native-linuxapp-clang/app/testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -w 0000:04:00.0 -w 0000:04:00.1 -w 0000:04:00.2 -w 0000:04:00.3  --file-prefix=dpdk_27774_20191017151856   -- -i 
17/10/2019 15:40:55             dut.10.240.176.151: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_27774_20191017151856/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: PCI device 0000:04:00.0 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.1 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.2 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: PCI device 0000:04:00.3 on NUMA socket 0
EAL:   probe driver: 8086:1572 net_i40e
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=411456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 0)
Port 0: 3C:FD:FE:B2:43:88
Configuring Port 1 (socket 0)
Port 1: 3C:FD:FE:B2:43:89
Configuring Port 2 (socket 0)
Port 2: 3C:FD:FE:B2:43:8A
Configuring Port 3 (socket 0)
Port 3: 3C:FD:FE:B2:43:8B
Checking link statuses...
Done
17/10/2019 15:41:15             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:41:15             dut.10.240.176.151: 32920
17/10/2019 15:41:15             TestBondingStacked: testpmd boot up successful
17/10/2019 15:41:15             dut.10.240.176.151: port stop all
17/10/2019 15:41:16             dut.10.240.176.151: port stop all
Stopping ports...

Port 0: link state change event

Port 1: link state change event

Port 2: link state change event
Checking link statuses...

Port 3: link state change event
Done
17/10/2019 15:41:19             dut.10.240.176.151: create bonded device 2 0
17/10/2019 15:41:19             dut.10.240.176.151: create bonded device 2 0
Created new bonded device net_bonding_testpmd_0 on (port 4).
17/10/2019 15:41:21             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:41:21             dut.10.240.176.151: add bonding slave 0 4
17/10/2019 15:41:23             dut.10.240.176.151: show bonding config 4
17/10/2019 15:41:23             dut.10.240.176.151: show bonding config 4
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (1): [0]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:41:25             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:41:25             dut.10.240.176.151: add bonding slave 1 4
17/10/2019 15:41:27             dut.10.240.176.151: show bonding config 4
17/10/2019 15:41:27             dut.10.240.176.151: show bonding config 4
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [0 1]
	Active Slaves: []
	Primary: [0]
17/10/2019 15:41:29             dut.10.240.176.151: create bonded device 2 0
17/10/2019 15:41:29             dut.10.240.176.151: create bonded device 2 0
Created new bonded device net_bonding_testpmd_1 on (port 5).
17/10/2019 15:41:31             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:41:32             dut.10.240.176.151: add bonding slave 2 5
17/10/2019 15:41:34             dut.10.240.176.151: show bonding config 5
17/10/2019 15:41:34             dut.10.240.176.151: show bonding config 5
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (1): [2]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:41:36             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:41:36             dut.10.240.176.151: add bonding slave 3 5
17/10/2019 15:41:38             dut.10.240.176.151: show bonding config 5
17/10/2019 15:41:38             dut.10.240.176.151: show bonding config 5
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [2 3]
	Active Slaves: []
	Primary: [2]
17/10/2019 15:41:40             dut.10.240.176.151: create bonded device 2 0
17/10/2019 15:41:40             dut.10.240.176.151: create bonded device 2 0
Created new bonded device net_bonding_testpmd_2 on (port 6).
17/10/2019 15:41:42             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:41:42             dut.10.240.176.151: add bonding slave 4 6
17/10/2019 15:41:44             dut.10.240.176.151: show bonding config 6
17/10/2019 15:41:44             dut.10.240.176.151: show bonding config 6
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (1): [4]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:41:46             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:41:46             dut.10.240.176.151: add bonding slave 5 6
17/10/2019 15:41:48             dut.10.240.176.151: show bonding config 6
17/10/2019 15:41:48             dut.10.240.176.151: show bonding config 6
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [4 5]
	Active Slaves: []
	Primary: [4]
17/10/2019 15:41:50             dut.10.240.176.151: port stop all
17/10/2019 15:41:51             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from bonded device.
Please remove port 1 from bonded device.
Please remove port 2 from bonded device.
Please remove port 3 from bonded device.
Please remove port 4 from bonded device.
Please remove port 5 from bonded device.
Done
17/10/2019 15:41:51             dut.10.240.176.151: set portlist 0,2,4,5,6
17/10/2019 15:41:51             dut.10.240.176.151: set portlist 0,2,4,5,6
previous number of forwarding ports 4 - changed to number of configured ports 5

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

17/10/2019 15:41:51             dut.10.240.176.151: port start 6
17/10/2019 15:41:51             dut.10.240.176.151: port
17/10/2019 15:41:58             dut.10.240.176.151:  
17/10/2019 15:41:58             dut.10.240.176.151:  
17/10/2019 15:41:58             dut.10.240.176.151: start
17/10/2019 15:41:58             dut.10.240.176.151: start
io packet forwarding - ports=5 - cores=1 - streams=5 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 5 streams:
  RX P=0/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:02
  RX P=2/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=4/Q=0 (socket 0) -> TX P=5/Q=0 (socket 0) peer=02:00:00:00:00:05
  RX P=5/Q=0 (socket 0) -> TX P=4/Q=0 (socket 0) peer=02:00:00:00:00:04
  RX P=6/Q=0 (socket 0) -> TX P=6/Q=0 (socket 0) peer=02:00:00:00:00:06

  io packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=5
  port 0: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 1: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 2: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 3: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x10000
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=8 hthresh=8  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x10000 - TX RS bit threshold=32
  port 4: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=0
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=0
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=0
  port 5: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=0
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=0
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=0
  port 6: RX queue number: 1 Tx queue number: 1
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=0 - RX free threshold=0
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=0 - TX free threshold=0
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=0
17/10/2019 15:42:05             dut.10.240.176.151: set link-down port 0
17/10/2019 15:42:05             dut.10.240.176.151: set link-down port 0
17/10/2019 15:42:12             dut.10.240.176.151: show port info 0
17/10/2019 15:42:12             dut.10.240.176.151: show port info 0

********************* Infos for port 0  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.0
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:42:14             TestBondingStacked: port 0 is [down]
17/10/2019 15:42:14             dut.10.240.176.151: show bonding config 4
17/10/2019 15:42:14             dut.10.240.176.151: show bonding config 4
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [0 1]
	Active Slaves (1): [1]
	Primary: [1]
17/10/2019 15:42:16             dut.10.240.176.151: show bonding config 4
17/10/2019 15:42:17             dut.10.240.176.151: show bonding config 4
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [0 1]
	Active Slaves (1): [1]
	Primary: [1]
17/10/2019 15:42:19             dut.10.240.176.151: set link-down port 2
17/10/2019 15:42:19             dut.10.240.176.151: set link-down port 2
17/10/2019 15:42:26             dut.10.240.176.151: show port info 2
17/10/2019 15:42:26             dut.10.240.176.151: show port info 2

********************* Infos for port 2  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.2
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:42:28             TestBondingStacked: port 2 is [down]
17/10/2019 15:42:28             dut.10.240.176.151: show bonding config 5
17/10/2019 15:42:28             dut.10.240.176.151: show bonding config 5
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [2 3]
	Active Slaves (1): [3]
	Primary: [3]
17/10/2019 15:42:30             dut.10.240.176.151: show bonding config 5
17/10/2019 15:42:30             dut.10.240.176.151: show bonding config 5
	Bonding mode: 2
	Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER2
	Slaves (2): [2 3]
	Active Slaves (1): [3]
	Primary: [3]
17/10/2019 15:42:32             TestBondingStacked: send packet to active slave port <1>
17/10/2019 15:42:32             dut.10.240.176.151: show port info 1
17/10/2019 15:42:32             dut.10.240.176.151: show port info 1

********************* Infos for port 1  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.1
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:42:34             dut.10.240.176.151: show port stats 1
17/10/2019 15:42:34             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:34             dut.10.240.176.151: show port stats 6
17/10/2019 15:42:34             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:36             TestBondingStacked: begin transmission ...
17/10/2019 15:42:36                         tester: ifconfig ens160f1 up
17/10/2019 15:42:36                         tester: 
17/10/2019 15:42:38             TestBondingStacked: complete transmission
17/10/2019 15:42:38             dut.10.240.176.151: show port stats 1
17/10/2019 15:42:38             dut.10.240.176.151: show port stats 1

  ######################## NIC statistics for port 1  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:38             dut.10.240.176.151: show port stats 6
17/10/2019 15:42:38             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 100        TX-errors: 0          TX-bytes:  6000

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           29
  ############################################################################
17/10/2019 15:42:38             TestBondingStacked: tester port ens160f1  <----> dut port 1 is ok
17/10/2019 15:42:38             TestBondingStacked: send packet to active slave port <3>
17/10/2019 15:42:38             dut.10.240.176.151: show port info 3
17/10/2019 15:42:38             dut.10.240.176.151: show port info 3

********************* Infos for port 3  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.3
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:42:40             dut.10.240.176.151: show port stats 3
17/10/2019 15:42:40             dut.10.240.176.151: show port stats 3

  ######################## NIC statistics for port 3  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 100        TX-errors: 0          TX-bytes:  6000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:40             dut.10.240.176.151: show port stats 6
17/10/2019 15:42:40             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 100        TX-errors: 0          TX-bytes:  6000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:42             TestBondingStacked: begin transmission ...
17/10/2019 15:42:42                         tester: ifconfig ens224f1 up
17/10/2019 15:42:42                         tester: 
17/10/2019 15:42:43             TestBondingStacked: complete transmission
17/10/2019 15:42:43             dut.10.240.176.151: show port stats 3
17/10/2019 15:42:43             dut.10.240.176.151: show port stats 3

  ######################## NIC statistics for port 3  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 128        TX-errors: 0          TX-bytes:  7680

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:            8
  ############################################################################
17/10/2019 15:42:43             dut.10.240.176.151: show port stats 6
17/10/2019 15:42:44             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:           29
  Tx-pps:           29
  ############################################################################
17/10/2019 15:42:44             TestBondingStacked: tester port ens224f1  <----> dut port 3 is ok
17/10/2019 15:42:44             TestBondingStacked: send packet to inactive slave port <0>
17/10/2019 15:42:44             dut.10.240.176.151: show port info 0
17/10/2019 15:42:44             dut.10.240.176.151: show port info 0

********************* Infos for port 0  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.0
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:42:46             dut.10.240.176.151: show port stats 0
17/10/2019 15:42:46             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:46             dut.10.240.176.151: show port stats 6
17/10/2019 15:42:46             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:48             TestBondingStacked: begin transmission ...
17/10/2019 15:42:48                         tester: ifconfig eno16777984 up
17/10/2019 15:42:48                         tester: 
17/10/2019 15:42:49             TestBondingStacked: complete transmission
17/10/2019 15:42:49             dut.10.240.176.151: show port stats 0
17/10/2019 15:42:49             dut.10.240.176.151: show port stats 0

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:49             dut.10.240.176.151: show port stats 6
17/10/2019 15:42:49             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:49             TestBondingStacked: tester port eno16777984  <-|  |-> dut port 0 is blocked
17/10/2019 15:42:49             TestBondingStacked: send packet to inactive slave port <2>
17/10/2019 15:42:49             dut.10.240.176.151: show port info 2
17/10/2019 15:42:49             dut.10.240.176.151: show port info 2

********************* Infos for port 2  *********************
MAC address: 3C:FD:FE:B2:43:88
Device name: 0000:04:00.2
Driver name: net_i40e
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: down
Link speed: 0 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off 
  filter off 
  qinq(extend) off 
Hash key size in bytes: 52
Redirection table size: 512
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
  ipv6-frag
  ipv6-tcp
  ipv6-udp
  ipv6-sctp
  ipv6-other
  l2_payload
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum number of VMDq pools: 32
Current number of RX queues: 1
Max possible RX queues: 192
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 1
Max possible TX queues: 192
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 255
Max segment number per MTU/TSO: 8
17/10/2019 15:42:51             dut.10.240.176.151: show port stats 2
17/10/2019 15:42:52             dut.10.240.176.151: show port stats 2

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:52             dut.10.240.176.151: show port stats 6
17/10/2019 15:42:52             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:54             TestBondingStacked: begin transmission ...
17/10/2019 15:42:54                         tester: ifconfig eno50336512 up
17/10/2019 15:42:54                         tester: 
17/10/2019 15:42:55             TestBondingStacked: complete transmission
17/10/2019 15:42:55             dut.10.240.176.151: show port stats 2
17/10/2019 15:42:55             dut.10.240.176.151: show port stats 2

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:55             dut.10.240.176.151: show port stats 6
17/10/2019 15:42:55             dut.10.240.176.151: show port stats 6

  ######################## NIC statistics for port 6  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:55             TestBondingStacked: tester port eno50336512  <-|  |-> dut port 2 is blocked
17/10/2019 15:42:56             dut.10.240.176.151: port stop all
17/10/2019 15:42:56             dut.10.240.176.151: port stop all
Stopping ports...
Please remove port 0 from forwarding configuration.
Please remove port 1 from bonded device.
Please remove port 2 from forwarding configuration.
Please remove port 3 from bonded device.
Please remove port 4 from forwarding configuration.
Please remove port 5 from forwarding configuration.
Please remove port 6 from forwarding configuration.
Done
17/10/2019 15:42:56             dut.10.240.176.151: show port stats all
17/10/2019 15:42:56             dut.10.240.176.151: show port stats all

  ######################## NIC statistics for port 0  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 1  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 72         TX-errors: 0          TX-bytes:  4320

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            3
  ############################################################################

  ######################## NIC statistics for port 2  ########################
  RX-packets: 0          RX-missed: 0          RX-bytes:  0
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 0          TX-errors: 0          TX-bytes:  0

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 3  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 128        TX-errors: 0          TX-bytes:  7680

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 4  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 72         TX-errors: 0          TX-bytes:  4320

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 5  ########################
  RX-packets: 100        RX-missed: 0          RX-bytes:  6000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 128        TX-errors: 0          TX-bytes:  7680

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################

  ######################## NIC statistics for port 6  ########################
  RX-packets: 200        RX-missed: 0          RX-bytes:  12000
  RX-errors: 0
  RX-nombuf:  0         
  TX-packets: 200        TX-errors: 0          TX-bytes:  12000

  Throughput (since last show)
  Rx-pps:            0
  Tx-pps:            0
  ############################################################################
17/10/2019 15:42:56             dut.10.240.176.151: stop
17/10/2019 15:42:56             dut.10.240.176.151: stop
Telling cores to stop...
Waiting for lcores to finish...

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

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

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

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

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

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

Done.
17/10/2019 15:43:00             dut.10.240.176.151: quit
17/10/2019 15:43:01             dut.10.240.176.151: quit

Stopping port 0...
Stopping ports...
Please remove port 0 from bonded device.
Done

Stopping port 1...
Stopping ports...
Please remove port 1 from bonded device.
Done

Stopping port 2...
Stopping ports...
Please remove port 2 from bonded device.
Done

Stopping port 3...
Stopping ports...
Please remove port 3 from bonded device.
Done

Stopping port 4...
Stopping ports...
Please remove port 4 from bonded device.
Done

Stopping port 5...
Stopping ports...
Please remove port 5 from bonded device.
Done

Stopping port 6...
Stopping ports...

Port 1: link state change event
Done

Shutting down port 0...
Closing ports...
Please remove port 0 from bonded device.
Done

Shutting down port 1...
Closing ports...
Please remove port 1 from bonded device.
Done

Shutting down port 2...
Closing ports...
Please remove port 2 from bonded device.
Done

Shutting down port 3...
Closing ports...
Please remove port 3 from bonded device.
Done

Shutting down port 4...
Closing ports...
Please remove port 4 from bonded device.
Done

Shutting down port 5...
Closing ports...
Please remove port 5 from bonded device.
Done

Shutting down port 6...
Closing ports...
Device with port_id=4 already stopped
Device with port_id=5 already stopped
Done

Port 3: link state change event

Bye...
17/10/2019 15:43:11             dut.10.240.176.151: ps aux | grep -i testpmd | grep -v grep | awk {'print $2'}
17/10/2019 15:43:12             dut.10.240.176.151: 
17/10/2019 15:43:12             TestBondingStacked: close testpmd successful
17/10/2019 15:43:12             TestBondingStacked: Test Case test_mode_xor_rx_one_slave_down Result PASSED:
17/10/2019 15:43:12             dut.10.240.176.151: kill_all: called by dut and prefix list has value.
17/10/2019 15:43:21                            dts: 
TEST SUITE ENDED: TestBondingStacked

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

* Re: [dts] [PATCH V2] tests/bonding: fix save pcapfile method and path
  2019-10-17  7:29 [dts] [PATCH V2] tests/bonding: fix save pcapfile method and path Xiao Qimai
  2019-10-17  8:08 ` Zhu, ShuaiX
@ 2019-10-22  9:11 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2019-10-22  9:11 UTC (permalink / raw)
  To: Xiao, QimaiX, dts; +Cc: Xiao, QimaiX

Applied,thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xiao Qimai
> Sent: Thursday, October 17, 2019 3:30 PM
> To: dts@dpdk.org
> Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
> Subject: [dts] [PATCH V2] tests/bonding: fix save pcapfile method and path
> 
> fix save pcapfile method to new api
> 
> Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
> ---
>  tests/bonding.py | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/tests/bonding.py b/tests/bonding.py index fb2a69e..6c136a3
> 100644
> --- a/tests/bonding.py
> +++ b/tests/bonding.py
> @@ -36,7 +36,7 @@ import struct
>  import socket
>  from socket import htonl
> 
> -from packet import Packet
> +from packet import Packet, TMP_PATH
>  from scapy.sendrecv import sendp
>  from scapy.utils import wrpcap
> 
> @@ -181,14 +181,14 @@ class PmdBonding(object):
>          # create packet
>          streams = []
>          # keep a copy of pcap for debug
> -        savePath = os.sep.join([self.target_source,
> +        savePath = os.sep.join([TMP_PATH,
>                                  "pkt_{0}.pcap".format(pkt_name)])
>          pkt_type = pkt_config.get('type')
>          pkt_layers = pkt_config.get('pkt_layers')
>          pkt = Packet(pkt_type=pkt_type.upper())
>          for layer in pkt_layers.keys():
>              pkt.config_layer(layer, pkt_layers[layer])
> -        pkt.pktgen.write_pcap(savePath)
> +        pkt.save_pcapfile(filename=savePath)
>          streams.append(pkt.pktgen.pkt)
> 
>          return streams
> @@ -228,14 +228,14 @@ class PmdBonding(object):
>          streams = []
>          for values in pkt_configs:
>              # keep a copy of pcap for debug
> -            savePath = os.sep.join([self.target_source,
> +            savePath = os.sep.join([TMP_PATH,
>                                      "pkt_{0}.pcap".format(stm_name)])
>              pkt_type = values.get('type')
>              pkt_layers = values.get('pkt_layers')
>              pkt = Packet(pkt_type=pkt_type.upper())
>              for layer in pkt_layers.keys():
>                  pkt.config_layer(layer, pkt_layers[layer])
> -            pkt.pktgen.write_pcap(savePath)
> +            pkt.save_pcapfile(filename=savePath)
>              streams.append(pkt.pktgen.pkt)
> 
>          return streams
> --
> 1.8.3.1


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

end of thread, other threads:[~2019-10-22  9:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-17  7:29 [dts] [PATCH V2] tests/bonding: fix save pcapfile method and path Xiao Qimai
2019-10-17  8:08 ` Zhu, ShuaiX
2019-10-22  9:11 ` 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).