如何将我的 eth1 网卡链接到我的 DNS?

如何将我的 eth1 网卡链接到我的 DNS?

在我的 Linux 机器上,我应该如何配置 eth1 网卡以与 ddclient DUC 配合使用?它无法使用静态 IP 地址,因为我的路由器不支持它,但我能找到的只是静态地址的配置?

我希望 eth1 网卡作为公共地址,eth0 作为我的 DNS 私有地址。我目前没有设置 eth1,但这是我的配置:

# This file describes the network interfaces available on your system 
# and how to activate them. For more information, see interfaces(5). 

# The loopback network interface 
auto lo 
iface lo inet loopback 

# The primary network interface 
auto eth0 
iface eth0 inet dhcp 
post-up iptables-restore < /etc/iptables.up.rules

答案1

查看 /etc/resolv.conf 文件中。我们可以像这样配置我们的 DNS:

nameserver 192.168.0.1
nameserver 192.168.0.2

上面的例子中,它表示主 DNS 和辅助 DNS 的 IP。将示例中的 IP 替换为属于您的 DNS 提供商的 IP

相关内容