当前位置:Linux教程 - 网络安全 - 网络安全 - 开设只允许FTP的帐户

网络安全 - 开设只允许FTP的帐户

开设只允许FTP的帐户
2004-04-23 15:18 pm
来自:Linux文档
现载:Www.8s8s.coM
地址:无名

==================================================
[root@echo]#mkdir /home/ftpuser
[root@echo]#useradd -d /home/ftpuser/echo/ -s /dev/null echo > /dev/null 2>&1
[root@echo]#passwd echo
Changing password for user echo
New UNIX password:
Retype new UNIX password:
passwd:all authentication tokens updated successfully
[root@echo]#vi /etc/shells
/bin/sh
/bin/ash
/bin/tcsh
/bin/csh
/dev/null //新加入的伪shell,对应echo的shell

[root@echo]#vi /etc/passwd
修改
echo:x:501:501::/home/ftpuser/:/dev/null

echo:x:501:501::/home/ftpuser/./:/dev/null

==================================================
这样echo只能用ftp登录,而不能用telnet