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


class STLS1(object):
    '''
    Creating 4 streams Eth/IP/UDP with different size and rate (smallest with highest rate)
    Each stream will get rate_pps * his ratio / sum of ratios
    '''

    def get_streams (self, direction = 0):
        return STLHltStream(length_mode = 'imix', rate_pps = 2,
                            l3_imix1_size = 60, l3_imix1_ratio = 4,
                            l3_imix2_size = 400, l3_imix2_ratio = 3,
                            l3_imix3_size = 2000, l3_imix3_ratio = 2,
                            l3_imix4_size = 8000, l3_imix4_ratio = 1,
                            l3_protocol = 'ipv4',
                            l4_protocol = 'udp',
                            direction = direction,
                            )

# dynamic load - used for trex console or simulator
def register():
    return STLS1()