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

linux (debian) 配置静态ip

时间:2014-10-28 12:15:33      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:局域网   网络   debian   静态ip   配置   

    在局域网内使用动态ip分配,机器动态的获取
ip地址。但是我使用ssh登录的时候,总是断线。
后来发现,原来机器总是在两个ip地址192.168.2.203
和192.168.2.228之间切换,用ssh登录老师断线,实在
在是受不了了,所以决定配置静态ip。

    配置静态ip涉及到两个文件,/etc/network/interface
和/etc/resolv.conf,两个文件的配置如下:

====================================
/etc/network/interface文件配置:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

auto eth2
iface eth2 inet static
address 192.168.2.2   # 注 :静态ip必须在100之前
netmask 255.255.255.0
gateway 192.168.2.1

broadcast 192.168.2.255


====================================

/etc/resolv.conf文件配置:

nameserver 192.168.2.1 # 一般和gateway的地址是一致的


====================================

重启网络: sudo /etc/init.d/networking restart


 

linux (debian) 配置静态ip

标签:局域网   网络   debian   静态ip   配置   

原文地址:http://blog.csdn.net/xiaocainiaoshangxiao/article/details/40537503

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