Chinaunix首页 | 论坛 | 博客
  • 博客访问: 129013
  • 博文数量: 30
  • 博客积分: 2090
  • 博客等级: 大尉
  • 技术积分: 301
  • 用 户 组: 普通用户
  • 注册时间: 2007-07-27 09:11
文章分类

全部博文(30)

文章存档

2011年(2)

2010年(2)

2009年(5)

2008年(21)

我的朋友

分类: LINUX

2008-05-15 18:26:17

1、修改/etc/pam.d/login文件,将第二行注释掉。
suselinux:/etc/pam.d # more login
#%PAM-1.0
auth     requisite      pam_unix2.so            nullok #set_secrpc
#auth    required       pam_securetty.so
auth     required       pam_nologin.so
#auth    required       pam_homecheck.so
auth     required       pam_env.so
auth     required       pam_mail.so
account  required       pam_unix2.so
password required       pam_pwcheck.so          nullok
password required       pam_unix2.so            nullok use_first_pass use_authtok
session  required       pam_unix2.so            none # debug or trace
session  required       pam_limits.so
2、修改/etc/xinetd.d/telnet配置文件 。
suselinux:/etc/xinetd.d # more telnet
# default: off
# description: Telnet is the old login server which is INSECURE and should \
#        therefore not be used. Use secure shell (op
#        If you need telnetd not to "keep-alives" (e.g. if it runs over a
#        uplink), add "-n".  See 'man telnetd' for more d
service telnet
{
        disable         = yes
        socket_type     = stream
        protocol        = tcp
        wait            = no
        user            = root
        server          = /usr/sbin/in.telnetd
}
suselinux:/etc/xinetd.d #
将蓝色部分的yes改为no即可。
3、重启xinetd守候进程。
suselinux:~ # /etc/init.d/xinetd restart
Shutting down xinetd:                                                      done
Starting INET services. (xinetd)                                           done
suselinux:~ #
4、检查telnet服务当前状态。
suselinux:~ # chkconfig -l telnet
xinetd based services:
        telnet:             on
suselinux:~ #
5、结束。
 
 
阅读(5225) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~