Perf: Bump T-Rex to 2.88
[csit.git] / GPL / traffic_profiles / trex / trex-stl-3n-ethip4-ip4dst60000-8cnf.py
1 # Copyright (c) 2021 Cisco and/or its affiliates.
2 #
3 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
4 #
5 # Licensed under the Apache License 2.0 or
6 # GNU General Public License v2.0 or later;  you may not use this file
7 # except in compliance with one of these Licenses. You
8 # may obtain a copy of the Licenses at:
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #     https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12 #
13 # Note: If this file is linked with Scapy, which is GPLv2+, your use of it
14 # must be under GPLv2+.  If at any point in the future it is no longer linked
15 # with Scapy (or other GPLv2+ licensed software), you are free to choose
16 # Apache 2.
17 #
18 # Unless required by applicable law or agreed to in writing, software
19 # distributed under the License is distributed on an "AS IS" BASIS,
20 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 # See the License for the specific language governing permissions and
22 # limitations under the License.
23
24 """Stream profile for T-rex traffic generator.
25
26 Stream profile:
27  - Two streams sent in directions 0 --> 1 and 1 --> 0 at the same time.
28  - Packet: ETH / IP /
29  - Direction 0 --> 1:
30    - Source IP address range:      10.0.0.1
31    - Destination IP address range: 20.0.0.0 - 20.0.234.95
32  - Direction 1 --> 0:
33    - Source IP address range:      20.0.0.1
34    - Destination IP address range: 10.0.0.0 - 10.0.234.95
35 """
36
37 from trex.stl.api import *
38 from profile_trex_stateless_base_class import TrafficStreamsBaseClass
39
40
41 class TrafficStreams(TrafficStreamsBaseClass):
42     """Stream profile."""
43
44     def __init__(self):
45         """Initialization and setting of streams' parameters."""
46
47         super(TrafficStreamsBaseClass, self).__init__()
48
49         self.p1_dst_start_mac = u"02:02:00:00:12:00"
50
51         self.p2_dst_start_mac = u"02:02:00:00:02:00"
52
53         # IPs used in packet headers.
54         self.p1_src_start_ip = u"10.0.0.1"
55         self.p1_dst_start_ip = u"20.0.0.0"
56         self.p1_dst_end_ip = u"20.0.234.95"
57
58         self.p2_src_start_ip = u"20.0.0.1"
59         self.p2_dst_start_ip = u"10.0.0.0"
60         self.p2_dst_end_ip = u"10.0.234.95"
61
62     def define_packets(self):
63         """Defines the packets to be sent from the traffic generator.
64
65         Packet definition: | ETH | IP |
66
67         :returns: Packets to be sent from the traffic generator.
68         :rtype: tuple
69         """
70
71         # Direction 0 --> 1
72         base_pkt_a = (
73             Ether(
74                 dst=self.p1_dst_start_mac
75             ) /
76             IP(
77                 src=self.p1_src_start_ip,
78                 dst=self.p1_dst_start_ip,
79                 proto=61
80             )
81         )
82         # Direction 1 --> 0
83         base_pkt_b = (
84             Ether(
85                 dst=self.p2_dst_start_mac
86             ) /
87             IP(
88                 src=self.p2_src_start_ip,
89                 dst=self.p2_dst_start_ip,
90                 proto=61
91             )
92         )
93
94         # Direction 0 --> 1
95         vm1 = STLScVmRaw(
96             [
97                 STLVmFlowVar(
98                     name=u"mac_dst",
99                     min_value=0,
100                     max_value=7,
101                     size=1,
102                     op=u"inc"
103                 ),
104                 STLVmWrFlowVar(
105                     fv_name=u"mac_dst",
106                     pkt_offset=5
107                 ),
108                 STLVmFlowVar(
109                     name=u"dst",
110                     min_value=self.p1_dst_start_ip,
111                     max_value=self.p1_dst_end_ip,
112                     size=4,
113                     op=u"inc"
114                 ),
115                 STLVmWrFlowVar(
116                     fv_name=u"dst",
117                     pkt_offset=u"IP.dst"
118                 ),
119                 STLVmFixIpv4(
120                     offset=u"IP"
121                 )
122             ]
123         )
124         # Direction 1 --> 0
125         vm2 = STLScVmRaw(
126             [
127                 STLVmFlowVar(
128                     name=u"mac_dst",
129                     min_value=0,
130                     max_value=7,
131                     size=1,
132                     op=u"inc"
133                 ),
134                 STLVmWrFlowVar(
135                     fv_name=u"mac_dst",
136                     pkt_offset=5
137                 ),
138                 STLVmFlowVar(
139                     name=u"dst",
140                     min_value=self.p2_dst_start_ip,
141                     max_value=self.p2_dst_end_ip,
142                     size=4,
143                     op=u"inc"
144                 ),
145                 STLVmWrFlowVar(
146                     fv_name=u"dst",
147                     pkt_offset=u"IP.dst"
148                 ),
149                 STLVmFixIpv4(
150                     offset=u"IP"
151                 )
152             ]
153         )
154
155         return base_pkt_a, base_pkt_b, vm1, vm2
156
157
158 def register():
159     """Register this traffic profile to T-rex.
160
161     Do not change this function.
162
163     :return: Traffic streams.
164     :rtype: Object
165     """
166     return TrafficStreams()
167