1、确定你的telnet服务打开没有:
[root@111~]#chkconfig--list|greptelnet
ekrb5-telnet:off
krb5-telnet:off
[root@111~]#
注意检查结果这里是关闭状态
2、打开telnet服务:
[root@111~]#chkconfigkrb5-telneton
[root@111~]#chkconfig--list|greptelnet
ekrb5-telnet:offv
krb5-telnet:on
[root@111~]#
检查已经被打开了
3、修改登陆文件securetty,主要增加要登陆的终端点
[root@111~]#vi/etc/securetty
增加如下几行:
pts/1
pts/2
pts/3
pts/4
pts/5
保存退出即可。
如果是chkconfigkrb5-telneton
会提示Unencryptedconnectionrefused.Goodbye.Connectionclosedbyforeignhost.看错误信息好像是说的为加密的连接被拒绝,查看了他的配置文件也没发现有什么关于加密的选项,而且配置文件也很正确,于是到google上去搜索了一大圈,最后终于找到一个老外写的一个解决方法:
Ireallyneededabitofguidanceandyouprovidedit./sbin/chkconfig--list|greptelnetTheabovecommandtoldmeIhadbothkrb5-telnetandekrb5-telnet,andalsotheinstalledtelnetallon.InitiallyIdidnotknowwhattheywereallfor.AfterturningthemonandoffandtestingmytelnetconnectionfromanotherboxIrealisedthat"ekrb5-telnet"wastheencryptedtelnetserverthatIneededtoturnofftorun"krb-telnet"whichallowednon-encryptedtelnetconnections.eg/sbin/chkconfigekrb5-telnetoffThanksforyourhelp.
原来ekrb5-telnet是一个需要加密的telnet服务,把这个服务启动上当然就需要加密了。解决方法:将/etc/xinetd.d/ekrb5-telnet里面的disable改成=yes,再重启xinetd服务servicexinetdrestart就OK了!