summaryrefslogtreecommitdiffstats
path: root/scripts/stl/hlt/hlt_ip_ranges.py
blob: 4346065c543bed9f7aa48b2eef18ded62eb15511 (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
from trex_stl_lib.trex_stl_hltapi import STLHltStream


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

    def create_streams (self, direction = 0):
        return [STLHltStream(split_by_cores = 'duplicate',
                             l3_protocol = 'ipv4',
                             ip_src_addr = '192.168.1.1',
                             ip_src_mode = 'increment',
                             ip_src_count = 5,
                             ip_dst_addr = '5.5.5.5',
                             ip_dst_mode = 'random',
                             consistent_random = True,
                             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()