主要文件为:
/etc/network/interfaces
在没有任何配置的情况下,其内容为以下两行:
auto lo
iface lo inet loopback
配置网口为动态获取IP的,在末尾加上:
auto eth0
iface eth0 inet dhcp
配置网口为静态获取IP的,在末尾加上:
auto eth0
iface eth0 inet static
address 192.168.0.11
netmask 255.255.254.0
重启系统或者重新启动网络服务生效,推荐重启系统。