我正在尝试让 LXC 容器使用静态 IP 地址。为此,我指定
lxc.network.ipv4 = 10.0.3.3
lxc.network.ipv4.gateway = 10.0.3.1
在lxc
配置文件中。我在容器中只有环回接口/etc/network/interfaces
。而且它大部分情况下都能正常工作。除了域名解析。有没有办法做类似于配置文件dns-nameservers
中的节/etc/network/interfaces
所做的事情?lxc
目前我正在考虑移动容器内的网络设置。
答案1
我最终得到:
auto eth0
iface eth0 inet static
address 10.0.3.2
gateway 10.0.3.1
dns-nameservers 8.8.8.8
在/etc/network/interfaces
。/var/lib/lxc/*/config
其中:
...
lxc.network.type = veth
lxc.network.link = lxcbr0
lxc.network.flags = up
lxc.network.hwaddr = 00:16:3e:d6:21:a6