Ubuntu配置静态IP

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 重启网络服务

上一篇:SqlCommandBuilder实现大数据更新


下一篇:Ubuntu 配置静态ip的方法