telnet-0.17-30
//从上步得知系统只有安装了telnet客户端程序
我们可以从linux安装盘或从网上下载telnet-server服务器端程序
接下来安装该软件包
warning: telnet-server-0.17-30.i386.rpm: V3 DSA signature: NOKEY, key ID db42a60e
Preparing... ########################################### [100%]
1:telnet-server ########################################### [100%]
//启动telnet服务
(1)开启服务
方法一:使用ntsysv,在弹出的窗口中.将telnet选上,然后单击"确定",如下图:
方法二:编辑/etc/xinetd.d/telnet,找到"disable=yes" 将yes改成no..
# default: on
# description: The telnet server serves telnet sessions; it uses
# unencrypted username/password pairs for authentication.
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
(2)激活服务
åœæ¢ xinetd: [ 确定 ]
å¯åŠ¨ xinetd: [ 确定 ]
//我们在windows2000下测试linux的telnet服务
(C) 版权所有 1985-2000 Microsoft Corp.
C:Documents and SettingsAdministrator>telnet 192.168.1.177
Red Hat Enterprise Linux AS release 4 (Nahant)
Kernel 2.6.9-5.EL on an i686
login: root
Password:
Login incorrect
login:
默认情况下系统不允许root直接登陆
如果要 允许root直接登录
编辑/etc/securetty
增 添如下行到文件尾部。
pts/0 pts/1 pts/2
…
这里我们在linux下新建个用户flyshitou,然后再在windows2000下测试服务
[root@localhost ~]# passwd flyshitou
Changing password for user flyshitou.
New UNIX password:
BAD PASSWORD: it is too simplistic/systematic
Retype new UNIX password:
passwd: all authentication tokens updated successfully.
(C) 版权所有 1985-2000 Microsoft Corp.
C:Documents and SettingsAdministrator>telnet 192.168.1.177
Red Hat Enterprise Linux AS release 4 (Nahant)
Kernel 2.6.9-5.EL on an i686
login: flyshitou
Password:
[flyshitou@localhost ~]$ su
Password:
[root@localhost flyshitou]#
附:
Telnet服务限制
telnet以明文传送口令和数据,如果对其默认的设置不满意,可以对 其服务范围进行限制。
假设主机的IP地址是210.45.160.17,可以按以下方式设置:
#vi /etc/xinetd.d/telnet service telnet
{ .....
Disable = no #激活 telnet 服务,no
only_from = 210.45.0.0/16 #只允许 210.45.0.0 ~ 210.45.255.255 这个网段进入
only_from = .edu.cn #只有教育网才能进入!
no_access = 210.45.160.{115,116} #这两个IP地址不可登陆
access_times = 8:00-12:00 20:00-23:59 #每天只有这两个时间段开 放服务
......
}
转载时..
请注明:
转至http://blog.csdn.net/Kipen/ 作者:flyshitou(石の頭丶)
请尊重他人的劳动果实..
谢谢..
--by flyshitou (石の頭丶)