如何在 ubuntu 中自动运行 dhclient?

如何在 ubuntu 中自动运行 dhclient?

我需要跑sudo dhclient eth0 每次 我拔下以太网插头然后重新插入。

这太烦人了!我该如何解决?

答案1

您应该检查您的网络配置:

/etc/network/interfaces

如果您想要 DHCP,它应该是这样的:

auto eth0
iface eth0 inet dhcp

如果您想要一个静态 IP,则应如下所示:

auto eth0
iface eth0 inet static
address xxx.xxx.xxx.xxx
gateway xxx.xxx.xxx.xxx
netmask xxx.xxx.xxx.xxx
network xxx.xxx.xxx.xxx
broadcast xxx.xxx.xxx.xxx

你可以读这个也。

相关内容