1. 输入命令:sudo vi /etc/network/interfaces 编辑文件:
auto lo
iface lo inet loopback auto eth0
iface eth0 inet static
address 192.168.1.200
netmask 255.255.255.0
gatewayip 192.168.1.1
第5行的static表示静态IP,如果要获取动态IP则将static改为dhcp并将后面的代码注释掉。
2.输入命令: sudo /etc/init.d/networking restart 重启网络服务