首页 > 代码库 > linux (debian) 配置静态ip
linux (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
nameserver 192.168.2.1 # 一般和gateway的地址是一致的
====================================
重启网络: sudo /etc/init.d/networking restart
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。