红联Linux门户
Linux帮助

ubuntu修改静态IP网关

发布时间:2016-01-16 15:58:13来源:linux网站作者:千山万水

这个东西折腾了一天,设置完了 /etc/network/interfaces 重启一直报什么懒觉第几行 empty 报错。搜索了一天也无解。最后把整个 /etc/network/interfaces 文件清完保存,重启网卡没报错了。


旧文件:

# the loopback interface
auto lo
iface lo inet loopback

#
auto eth0
allow-hotplug eth0
iface eth0 inet dhcp


具体设置如下:

/etc/network/interfaces

auto eth0
iface eth0 inet static
address 192.168.1.231
netmask 255.255.255.0
gateway 192.168.1.2

/etc/resolv.conf

nameserver 8.8.8.8
nameserver 8.8.4.4

nameserver 218.85.152.99
nameserver 192.168.1.2


最后重启,ok。

/etc/init.d/networking restart


Ubuntu修改静态IP地址重启后无法上网的解决:http://www.linuxdiyf.com/linux/16871.html

Ubuntu14.04 server静态ip配置:http://www.linuxdiyf.com/linux/16406.html

虚拟机vritualBox下ubuntu14.04设置静态ip地址:http://www.linuxdiyf.com/linux/15811.html

VMware中桥接(Bridged)模式静态ip的CentOS配置:http://www.linuxdiyf.com/linux/15788.html

Ubuntu 15.04配置静态IP和DNS:http://www.linuxdiyf.com/linux/14252.html