Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1844246
  • 博文数量: 274
  • 博客积分: 2366
  • 博客等级: 大尉
  • 技术积分: 1880
  • 用 户 组: 普通用户
  • 注册时间: 2007-04-22 09:37
文章分类

全部博文(274)

文章存档

2022年(1)

2020年(10)

2019年(7)

2018年(18)

2017年(26)

2016年(32)

2015年(43)

2014年(30)

2013年(44)

2012年(36)

2011年(17)

2010年(10)

分类: LINUX

2011-08-09 16:13:28

 Debian中配置静态IP
分类: NetWork 黄嘴企鹅 3765人阅读 评论(0) 收藏 举报

默认安装Debian的时候是用dhcp服务的,有时我们需要设置一下静态IP。

一共涉及两个文件的修改

/etc/network/interfaces

auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
        address 192.168.2.121
        netmask 255.255.255.0
        gateway 192.168.2.2

IP地址,掩码,gateway什么的,你应该已经知道,或者可以咨询当地网络管理员

/etc/resolv.conf里面设置DNS服务器,在这种情况下应该就是gateway的地址

nameserver 192.168.2.2            #因为我这里网关就是DNS服务器所以是相同的

最后reboot或者#/etc/init.d/networking restart 

阅读(5259) | 评论(0) | 转发(0) |
0

上一篇:nfs ,samba安装等

下一篇:arm-gcc

给主人留下些什么吧!~~