ubuntu设置静态IP

1、设置IP

$ sudo vim /etc/network/interfaces

auto eth0
iface eth0 inet static (原来是dhcp)
address 192.168.1.5
netmask 255.255.255.0
gateway 192.168.1.1
:wq (保存并退出)

2、设置DNS,要不然不能通过域名访问地址

$ sudo vim /etc/resolvconf/resolv.conf.d/head —最后一行添加
nameserver 192.168.0.1 —此处根据实际写,也可写成网关

3、重启网络服务生效

$sudo /etc/init.d/networking restart

你可能感兴趣的:(环境搭建,linux,openstack)