On 06/01/2011 07:26 AM, Mihamina Rakotomandimby wrote:
> Hi all,
>
> When I create a container, I usually created it with only one NIC:
>    [...]
>    lxc.network.type = veth
>    lxc.network.flags = up
>    lxc.network.link = br0
>    lxc.network.ipv4 = 41.204.96.2/28
>    lxc.network.name = eth0
>    [...]
>
> Now I want to create a container with 2 NICs
> On the host I have another bridge "br1", and I wan the 2nd container
> interface to be "eth1"
>
> How to?

lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = br0
lxc.network.ipv4 = 41.204.96.2/28
lxc.network.name = eth0
lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = br1
lxc.network.ipv4 = myip/28
lxc.network.name = eth1

Alternatively you can get ride of the virtual interface name because 
they automatically assigned.

lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = br0
lxc.network.ipv4 = 41.204.96.2/28
lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = br1
lxc.network.ipv4 = myip/28




------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger. 
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Data protection magic?
Nope - It's vRanger. Get your free trial download today. 
http://p.sf.net/sfu/quest-sfdev2dev
_______________________________________________
Lxc-users mailing list
Lxc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/lxc-users

Reply via email to