启动时网络不工作

启动时网络不工作

我已经设置好了/etc/network/interfaces。但是我必须经常重启网络,而不仅仅是启动。/etc/init.d/networking restart在系统启动时。问题出在哪里?我希望我的网络自动启动在系统启动时。你能帮助我吗?

我的 /etc/network/interfaces 配置

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

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

auto eth0
allow-hotplug eth0

# The primary network interface
iface eth0 inet static
address 192.168.1.21
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8 192.168.1.1

也许 rc.local 可以帮助我,但我不认为这是正确的做法。或者不是吗?

相关内容