1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
from trex_stl_lib.trex_stl_hltapi import STLHltStream
class STLS1(object):
'''
Create 2 Eth/IP/UDP steams with different packet size:
First stream will start from 64 bytes (default) and will increase until max_size (9,216)
Seconds stream will decrease the packet size in reverse way
'''
def get_streams (self, direction = 0, **kwargs):
max_size = 9*1024
return [STLHltStream(length_mode = 'increment',
frame_size_max = max_size,
l3_protocol = 'ipv4',
ip_src_addr = '16.0.0.1',
ip_dst_addr = '48.0.0.1',
l4_protocol = 'udp',
udp_src_port = 1025,
udp_dst_port = 12,
rate_pps = 1,
),
STLHltStream(length_mode = 'decrement',
frame_size_max = max_size,
l3_protocol = 'ipv4',
ip_src_addr = '16.0.0.1',
ip_dst_addr = '48.0.0.1',
l4_protocol = 'udp',
udp_src_port = 1025,
udp_dst_port = 12,
rate_pps = 1,
)
]
# dynamic load - used for trex console or simulator
def register():
return STLS1()
|