Cisco开源的一个使用DPDK发包的高性能测试仪。
主要的工作原理概括如下:
兼具了python构建流的效率和dpdk发包的高性能。
优点:
缺点:
总结:文章来源地址:https://www.yii666.com/blog/334196.html
| ID | NUMA | PCI | MAC | Name | Driver | Linux IF | Active |
+====+======+=========+===================+=============+=========+==========+==========+
| 0 | -1 | 03:00.0 | 00:10:f3:66:1b:99 | Device 10fb | igb_uio | | |
+----+------+---------+-------------------+-------------+---------+----------+----------+
| 1 | -1 | 03:00.1 | 00:10:f3:66:1b:9a | Device 10fb | igb_uio | | |
+----+------+---------+-------------------+-------------+---------+----------+----------+
| 2 | -1 | 04:00.0 | 00:10:f3:66:1b:9b | Device 10fb | igb_uio | | |
+----+------+---------+-------------------+-------------+---------+----------+----------+
| 3 | -1 | 04:00.1 | 00:10:f3:66:1b:9c | Device 10fb | igb_uio | | |
+----+------+---------+-------------------+-------------+---------+----------+----------+
[root@localhost v2.81]# cat /etc/trex_cfg.yaml
### Config file generated by dpdk_setup_ports.py ###
- version: 2
port_limit: 4
rx_desc: 4096
tx_desc: 4096
interfaces: ['03:00.0', '03:00.1']
port_info:
- ip: 1.1.1.2
default_gw: 1.1.1.1
- ip: 2.2.2.2
default_gw: 2.2.2.1
无状态的发包,类似smartbit。
port可以设置成l2或者l3模式:
默认使用l3模式即可。
有状态的发包,类似于BPS测试仪。
将一条流的client和server数据包分开发送,DUT上能建立完整的会话,因此这个状态是模拟的有状态;
简述工作流:
yaml样例:
cat cap2/dns_test.yaml
- duration : 10.0
generator :
distribution : "seq"
clients_start : "16.0.0.1" 1
clients_end : "16.0.0.255"
servers_start : "48.0.0.1" 2
servers_end : "48.0.0.255"
clients_per_gb : 201
min_clients : 101
dual_port_mask : "1.0.0.0"
tcp_aging : 1
udp_aging : 1
cap_info :
- name: cap2/dns.pcap 3
cps : 1.0 4
ipg : 10000 5
rtt : 10000 6
w : 1
数据包样例:
另外还有一个ASTF模式(Advance STF),会使用socket来回放报文。 暂时没有研究。
[firewall@localhost v2.81]$ cat /etc/trex_cfg.yaml
### Config file generated by dpdk_setup_ports.py ###
- version: 2
port_limit: 4
rx_desc: 4096
tx_desc: 4096
interfaces: ['03:00.0', '03:00.1', '04:00.0', '04:00.1']
port_info:
- ip: 1.1.1.2
default_gw: 1.1.1.1
- ip: 2.2.2.2
default_gw: 2.2.2.1
- ip: 3.3.3.2
default_gw: 3.3.3.1
- ip: 4.4.4.2
default_gw: 4.4.4.1
platform:
master_thread_id: 0
latency_thread_id: 1
dual_if:
- socket: 0
threads: [2]
- socket: 0
threads: [3]
注意:
无状态方式发包,可以使用两种客户端: trex-stateless-gui (图形界面)和trex-console(交互式命令行)。无论使用哪一种,都需要先启动测试仪,开启服务: sudo ./t-rex-64 -i
如上图,我们使用Trex的一对port与DUT直连,模拟的流量见图示;
DUT上需要配置
interface xge4/1
ip address 1.1.1.1/24
!
interface xge4/2
ip address 2.2.2.1/24
!
ip route 16.0.0.0/8 1.1.1.2
ip route 48.0.0.0/8 2.2.2.2
注意stl工作模式下,设置port为service模式,port可以回复ARP请求以及IPv6的NS请求。
使用图形界面控制测试仪,构造并发送20条UDP流。
网址:yii666.com<
定义源IP为16.0.0.1, 目的IP为48.0.0.1;源端口为10000, 目的端口为20000
IP地址变化,校验和需要定义成自动计算:
点击下边的save按钮,保存;
本例使用命令行方式来发送流量,有必要先介绍一下trex-console。
官方文档: https://trex-tgn.cisco.com/trex/doc/trex_stateless.html
trex-console 是一个交互式的命令行客户端。使用命令行方式登录到测试仪,可以完成trex-stateless-gui的所有功能,并且提供更加灵活的数据包模板构建方法:
大概工作流如下:
scapy构建数据包模板(源码预置的python脚本放在stl目录下):
https://trex-tgn.cisco.com/trex/doc/trex_stateless.html#_traffic_profile_tutorials
文章地址https://www.yii666.com/blog/334196.html
建议新建一个文件夹,用来存放自己的流量模板: 例如mkdir /opt/trex/v2.81/yb_py_pkt
# cat yb_py_pkt/udp_vxlan_dir.py
# -*- coding: utf-8 -*-
from scapy.layers.vxlan import VXLAN
from trex_stl_lib.api import *
"""
vxlan 双向stream模板
"""
class STLS1(object):
def __init__(self):
pass
def create_stream(self):
return STLStream(
packet=STLPktBuilder(
pkt=Ether() / IP() / UDP() / VXLAN(vni=1008) / Ether() / IP() / UDP() / ('x' * 100)
),
mode=STLTXCont())
def get_streams(self, direction=0, **kwargs):
# create 1 stream
if direction == 0:
src_ip = "16.0.0.1"
dst_ip = "48.0.0.1"
sport = 3399
dport = 4798
else:
src_ip, dst_ip = dst_ip, src_ip
sport, dport = dport, sport
pkt = STLPktBuilder(
pkt = Ether() / IP(src=src_ip, dst=dst_ip) /
UDP(sport=sport, dport=dport) / VXLAN(vni=1008) /
Ether() / IP() / UDP() / ('x'*100)
)
return [STLStream(packet=pkt, mode=STLTXCont())]
def register():
return STLS1()
trex(service)>start -f yb_py_pkt/udp_vxlan_dir.py -m 10kbps -p 0 1 --force网址:yii666.com
trex(service)>capture record start --rx 3 --limit 200 1
Starting packet capturing up to 200 packets [SUCCESS]
*** Capturing ID is set to '4' *** 2
*** Please call 'capture record stop --id 4 -o ' when done ***
trex(service)>capture 3
Active Recorders
ID | Status | Packets | Bytes | TX Ports | RX Ports
------------------------------------------------------------------------------------------------------
4 | ACTIVE | [0/200] | 0 B | - | 3
trex(service)>start -f stl/imix.py -m 1kpps -p 0 --force 4
Removing all streams from port(s) [0]: [SUCCESS]
Attaching 3 streams to port(s) [0]: [SUCCESS]
Starting traffic on port(s) [0]: [SUCCESS]
20.42 [ms]
trex(service)>capture 5
Active Recorders
ID | Status | Packets | Bytes | TX Ports | RX Ports
------------------------------------------------------------------------------------------------------
4 | ACTIVE | [200/200] | 74.62 KB | - | 3
trex(service)>capture record stop --id 4 -o /tmp/rx_3.pcap 6
Stopping packet capture 4 [SUCCESS]
Writing 200 packets to '/tmp/rx_3.pcap' [SUCCESS]
Removing PCAP capture 4 from server [SUCCESS]
trex(service)>
如上,Trex使用4个port,与DUT连好线路。
DUT上需要配置:
interface xge4/1
ip address 1.1.1.1/24
!
interface xge4/2
ip address 2.2.2.1/24
!
interface xge4/3
ip address 3.3.3.1/24
allow ping
!
interface xge4/4
ip address 4.4.4.1/24
allow ping
ip route 16.0.0.0/8 1.1.1.2
ip route 48.0.0.0/8 2.2.2.2
ip route 17.0.0.0/8 3.3.3.2
ip route 49.0.0.0/8 4.4.4.2
Trex port的mac地址我们可以这样获得:
[root@localhost v2.81]# ./dpdk_setup_ports.py -t
+----+------+---------+-------------------+-------------+---------+----------+----------+
| ID | NUMA | PCI | MAC | Name | Driver | Linux IF | Active |
+====+======+=========+===================+=============+=========+==========+==========+
| 0 | -1 | 03:00.0 | 00:10:f3:66:1b:99 | Device 10fb | igb_uio | | |
+----+------+---------+-------------------+-------------+---------+----------+----------+
| 1 | -1 | 03:00.1 | 00:10:f3:66:1b:9a | Device 10fb | igb_uio | | |
+----+------+---------+-------------------+-------------+---------+----------+----------+
| 2 | -1 | 04:00.0 | 00:10:f3:66:1b:9b | Device 10fb | igb_uio | | |
+----+------+---------+-------------------+-------------+---------+----------+----------+
| 3 | -1 | 04:00.1 | 00:10:f3:66:1b:9c | Device 10fb | igb_uio | | |
+----+------+---------+-------------------+-------------+---------+----------+----------
然后设备上配置:
arp static 1.1.1.2 00-10-f3-66-1b-99
arp static 2.2.2.2 00-10-f3-66-1b-9a
arp static 3.3.3.2 00-10-f3-66-1b-9b
arp static 4.4.4.2 00-10-f3-66-1b-9c
完成上面的环境配置后,发送混合流,非常简单:文章来源地址https://www.yii666.com/blog/334196.html
./t-rex-64 -f cap2/sfr.yaml -m 1 -d 100
-m 流量复制几份
-d 持续时间
./t-rex-64 -f cap2/sfr.yaml -m 1 -d 100
-Per port stats table
ports | 0 | 1 | 2 | 3
-----------------------------------------------------------------------------------------
opackets | 53675 | 54998 | 53618 | 54967
obytes | 15729481 | 41733817 | 15718396 | 41737655
ipackets | 54998 | 53675 | 54967 | 53618
ibytes | 41733817 | 15729481 | 41737655 | 15718396
ierrors | 0 | 0 | 0 | 0
oerrors | 0 | 0 | 0 | 0
Tx Bw | 34.56 Mbps | 93.39 Mbps | 34.51 Mbps | 93.43 Mbps
-Global stats enabled
Cpu Utilization : 0.7 % 38.1 Gb/core
Platform_factor : 1.0
Total-Tx : 255.89 Mbps
Total-Rx : 255.81 Mbps
Total-PPS : 59.74 Kpps
Total-CPS : 2.25 Kcps
Expected-PPS : 300.64 Kpps
Expected-CPS : 4.51 Kcps
Expected-BPS : 1.06 Gbps
Active-flows : 1600 Clients : 254 Socket-util : 0.0100 %
Open-flows : 8580 Servers : 65534 Socket : 1600 Socket/Clients : 6.3
drop-rate : 0.00 bps
current time : 4.7 sec
test duration : 95.3 sec
[root@localhost v2.81]# cat cap2/http.yaml
- duration : 0.1
generator :
distribution : "seq"
clients_start : "16.0.0.1"
clients_end : "16.0.1.255"
servers_start : "48.0.0.1"
servers_end : "48.0.255.255"
clients_per_gb : 201
min_clients : 101
dual_port_mask : "1.0.0.0" # 多对port时,第二对端口IP变化的方法
tcp_aging : 0
udp_aging : 0
cap_ipg : true # 是否遵循pcap包的时间间隔
cap_info :
- name: avl/delay_10_rtp_160k_full.pcap # 指定回放的数据包
cps : 2.776
ipg : 10000
rtt : 10000
w : 1
plugin_id : 1
# 上述的pcap文件可以多个,就可以组成复杂的混合流了
通过观察可以发现,Trex将数据包分为client和server两部分,按yaml文件中指定的client和server,重写数据包的IP地址(还有源端口),然后发送出来。这样就模拟了协议完整状态,设备上可以看到建立起来很多会话。
可以通过观察一份流量的回放带宽占用,来调整-m参数,轻松将流量发送到想要的压力。例如: -m 1 是1mbps左右,-m 1000 就可以将流量复制到1gbps大小了。
[root@localhost v2.81]# cat yb_stf/oracle.yaml
- duration : 0.1
generator :
distribution : "seq"
clients_start : "16.0.0.1"
clients_end : "16.0.0.255"
servers_start : "48.0.0.1"
servers_end : "48.0.0.10"
clients_per_gb : 201
min_clients : 101
dual_port_mask : "1.0.0.0"
tcp_aging : 0
udp_aging : 0
cap_ipg : true
cap_info :
- name: yb_stf/oracle.pcap
cps : 2.776
ipg : 10000
rtt : 10000
w : 1
./t-rex-64 -f yb_stf/oracle.yaml -m 1000 -d 100
Trex提供了python的自动化API,可以用python脚本来连接测试仪,设定模式,构建流量,发送流量。
官方链接: https://trex-tgn.cisco.com/trex/doc/cp_stl_docs/index.html#