Ubuntu16.04 server版设置静态IP

看了几篇英语作者的文章,结合他们的设置。
原文链接:https://michael.mckinnon.id.au/2016/05/05/configuring-ubuntu-16-04-static-ip-address/

首先查看ifconfig查看接口名

  1. 编辑/etc/network/interfaces文档

sudo vim /etc/network/interfaces

加入以下内容
auto eth0 #设置自动启动eth0接口 eth0 根据实际情况名字不同 ifconfig查看
iface eth0 inet static #配置静态IP
address 10.10.29.30 #你的IP地址
netmask 255.255.255.128 #子网掩码,用命令ifconfig 可以查看
gateway 10.10.29.126 #你的网关,netstat -rn 查看,或者ip route show
dns-nameserver 8.8.8.8 8.8.4.4 #dns设置
保存退出

在外文网站中作者认为修改/etc/resolv.conf 是非常老派的做法

  1. 重启网络服务或重启电脑

重启网络服务 sudo /etc/init.d/networking restart
若重启网络服务不行,重启电脑试试 sudo reboot

你可能感兴趣的:(网络)