From a9c35eacd8caebe65e8c685f9285740b2764ea21 Mon Sep 17 00:00:00 2001 From: Yaroslav Brustinov Date: Sun, 28 Feb 2016 18:04:50 +0200 Subject: hltapi: remove default for l3_protocol and l4_protocol, add several profiles --- scripts/stl/hlt/hlt_vlans_vm.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 scripts/stl/hlt/hlt_vlans_vm.py (limited to 'scripts/stl/hlt/hlt_vlans_vm.py') 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() + + + -- cgit 1.2.3-korg