This is a discussion on allow only ftp login? within the Linux Networking forums, part of the Linux Forums category; I want to set up that FOO (user id) is only allowed ftp login. How can I configure? -- =================================== What I ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I want to set up that FOO (user id) is only allowed ftp login.
How can I configure? -- =================================== What I believe is what I can do. Choonho Son @ Progamming Language Lab. KAIST http://opal.kaist.ac.kr |
|
|||
|
On Fri, 02 Jul 2004 23:27:45 +0900, Choonho Son wrote:
> I want to set up that FOO (user id) is only allowed ftp login. > How can I configure? I supose you could create the accounts without access to a shell by using "/bin/false" or you could go for an ftp server such as glftpd (www.glftpd.com) wich will not even require unix accounts. Ed. |
|
|||
|
You might try wuftpd which comes with almost all the distros, where
you have to assign /bin/noaccess shell to that account. Then write a nullshell script. #!/bin/sh echo "This is for ftp only" and please add /bin/noaccess in /etc/shells ... hth raqueeb hassan bangladesh |