pkt_gen: Add IxNet support for GRE frames
[vswitchperf.git] / conf / integration / 03_traffic.conf
1 # Copyright 2015-2016 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #   http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # For OP2P deployment scenario
16 TRAFFICGEN_PORT1_MAC = '02:00:00:00:00:01'
17 TRAFFICGEN_PORT2_MAC = '02:00:00:00:00:02'
18 TRAFFICGEN_PORT1_IP = '1.1.1.1'
19 TRAFFICGEN_PORT2_IP = '90.90.90.90'
20
21 # To test VXLAN set the ff to ixnetrfc2544v2.tcl
22 TRAFFICGEN_IXNET_TCL_SCRIPT = 'ixnetrfc2544v2.tcl'
23
24 # VXLAN traffic item
25
26 VXLAN_VNI = '99'
27 # TEST frame
28 # dstmac should be set to the MAC address of the DUT's receiving port
29 #VXLAN_FRAME_L2 = {'srcmac':
30 #                  '01:02:03:04:05:06',
31 #                  'dstmac':
32 #                  '00:1b:21:b3:48:a9'}
33
34 VXLAN_FRAME_L2 = {'srcmac': '',
35                   'dstmac': '',
36                  }
37
38 # FOR IXIA IxExplorer - VXLAN INNER FRAME
39 # The following lines can be removed if IXIA support will be dropped:
40 # 'protocolpad': 'true',
41 # 'protocolpadbytes':
42 # '080000000000630006050403020101020304050608004500002e000000004011095bc0a8000ac0a8f0090bb80bb9001a2e93000102030405060708090a0b0c0d0e0f1011',
43 # protocolpadbytes contains the following values:
44 # VxLAN header with VNI 99 (0x63)
45 # Inner SRC 01:02:03:04:05:06
46 # Inner DST 06:05:04:03:02:01
47 # IP SRC 192.168.0.2
48 # IP DST 192.168.240.9
49 # SRC port 3000 (0x0BB8)
50 # DST port 3001 (0x0BB9)
51 # length 26
52 # UDP Checksum 0x2E93
53
54 VXLAN_FRAME_L3 = {'proto': 'udp',
55                   'packetsize': 64,
56                   'srcip': TRAFFICGEN_PORT1_IP,
57                   'dstip': '',
58                  }
59
60 VXLAN_FRAME_l4 = {'srcport': 4789,
61                   'dstport': 4789,
62                   'vni': VXLAN_VNI,
63                   'inner_srcmac': '',
64                   'inner_dstmac': '',
65                   'inner_srcip': '',
66                   'inner_dstip': '',
67                   'inner_proto': 'tcp',
68                   'inner_srcport': 3000,
69                   'inner_dstport': 3001,
70                   'protocolpad': '',
71                   'protocolpadbytes': '',
72                  }
73
74 GRE_FRAME_L2 = {'srcmac': '',
75                 'dstmac': '',
76                }
77
78 GRE_FRAME_L3 = {'proto': 'gre',
79                 'packetsize': 64,
80                 'srcip': TRAFFICGEN_PORT1_IP,
81                 'dstip': '',
82                }
83
84 GRE_FRAME_l4 = {'srcport': 0,
85                 'dstport': 0,
86                 'inner_srcmac': '',
87                 'inner_dstmac': '',
88                 'inner_srcip': '',
89                 'inner_dstip': '',
90                 'inner_proto': 'tcp',
91                 'inner_srcport': 3000,
92                 'inner_dstport': 3001,
93                 'protocolpad': '',
94                 'protocolpadbytes': '',
95                }