现象:

使用ifconfig 打印出来的只有lo,没有eth0;使用ifconfig -a 才有eth0

解决方法:

这是/etc/network/interfaces 文件没有配置对,需要加上 auto eth0,下面是interfaces文件示范:

# interfaces(5) file used by ifup(8) and ifdown(8)

# Include files from /etc/network/interfaces.d:

#source-directory /etc/network/interfaces.d

auto lo

iface lo inet loopback


auto eth0

iface eth0 inet static


address 192.168.0.200

netmask 255.255.0.0

gateway 192.168.0.2



更多推荐