带有 eth0 的 LXC 桥接器

带有 eth0 的 LXC 桥接器

我的主机 eth0 已连接到我的办公室网络。我想将 LXC 容器与主机的 eth0 桥接起来。我已将容器的 lxc.network.link 更改为 eth0,但它阻止启动容器。

答案1

我正在使用这个配置并且效果很好。

# cat /etc/network/interfaces
auto br0
iface br0 inet dhcp
        bridge_ports eth0
        bridge_stp off
        bridge_fd 0
        bridge_maxwait 0
# cat /var/lib/lxc/<CONTAINER NAME>/config
lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = br0

相关内容