summaryrefslogtreecommitdiffstats
path: root/scripts/stl/hlt/hlt_tcp_ranges.py
blob: 911fdecdb74b6d298225fca041a82dfc5a53d1e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from trex_stl_lib.trex_stl_hltapi import STLHltStream


class STLS1(object):
    '''
    Eth/IP/TCP stream with VM to get 10 different TCP ports
    '''

    def create_streams (self, direction = 0):
        return [STLHltStream(l3_protocol = 'ipv4',
                             l4_protocol = 'tcp',
                             tcp_src_port_mode = 'decrement',
                             tcp_src_port_count = 10,
                             tcp_src_port = 1234,
                             tcp_dst_port_mode = 'increment',
                             tcp_dst_port_count = 10,
                             tcp_dst_port = 1234,
                             name = 'test_tcp_ranges',
                             direction = direction,
                             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()