Linux 设置静态IP
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 设置静态IP相关的知识,希望对你有一定的参考价值。
ubuntu下修改静态IP
打开/etc/network/interfaces文件,修改为以下内容
auto eth0
iface eth0 inet static
address 172.30.1.xxx
network 255.255.0.0
gateway 172.30.1.1
添加DNS地址,打开/etc/resolvconf/resolv.conf.d/base文件,添加DNS如下
nameserver 180.76.76.76
nameserver 8.8.8.8
centos下修改静态IP
打开/etc/sysconfig/network-scripts/ifcfg-eth0文件,修改为以下内容
auto eth0
iface eth0 inet static
address 172.30.1.xxx
network 255.255.0.0
gateway 172.30.1.1
添加DNS地址,打开/etc/resolv.conf文件,添加DNS如下
nameserver 180.76.76.76
nameserver 8.8.8.8
本文出自 “点滴成长” 博客,请务必保留此出处http://xdataplus.blog.51cto.com/3614757/1875087
以上是关于Linux 设置静态IP的主要内容,如果未能解决你的问题,请参考以下文章