我已经尝试了几个小时来设置它,但是当我重新启动服务网络时,我根本没有任何 IP 地址。我/etc/network/interfaces
看起来像这样:
auto lo
iface lo inet loopback
iface eth0 inet static
address 192.168.1.5
gateway 192.168.1.1
netmask 255.255.255.0
dns-nameservers 8.8.8.8 8.8.4.4
我也像这样编辑了我的 NetworkManager.conf:
[main]
plugins=ifupdown,keyfile,ofono
#dns=dnsmasq
[ifupdown]
managed=true
我已检查过 IP 地址 192.168.1.5 未被其他机器使用。有人知道我的设置有什么问题吗?
答案1
不是auto lo
,因为它是auto eth0
auto eth0
iface eth0 inet static
address ...
netmask ...
gateway ...
您可以使用 = 命令检查以太网接口:ifconfig -a