(一)安装xinetd
(四)测试连通
通过在window是运行cmd
发现telnet用普通帐号可以登录,root不能登录
ftp和telnet都是挂在xinetd服务下面,先要看看xinetd有没有安装,默认是没有安装的。
# rpm -qa | grep xinetd
若没有安装则执行
#rpm -Uvh xinetd-2.3.14-10.el5.i386.rpm
(二)查看服务状态
#service xinetd status
若未开启则开启
#service xinetd start
(三)修改配置
将 disable = yes 修改为 disable = no,然后重启xinetd服务
[root@localhost etc]# cd /etc/xinetd.d
[root@localhost xinetd.d]# vi krb5-telnet
# default: off
# description: The kerberized telnet server accepts normal telnet sessions, \
# but can also use Kerberos 5 authentication.
service telnet
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/kerberos/sbin/telnetd
log_on_failure += USERID
disable = no
}
[root@localhost xinetd.d]# service xinetd restart
停止 xinetd: [确定]
启动 xinetd: [确定]
(四)测试连通
通过在window是运行cmd
发现telnet用普通帐号可以登录,root不能登录
修改配置文件security如下,增加如下内容,即可实现root通过Telnet链接,但是不安全,不推荐
pts/0
pts/1
pts/2
pts/3
pts/4