我是 Linux 的新用户,刚刚开始使用,并被分配了这个项目来安装新的 DNS 服务器。我已经使用 Ubuntu 14.04.04 安装了服务器。现在我需要为 DNS 服务器分配 IP 地址,我该怎么做?请提供建议和提示。
诚挚问候 PDickson
答案1
/etc/network/interfaces
例如,您可以在以下位置配置机器的 IP 地址:
auto eth0
iface eth0 inet static
address 192.0.2.7
netmask 255.255.255.0
gateway 192.0.2.254
更多信息请访问手册页。
答案2
你可以尝试这个:
ifconfig eth0 up
ifconfig 192.0.2.1 up
然后是这个:
ifconfig "1" up
这样也许能很好地发挥作用。