Ubuntu下静态IP设置
2016-05-20 本文已影响685人
王宝花
使用场景
- 在公司有固定网段
- 服务器指定IP
第一种 设置方式
第一步进入配置文件
sudo vim /etc/network/interfaces
第二步修改内容如下,如果存在则进行更改否则添加
注:我安装的最新的Ubuntu16.04-server版,与14.0差别在eth0
上
auto enp0s3
iface enp0s3 inet static # 将网卡enp0s3设置为静态IP
address 192.168.20.65 # IP地址
netmask 255.255.255.0 # 子网掩码
network 192.168.20.0
broadcast 192.168.20.255
gateway 192.168.20.1 # 默认网关
dns-nameservers 8.8.8.8 # 谷歌DNS,可以自己设定
第三步重启网络服务
/etc/init.d/networking restart