pkt_gen: Add support for generating GENEVE 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 # TEST frame
75 # dstmac should be set to the MAC address of the DUT's receiving port
76 GRE_FRAME_L2 = {'srcmac': '',
77                 'dstmac': '',
78                }
79
80 GRE_FRAME_L3 = {'proto': 'gre',
81                 'packetsize': 64,
82                 'srcip': TRAFFICGEN_PORT1_IP,
83                 'dstip': '',
84                }
85
86 GRE_FRAME_l4 = {'srcport': 0,
87                 'dstport': 0,
88                 'inner_srcmac': '',
89                 'inner_dstmac': '',
90                 'inner_srcip': '',
91                 'inner_dstip': '',
92                 'inner_proto': 'tcp',
93                 'inner_srcport': 3000,
94                 'inner_dstport': 3001,
95                 'protocolpad': '',
96                 'protocolpadbytes': '',
97                }
98
99
100 # TEST frame
101 # dstmac should be set to the MAC address of the DUT's receiving port
102 GENEVE_FRAME_L2 = {'srcmac': '',
103                    'dstmac': '',
104                   }
105
106 GENEVE_FRAME_L3 = {'proto': 'udp',
107                    'packetsize': 64,
108                    'srcip': TRAFFICGEN_PORT1_IP,
109                    'dstip': '',
110                   }
111
112 # UDP source/destination port (OUTER FRAME)
113 # Variables with prefix inner_ are for the
114 # INNER_FRAME
115 GENEVE_FRAME_l4 = {'srcport': 6081,
116                    'dstport': 6081,
117                    'geneve_vni': 0,
118                    'inner_srcmac': '',
119                    'inner_dstmac': '',
120                    'inner_srcip': '',
121                    'inner_dstip': '',
122                    'inner_proto': 'tcp',
123                    'inner_srcport': 3000,
124                    'inner_dstport': 3001,
125                   }