-
Notifications
You must be signed in to change notification settings - Fork 32
/
openstack.j2
41 lines (38 loc) · 913 Bytes
/
openstack.j2
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
auto br-mgmt
iface br-mgmt inet static
bridge_stp off
bridge_waitport 0
bridge_fd 0
# Bridge port references tagged interface
bridge_ports eth1
address 172.29.236.__IP__
netmask 255.255.255.0
dns-nameservers 192.168.1.1
# Bridge for vlan network
auto br-vlan
iface br-vlan inet manual
bridge_stp off
bridge_waitport 0
bridge_fd 0
# Notice this bridge port is an Untagged host interface
bridge_ports eth2
# Bridge for flat network
auto br-flat
iface br-flat inet static
bridge_stp off
bridge_waitport 0
bridge_fd 0
bridge_ports eth3
address 192.168.100.__IP__
netmask 255.255.255.0
dns-nameservers 192.168.1.1
# Bridge for vxlan network
auto br-vxlan
iface br-vxlan inet static
bridge_stp off
bridge_waitport 0
bridge_fd 0
bridge_ports eth4
address 172.29.240.__IP__
netmask 255.255.255.0
dns-nameservers 192.168.1.1