Switch to use new ovs nsh version
[groupbasedpolicy.git] / demos / gbpsfc-env / demo-asymmetric-coexistence / infrastructure_config.py
1 # Config for switches, tunnelIP is the local IP address.
2 switches = [
3             {'name': 'sw1',
4              'type': 'gbp',
5              'dpid': '1'},
6             {'name': 'sw2',
7              'type': 'gbp',
8              'dpid': '2'},
9             {'name': 'sw3',
10              'type': 'sf',
11              'dpid': '3'},
12             {'name': 'sw4',
13              'type': 'gbp',
14              'dpid': '4'},
15             {'name': 'sw5',
16              'type': 'sf',
17              'dpid': '5'},
18             {'name': 'sw6',
19              'type': 'none',
20              'dpid': '6'}
21             ]
22
23 defaultContainerImage='alagalah/odlpoc_ovs230'
24
25 #Note that tenant name and endpointGroup name come from policy_config.py
26
27 hosts = [{'name': 'h35-2',
28           'mac': '00:00:00:00:35:02',
29           'ip': '10.0.35.2/24',
30           'switch': 'sw1'},
31          {'name': 'h35-3',
32           'ip': '10.0.35.3/24',
33           'mac': '00:00:00:00:35:03',
34           'switch': 'sw2'},
35          {'name': 'h35-4',
36           'ip': '10.0.35.4/24',
37           'mac': '00:00:00:00:35:04',
38           'switch': 'sw4'},
39          {'name': 'h36-2',
40           'ip': '10.0.36.2/24',
41           'mac': '00:00:00:00:36:02',
42           'switch': 'sw1'},
43          {'name': 'h36-3',
44           'ip': '10.0.36.3/24',
45           'mac': '00:00:00:00:36:03',
46           'switch': 'sw2'},
47          {'name': 'h36-4',
48           'ip': '10.0.36.4/24',
49           'mac': '00:00:00:00:36:04',
50           'switch': 'sw4'}
51           ]