summaryrefslogtreecommitdiffstats
path: root/scripts/stl/hlt/hlt_ip_ranges.py
diff options
context:
space:
mode:
authorYaroslav Brustinov <ybrustin@cisco.com>2016-02-28 18:04:50 +0200
committerYaroslav Brustinov <ybrustin@cisco.com>2016-02-28 18:04:50 +0200
commita9c35eacd8caebe65e8c685f9285740b2764ea21 (patch)
treed748899dc05c0fd3e6e610ca2e2acfc9ae4f075f /scripts/stl/hlt/hlt_ip_ranges.py
parent0fd006c24926377eb975eeb8885c0b4ed71db546 (diff)
hltapi: remove default for l3_protocol and l4_protocol, add several profiles
Diffstat (limited to 'scripts/stl/hlt/hlt_ip_ranges.py')
-rwxr-xr-xscripts/stl/hlt/hlt_ip_ranges.py29
1 files changed, 29 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..4346065c
--- /dev/null
+++ b/scripts/stl/hlt/hlt_ip_ranges.py
@@ -0,0 +1,29 @@
+from trex_stl_lib.trex_stl_hltapi import STLHltStream
+
+
+class STLS1(object):
+ '''
+ Eth/IP/TCP stream with VM to get different ip addresses
+ '''
+
+ def create_streams (self, direction = 0):
+ 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,
+ rate_pps = 1),
+ ]
+
+ def get_streams (self, direction = 0):
+ return self.create_streams(direction)
+
+# dynamic load - used for trex console or simulator
+def register():
+ return STLS1()
+
+
+