博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu Server 16.04修改IP、DNS、hosts
阅读量:4070 次
发布时间:2019-05-25

本文共 1321 字,大约阅读时间需要 4 分钟。

转自:http://www.cnblogs.com/pcat/p/6098157.html

1. Ubuntu Server 16.04修改IP

sudo vi /etc/network/interfaces

回显:

# The loopback network interfaceauto loiface lo inet loopback# The primary network interfaceauto eth0iface eth0 inet static        address 192.168.0.88        netmask 255.255.255.0        network 192.168.0.0        broadcast 192.168.0.255        gateway 192.168.0.1        # dns-* options are implemented by the resolvconf package, if instatlled        dns-nameservers 192.168.0.1        dns-search pcat

把address后的ip修改为自己想设定的ip后,保存退出。

之后,重启网络:

sudo /etc/init.d/networking restart

ps,ubuntu还有别的重启方式(但不一定有效)

sudo service network restart

desktop版可以这样重启:

sudo service network-manager restart

 如果只是修改了某个网卡(例如eth0)的信息,也可以通过重启网卡的方式使其修改生效。

sudo ifdown eth0sudo ifup eth0

 最后,我在自己机子上试了重启网络或者网卡后,ifconfig里显示的还是旧ip,而且新旧两个ip都可以ping通,只有重启机子后才会显示新的ip。

 

2.  Ubuntu Server 16.04修改DNS

sudo vi /etc/resolvconf/resolv.conf.d/base

修改内容:

search localdomain #如果本Server为DNS服务器,可以加上这一句,如果不是,可以不加nameserver 8.8.8.8 #希望修改成的DNSnameserver 114.114.114.114 #希望修改成的DNS

保存退出,重启网络:

sudo /etc/init.d/networking restart

查看当前DNS:

cat /etc/resolv.conf

 

3.  Ubuntu Server 16.04修改hosts

查看hostname:

cat /etc/hostname

记住其hostname,修改hosts:

sudo vi /etc/hosts

前两行修改为:

#第1行默认这个 127.0.0.1       localhost#第2行为你修改的ip    你刚才查看的hostname192.168.11.52       pcat

保存退出。

你可能感兴趣的文章
ORACLE权限管理调研笔记
查看>>
移进规约冲突一例
查看>>
IA32时钟周期的一些内容
查看>>
SM2椭圆曲线公钥密码算法
查看>>
获得github工程中的一个文件夹的方法
查看>>
《PostgreSQL技术内幕:查询优化深度探索》养成记
查看>>
PostgreSQL查询优化器详解之逻辑优化篇
查看>>
STM32中assert_param的使用
查看>>
C语言中的 (void*)0 与 (void)0
查看>>
vu 是什么
查看>>
io口的作用
查看>>
IO口的作用
查看>>
UIView的使用setNeedsDisplay
查看>>
归档与解归档
查看>>
Window
查看>>
为什么button在设置标题时要用一个方法,而不像lable一样直接用一个属性
查看>>
字符串的截取
查看>>
2. Add Two Numbers
查看>>
17. Letter Combinations of a Phone Number (DFS, String)
查看>>
93. Restore IP Addresses (DFS, String)
查看>>