本文主要是介绍lxc配置网络,host与lxc通信,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
执行/etc/init.d/networing restart
重启网络后会发现多了一个br0的网卡
cat
/etc/init.d/networing
/etc/network/interfaces
auto br0
iface br0 inet dhcp
bridge_ports enp2s0
bridge_fd 0
bridge_maxwait 0
- 配置容器的网络
容器的网络配置文件默认路径为/var/lib/lxc/{name}/config
lxc.network.type = veth
lxc.network.flags = up
# that's the interface defined above in host's interfaces file
lxc.network.link = br0
# name of network device inside the container,
# defaults to eth0, you could choose a name freely
# lxc.network.name = lxcnet0
lxc.network.hwaddr = 00:FF:AA:00:00:01
然后在容器的/etc/network/interfaces/
文件中添加
auto eth0 iface eth0 inet dhcp
或者:
在config中增加如下配置:
lxc.net.0.type
这篇关于lxc配置网络,host与lxc通信的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!