步骤1:检查是否安装了telnet软件包
- [root@rac1 ~]# rpm -qa|grep telnet-server
- telnet-server-0.17-31.EL4.3
步骤2:编辑 /etc/xinetd.d/telnet
- [root@rac1 ~]# vi /etc/xinetd.d/telnet
- 找到 disable = yes 将yes 改成 no
步骤3:激活服务
- [root@rac1 ~]service xinetd restart
默认情况下root是不能直接telnet到主机的,若要root能telnet可以做如下修改:
在/etc/securetty文件最后加入
pts/0
pts/1
pts/2
pts/3
- [root@rac1 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
阅读(1998) | 评论(0) | 转发(0) |