1) 启动inetd
编辑 /etc/rc.conf
inetd_enable="YES"
2) 开启telnet
编辑 /etc/inetd.conf
把
#telnet stream tcp nowait root /usr/libexec/telnetd telnetd
#telnet stream tcp6 nowait root /usr/libexec/telnetd telnetd (这个是tcp6协议的)
前面的#去掉
kill -HUP `cat /var/run/inetd.pid`
把inetd重启一下,就可以了。(只要输入inetd)
3)让root可以登陆telnet
编辑 /etc/pam.d/login
account requisite pam_securetty.so
把这行注释掉
4)开启ftp
编辑 /etc/inetd.conf
#ftp stream tcp nowait root /usr/libexec/ftpd ftpd -l
#ftp stream tcp6 nowait root /usr/libexec/ftpd ftpd -l
去掉前面的注释
5)让root登陆ftp
编辑 /etc/ftpusers
注释掉root
6)dmesg
dispaly the system message buffer
posted on 2006-06-23 00:15
含笑半步癫 阅读(254)
评论(0) 编辑 收藏 引用 所属分类:
unix/linux