Ubuntu server中静态IP配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu server中静态IP配置相关的知识,希望对你有一定的参考价值。
(1)修改IP
配置文件 /etc/network/interfaces
加入以下语句:
auto eth0
iface eth0 inet static
address 192.168.2.86 #IP地址
netmask 255.255.255.0 #子网掩码
gateway 192.168.2.1 #网关
(2)修改DNS
配置文件 /etc/resolv.conf
加入以下语句:
nameserver 192.168.2.1 #希望修改成的DNS
nameserver 8.8.8.8
这里有点有问题,就是重启ubuntu后,发现又不能上网了,问题出在 /etc/resolv.conf。重启后,此文件配置的dns又被自动修改为默认值。所以需要永久性修改DNS。方法如下:
打开 /etc/resolvconf/resolv.conf.d/base
加入 :
nameserver 192.168.2.1
nameserver 8.8.8.8
(3)Ubuntu Server最后一步(不是必须)。
在rc.local里加入这个重启网络配置的命令:
sudo /etc/init.d/networking restart
以上是关于Ubuntu server中静态IP配置的主要内容,如果未能解决你的问题,请参考以下文章
ubuntu20.04配置置静态ip,ubuntu设置静态ip方法
Ubuntu Server 12.04(14.04) 静态IP简洁配置
Ubuntu Server 12.04(14.04/14.10) 静态IP配置