summaryrefslogtreecommitdiffstats
path: root/scripts/stl/hlt/hlt_vlans_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_vlans_vm.py
parent0fd006c24926377eb975eeb8885c0b4ed71db546 (diff)
hltapi: remove default for l3_protocol and l4_protocol, add several profiles
Diffstat (limited to 'scripts/stl/hlt/hlt_vlans_vm.py')
-rwxr-xr-xscripts/stl/hlt/hlt_vlans_vm.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/scripts/stl/hlt/hlt_vlans_vm.py b/scripts/stl/hlt/hlt_vlans_vm.py
new file mode 100755
index 00000000..aa4881c6
--- /dev/null
+++ b/scripts/stl/hlt/hlt_vlans_vm.py
@@ -0,0 +1,30 @@
+from trex_stl_lib.trex_stl_hltapi import STLHltStream
+
+
+class STLS1(object):
+ '''
+ Eth/802.1Q/802.1Q/802.1Q/802.1Q/802.1Q/IPv4/UDP stream with complex VM on vlan_id's
+ Missing values will be filled with defaults
+ '''
+
+ def create_streams (self, direction = 0):
+
+ return STLHltStream(frame_size = 100,
+ vlan_id = '1 2 1000 4 5', # 5 vlans
+ vlan_id_mode = 'increment fixed decrement random', # 5th vlan will be default fixed
+ vlan_id_step = 2, # 1st vlan step will be 2, others - default 1
+ vlan_id_count = [4, 1, 10], # 4th independent on count, 5th will be fixed
+ l3_protocol = 'ipv4',
+ l4_protocol = 'udp',
+ direction = direction,
+ )
+
+ def get_streams (self, direction = 0):
+ return self.create_streams(direction = direction)
+
+# dynamic load - used for trex console or simulator
+def register():
+ return STLS1()
+
+
+