zoukankan      html  css  js  c++  java
  • ubuntu设置ip和dns

     一、配置ip

         ubuntu的网络配置信息放在 /etc/network/interfaces 中,

        

         如果配置动态获取ip,则在上述文件中加入以下内容:

         auto eth0

         iface eth0 inet dhcp

     

         如果配置静态ip,则添加如下内容:

         auto eth0

         iface eth0 inet static

         address 192.168.33.201

         netmask 255.255.255.0

         gateway 192.168.33.1

     

         要是配置生效,需要重启网卡:

         ifconfig eth0 down

         ifconfig eth0 up

        

         不是root,命令前面加sudo

        

         接着用ifconfig命令查看ip是否配置成功

         /etc/init.d/networking restart

     

    二、配置dns服务器

             ubuntu dns服务器信息,放在 /etc/resolv.conf,

             添加dns服务器地址,如202.112.125.53,则在上述文件中加入

                 nameserver  202.106.0.20

  • 相关阅读:
    POJ 3093 Margaritas on the River Walk(背包)
    BZOJ 2287 【POJ Challenge】消失之物(DP+容斥)
    WC2017 Day1
    WC2017 Day0
    WC2017 Conclusion
    WC2017 Day6
    UOJ #58 糖果公园
    WC2017 Day5
    codevs 1946 阿狸的打字机
    HDU 2457 DNA_repair
  • 原文地址:https://www.cnblogs.com/evilloop/p/2182714.html
Copyright © 2011-2022 走看看