Ubuntu16.04设置静态IPv4

前端之家收集整理的这篇文章主要介绍了Ubuntu16.04设置静态IPv4前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. 查看网卡名称

查找以en*开头的网卡名称

# ifocnfig

2. 配置静态IP

获取自己的网卡名字,再进行配置。

# vim /etc/network/interfaces

// 添加内容
auto eth0
iface eth0 inet static
address 192.168.2.31    
netmask 255.255.255.0
gateway 192.168.2.1
dns-nameserver 192.168.2.1

dns-nameserver 192.168.2.1这句一定需要有,因为以前是DHCP解析,所以会自动分配DNS服务器地址。而一旦设置为静态IP后,就没有自动获取到DNS服务器了,需要自己设置一个。重启电脑后,/etc/resolv.conf文件中会自动添加nameserver 192.168.2.1(或者nameserver 8.8.8.8,可以根据访问速度,选择合适的公共DNS。)

3. 重启网络

# /etc/init.d/networking restart
原文链接:https://www.f2er.com/ubuntu/349586.html

猜你在找的Ubuntu相关文章