summaryrefslogtreecommitdiffstats
path: root/scripts/stl/hlt/hlt_udp_ports.py
diff options
context:
space:
mode:
authorYaroslav Brustinov <ybrustin@cisco.com>2016-02-24 14:07:11 -0500
committerYaroslav Brustinov <ybrustin@cisco.com>2016-02-24 14:07:11 -0500
commit42afa885616f4def18f5f1f1ca303efdf742356f (patch)
tree187412cbca140ee5763172330e88b386705b3454 /scripts/stl/hlt/hlt_udp_ports.py
parent547112ad112a2c3f8792a41e3f41b9d257a2fa7a (diff)
hltapi : add dst_mac vm; vlan mask variable now can be shared; add 2 more profiles; add consistent_random argument for same random sequence each time
Diffstat (limited to 'scripts/stl/hlt/hlt_udp_ports.py')
-rwxr-xr-xscripts/stl/hlt/hlt_udp_ports.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/scripts/stl/hlt/hlt_udp_ports.py b/scripts/stl/hlt/hlt_udp_ports.py
new file mode 100755
index 00000000..20862141
--- /dev/null
+++ b/scripts/stl/hlt/hlt_udp_ports.py
@@ -0,0 +1,33 @@
+from trex_stl_lib.trex_stl_hltapi import STLHltStream
+
+
+class STLS1(object):
+ '''
+ Eth/IP/UDP stream with VM for different UDP ports inc/dec
+ The ports overlap the max and min at very first packets
+ '''
+
+ def create_streams (self, direction = 0):
+ return [STLHltStream(l4_protocol = 'udp',
+ udp_src_port_mode = 'decrement',
+ udp_src_port_count = 45,
+ udp_src_port_step = 20,
+ udp_src_port = 123,
+ udp_dst_port_mode = 'increment',
+ udp_dst_port_count = 100,
+ udp_dst_port_step = 300,
+ udp_dst_port = 65000,
+ direction = direction,
+ rate_pps = 1000,
+ ),
+ ]
+
+ def get_streams (self, direction = 0):
+ return self.create_streams(direction)
+
+# dynamic load - used for trex console or simulator
+def register():
+ return STLS1()
+
+
+