diff options
Diffstat (limited to 'scripts/stl/hlt/hlt_ip_ranges.py')
-rwxr-xr-x | scripts/stl/hlt/hlt_ip_ranges.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/scripts/stl/hlt/hlt_ip_ranges.py b/scripts/stl/hlt/hlt_ip_ranges.py new file mode 100755 index 00000000..7679e09e --- /dev/null +++ b/scripts/stl/hlt/hlt_ip_ranges.py @@ -0,0 +1,26 @@ +from trex_stl_lib.trex_stl_hltapi import STLHltStream + + +class STLS1(object): + ''' + Eth/IP/TCP stream with VM to get different ip addresses + ''' + + def get_streams (self, direction = 0, **kwargs): + return STLHltStream(split_by_cores = 'duplicate', + l3_protocol = 'ipv4', + ip_src_addr = '192.168.1.1', + ip_src_mode = 'increment', + ip_src_count = 5, + ip_dst_addr = '5.5.5.5', + ip_dst_mode = 'random', + consistent_random = True, + direction = direction, + rate_pps = 1) + +# dynamic load - used for trex console or simulator +def register(): + return STLS1() + + + |