summaryrefslogtreecommitdiffstats
path: root/scripts/stl/hlt/hlt_l3_length_vm.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_l3_length_vm.py
parent0fd006c24926377eb975eeb8885c0b4ed71db546 (diff)
hltapi: remove default for l3_protocol and l4_protocol, add several profiles
Diffstat (limited to 'scripts/stl/hlt/hlt_l3_length_vm.py')
-rwxr-xr-xscripts/stl/hlt/hlt_l3_length_vm.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/scripts/stl/hlt/hlt_l3_length_vm.py b/scripts/stl/hlt/hlt_l3_length_vm.py
new file mode 100755
index 00000000..e9b6654c
--- /dev/null
+++ b/scripts/stl/hlt/hlt_l3_length_vm.py
@@ -0,0 +1,36 @@
+from trex_stl_lib.trex_stl_hltapi import STLHltStream
+
+
+class STLS1(object):
+ '''
+ Two Eth/IP/UDP streams with VM to get different size of packet by l3_length
+ '''
+
+ def create_streams (self, direction = 0):
+ return [STLHltStream(length_mode = 'increment',
+ l3_length_min = 100,
+ l3_length_max = 3000,
+ l3_protocol = 'ipv4',
+ l4_protocol = 'udp',
+ rate_bps = 1000000,
+ direction = direction,
+ ),
+ STLHltStream(length_mode = 'decrement',
+ l3_length_min = 100,
+ l3_length_max = 3000,
+ l3_protocol = 'ipv4',
+ l4_protocol = 'udp',
+ rate_bps = 1000000,
+ direction = direction,
+ )
+ ]
+
+ def get_streams (self, direction = 0):
+ return self.create_streams(direction)
+
+# dynamic load - used for trex console or simulator
+def register():
+ return STLS1()
+
+
+