1753767 Members
5575 Online
108799 Solutions
New Discussion юеВ

Re: FTP Advice

 
Michael Williams_6
Trusted Contributor

FTP Advice

Hello again!!

I'd like to open up FTP on a Linux system (against my wishes, but hey). I'd like the following objectives to be met:

Only 6 out of 150 NIS users are to be allowed in.
The when logged in, the / directory must be a specified location on the system.
I'd like to use something that comes with the system.

I've had a look at the vsftpd man-page, and while I can specify the users who login, the chroot commands appear to be restricted to the users' home directory, where I do not want the chroot to be.

Does anyone know if I can specifiy the chroot location? Or are there any better ftp daemons for my request? If I can find one that doesn't use inetd, then that's a bonus!

Mike
6 REPLIES 6
Michael_356
Frequent Advisor

Re: FTP Advice

Hi there,

maybe it is better to use a ftpuser
with the homedir set to "/"
In use with sftp which comes with ssh you can control access via known-host-keys

Regards

Michael
David Child_1
Honored Contributor

Re: FTP Advice

Check if you have WU-FTPD installed on the system. If so check into using the ftpaccess file. You can specify which logins, where they can upload to, download to, ownership/permissions of files once they are uploaded, etc.
Steven E. Protter
Exalted Contributor

Re: FTP Advice

vsfptd has its own deamon, being removed from the inetd or xinetd daemon.

All of the configuration you need to do is within its own conf file.

vsfptd is what red hat acutally uses and it scales up quite nicely.

See these documents for more information:
http://www.redhat.com/docs/manuals/enterprise/RHEL-3-Manual/ref-guide/s1-ftp-vsftpd-conf.html

http://www.linuxquestions.org/questions/history/215961

http://www.google.com/search?hl=en&ie=UTF-8&q=vsftpd+configuration&btnG=Google+Search

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Manuel Wolfshant
Trusted Contributor

Re: FTP Advice

Looks to me that you want to have one home dir for the users when they login by standard methods, but a root dir different of the homedir if they login by ftp.
If this indeed your situation, than you should not use real system users, but virtual ftp users, which could of course have different settings. Or in other words, just use a different passwd file for ftp authentication then for system auth.

Alternate ftp servers which are powerfull, secure and configurable , able to run standalone: pure-ftpd and proftpd. By all means, avoid wu-ftpd. It's surname is 'providing root since 1988'. Guess why.
Michael Williams_6
Trusted Contributor

Re: FTP Advice

Oh well, I'd like to use wu-ftpd, but it's too much hassle going through change control procedures!

I ended up using vsftpd with a generic ftp user to achieve what I required.

Thanks for you help guys!
Michael Williams_6
Trusted Contributor

Re: FTP Advice

.