Adding bridge interface for lxc containers
Posted on Feb 18, 2012
You can make a bridge by changing network configuration file:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
# iface eth0 inet dhcp
# make this manual, that network manager would not conflict when you connect utp cable
iface eth0 inet manual
auto br0
iface br0 inet static
bridge_ports eth0
address 192.168.1.10
broadcast 192.168.1.255
netmask 255.255.255.0
gateway 192.168.1.1
|
In this configuration I used br0 static configuration.
If You need dhcp, You can use this configuration:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
# iface eth0 inet dhcp
# make this manual, that network manager would not conflict when you connect utp cable
iface eth0 inet manual
auto br0
iface br0 inet dhcp
|