linux telnet配置实例教程

发布时间:2019-08-29编辑:脚本学堂
本文介绍了linux系统中telnet服务的配置方法,有关telnet服务的配置步骤分享,有需要的朋友参考下。

linux操作系统中配置telnet的几个步骤:

步骤1,检查是否安装了telnet软件包。
 

复制代码 代码示例:
[root@jbxue ~]# rpm -qa|grep telnet-server
telnet-server-0.17-31.EL4.3

步骤2,编辑 /etc/xinetd.d/telnet
 

复制代码 代码示例:
[root@jbxue ~]# vi /etc/xinetd.d/telnet
找到 disable = yes 将yes 改成 no

步骤3,激活服务
[root@jbxue ~]service xinetd restart
默认情况下root是不能直接telnet到主机的,若要root能telnet,需要做以下修改。
在/etc/securetty文件最后加入
 

复制代码 代码示例:
pts/0
pts/1
pts/2
pts/3
[root@jbxue etc]# more /etc/securetty
console
vc/1
vc/2
vc/3
vc/4
vc/5
vc/6
vc/7
vc/8
vc/9
vc/10
vc/11
tty1
tty2
tty3
tty4
tty5
tty6
tty7
tty8
tty9
tty10
tty11
pts/0
pts/1
pts/2
pts/3