Debian - 网络在启动时无法工作

Debian - 网络在启动时无法工作

我已经设置了我的/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

DHCP 也有同样的问题。

也许 rc.local 可以工作,但我认为这不是正确的方法。

相关内容