Tagged Questions
2
votes
0answers
51 views
To what extent does LXC manage configuring the network interface in a container?
In the LXC config file we can specify an IP address for a container:
lxc.network.type=veth
lxc.network.link=br0
lxc.network.ipv4 = 10.1.0.35/16
lxc.network.flags=up
lxc.network.hwaddr= ...
2
votes
2answers
72 views
Extra bridge interfaces get added automatically
I have a bridge set up between eth0 and br0, the bridge works fine, but sometimes, for unknown reasons and circumstances, I keep getting these off vethXXXXXX interfaces added to the bridge. When this ...
1
vote
0answers
114 views
lxc networking quesion
I have a similar requirement to the OP of this thread.
I want the following configuration:
-Physical host (PhyHost) reachable from the network at IP 10.1.101.89
-LXC container (LxcHost) ...
2
votes
1answer
86 views
Why do the members of a bridge lose their Ip address?
I have created a bridge using to existing network interfaces:
$ brctl addif br0 eth1
$ brctl addif br0 eth2
Why do eth1 and eth2 lose their IP addresses? What's the reasoning behind it?
PS this is ...