Linux 设置静态IP

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 设置静态IP相关的知识,希望对你有一定的参考价值。

  1. 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


  2. 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的主要内容,如果未能解决你的问题,请参考以下文章

给虚拟机中的Linux系统设置静态IP

如何设置虚拟机中的linux系统的静态IP,才可以上网

VMware虚拟机中如何配置静态IP

Linux如何自动获取IP地址及配置静态IP地址上网

如何设置Linux获取动态及静态IP地址

如何在linux系统中设置静态ip地址