Redhat系统上开启Telnet服务

时间:2022-01-05 15:59:04

https://blog.csdn.net/wolfofsiberian/article/details/51635952

1.操作系统 Redhat

Step1:修改配置文件/etc/xinetd.d/telnet 中配置项disable为no。(系统安装的默认值一般是yes)

disable         = no

Step2:通常情况下,linux考虑到安全问题,不但telnet服务是关闭的,而且也不允许使用root用户进行telnet操作。

因此需要修改/etc/securetty  ,在后面添加pts0...pts(n-1)(加一个pts0表示允许一个root telnet登录,加到pts(n-1)表示允许n个root telnet登录)

pts/0
pts/1
pts/2
pts/3
pts/4
pts/5

Step3:配置文件都修改好后,接着就是重启相关的服务。执行命令:service xinetd restart