如何静态设置 lxc 容器上的 dns?

如何静态设置 lxc 容器上的 dns?

我正在尝试将 DNS 手动设置为 lxc 容器。我已经阅读了您对 [使用静态 IP 设置桥接 LXC 容器 但这对我来说不起作用。

在容器内的 etc/network/interfaces 中我尝试了:

自动 eth0

iface eth0 inet 手册

我试过了

自动 eth0

iface eth0 inet 静态

地址 10.1.5.2

网络掩码 255.255.255.0

网关 10.1.5.1

dns 名称服务器 8.8.8.8

但这不起作用。我仍然有 DNS 问题,使用 apt-get 时仍然收到以下消息

暂时无法解析“archive.ubuntu.com”

答案1

得到它...

在容器中,我们需要做的就是将 dns 添加到 /etc/resolv.conf

echo“名称服务器 8.8.8.8”| sudo tee /etc/resolv.conf > /dev/null

相关内容