当前位置: 技术问答>linux和unix
【急】Telent 奇怪现象咨询
来源: 互联网 发布时间:2017-05-16
本文导语: 有2套系统与外界各种设备对接,一般在对接前会做网络测试 发现一套是正常的,一套是有奇怪异常 如 真实外界设备IP为 192.168.1.1 提供服务的端口为48 在2套系统上 使用telnet 检测 192.168.1.1 48端口都是正常的 ...
有2套系统与外界各种设备对接,一般在对接前会做网络测试
发现一套是正常的,一套是有奇怪异常
如 真实外界设备IP为 192.168.1.1 提供服务的端口为48
在2套系统上 使用telnet 检测 192.168.1.1 48端口都是正常的
linux10:~# telnet 192.168.1.1 48
Trying 192.168.1.1 ...
Connected to 192.168.1.1.
Escape character is'^]'
但是在设备2 发现及时telnet 伪造的虚假的IP和端口也是通的
linux11:~# telnet 10.10.10.10 10
Trying 10.10.10.10 ...
Connected to 10.10.10.10 .
Escape character is'^]'
linux11:~# telnet 20.10.10.10 10
Trying 20.10.10.10 ...
Connected to 20.10.10.10 .
Escape character is'^]'
linux11:~# telnet 10.20.10.10 10
Trying 10.20.10.10 ...
Connected to 10.20.10.10 .
Escape character is'^]'
linux10机器去telnet这些假的IP:Port 就会正常超时报错
发现一套是正常的,一套是有奇怪异常
如 真实外界设备IP为 192.168.1.1 提供服务的端口为48
在2套系统上 使用telnet 检测 192.168.1.1 48端口都是正常的
linux10:~# telnet 192.168.1.1 48
Trying 192.168.1.1 ...
Connected to 192.168.1.1.
Escape character is'^]'
但是在设备2 发现及时telnet 伪造的虚假的IP和端口也是通的
linux11:~# telnet 10.10.10.10 10
Trying 10.10.10.10 ...
Connected to 10.10.10.10 .
Escape character is'^]'
linux11:~# telnet 20.10.10.10 10
Trying 20.10.10.10 ...
Connected to 20.10.10.10 .
Escape character is'^]'
linux11:~# telnet 10.20.10.10 10
Trying 10.20.10.10 ...
Connected to 10.20.10.10 .
Escape character is'^]'
linux10机器去telnet这些假的IP:Port 就会正常超时报错
|
可能是linux11上telent服务范围不受限制
vim /etc/xinetd.d/Telnet
例如:
vim /etc/xinetd.d/Telnet
例如:
service Telnet
{
disable = no #激活 Telnet 服务,no
bind = 210.45.160.17 #your ip
only_from = 210.45.0.0/16 #只允许 210.45.0.0 ~ 210.45.255.255 这个网段进入
only_from = .edu.cn #只有教育网才能进入!
no_access = 210.45.160. #这两个ip不可登陆
access_times = 8:00-12:00 20:00-23:59 # 每天只有这两个时间段开放服务
......
}
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。