zoukankan      html  css  js  c++  java
  • Ubuntu16手动配置IP地址

    一、静态IP地址配置

    1
    sudo vi  /etc/network/interfaces

    然后按照如下格式修改:

    注意这里的网卡名字是ens33

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    auto lo
     
    iface lo inet loopback
     
    auto ens33
     
    iface ens33 inet static
    address 192.168.1.106
    netmask 255.255.255.0
    gateway 192.168.1.1

    二、配置DNS

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    #临时修改
    sudo  vi  /etc/resolv.conf
     
    #插入内容
    nameserver 114.114.114.114
    nameserver 8.8.8.8
     
    #永久修改
    sudo  vi  /etc/resolvconf/resolv.conf.d/base
     
    #插入内容
    nameserver 114.114.114.114
    nameserver 8.8.8.8

    注:永久修改DNS把DNS地址插入/etc/resolvconf/resolv.conf.d/base 后还需要执行如下命令,更新DNS配置:

    1
    resolvconf -u

    最后重启网卡:

    1
    /etc/init.d/networking  restart
  • 相关阅读:
    es6
    vue-router
    vue-lazyload
    java-number2
    echart事件
    weui了解
    java-number
    Java判断语句
    java 循环控制
    The access type for the readers of the blog.
  • 原文地址:https://www.cnblogs.com/Stephanie7464/p/6694957.html
Copyright © 2011-2022 走看看