美文网首页
Ubuntu设置静态IP

Ubuntu设置静态IP

作者: RudyXiong | 来源:发表于2018-07-19 11:35 被阅读0次

    Ubuntu的网络参数保存在文件 /etc/network/interfaces中,默认设置使用dhcp,内容如下:

    # The primary network interface
    auto eth0
    iface eth0 inet dhcp

    设置静态ip的方法如下:

    1. 编辑 /etc/network/interfaces

      a. 将dhcp 一行屏蔽

      # The primary network interface
      auto eth0
      #iface eth0 inet dhcp

      b. 添加和静态ip有关的参数

      # The primary network interface
      iface eth0 inet static
      address 192.168.0.10
      netmask 255.255.255.0
      gateway 192.168.0.1

    1. 编辑 /etc/resolv.conf,设置dns

      nameserver 202.96.134.133
      nameserver 202.106.0.20

    2. 执行下面两个命令,启用新设置

      $ sudo ifdown eth0
      $ sudo ifup eth0
      

    相关文章

      网友评论

          本文标题:Ubuntu设置静态IP

          本文链接:https://www.haomeiwen.com/subject/olzzpftx.html