【原创】远程管理linux系统---telnet服务

 //首先检查下系统是否已经安装过telnet软件包
[root@localhost ~]# rpm -qa |grep telnet
telnet-0.17-30

//从上步得知系统只有安装了telnet客户端程序
我们可以从linux安装盘或从网上下载telnet-server服务器端程序
接下来安装该软件包

[root@localhost ~]# rpm -ivh telnet-server-0.17-30.i386.rpm
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..

[root@localhost ~]# vi /etc/xinetd.d/telnet
# 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)激活服务

[root@localhost ~]# service xinetd restart
åœæ­¢ xinetd:                                            [  ç¡®å®š  ]
å¯åŠ¨ xinetd:                                            [  ç¡®å®š  ]

//我们在windows2000下测试linux的telnet服务

Microsoft Windows 2000 [Version 5.00.2195]
(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 ~]# useradd flyshitou
[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.

 

Microsoft Windows 2000 [Version 5.00.2195]
(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 #每天只有这两个时间段开 放服务
......
}

 

ps:此帖绝对是本人原创...

转载时..
请注明:
转至http://blog.csdn.net/Kipen/   作者:flyshitou(石の頭丶)
请尊重他人的劳动果实..
谢谢..

 --by flyshitou (石の頭丶)

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值