ubuntu设置静态ip
编辑/etc/network/interfaces文件
默认的可能是
auto lo
iface lo inet loopback
修改成
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.12
netmask 255.255.255.0
gateway 192.168.1.1
配置eth0, 将来需要用自动获取的时候可以直接将static改成dhcp
其他的用#注释
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
#address 192.168.1.12
#netmask 255.255.255.0
#gateway 192.168.1.1
设置完毕后重启网卡即可
/etc/init.d/networking restart
blog comments powered by Disqus
发布日期
2012-05-25