码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu 设置静态IP

时间:2015-09-11 17:19:30      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

一、配置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是否配置成功

 

二、配置dns服务器

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

    添加dns服务器地址,如下:

    nameserver 192.168.10.1

    nameserver 0.0.0.0

ubuntu 设置静态IP

标签:

原文地址:http://www.cnblogs.com/dannylau/p/4801373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!