- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Need recommendation for good customizable FTP serv...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-07-2007 05:31 AM
тАО05-07-2007 05:31 AM
--Placing large inbound ftp files in a specific directory.
--Renaming the files to date-time-stamp names and then moving those files to other directories once the file transfer is complete.
What FTP server is recommended these days for customization? I don't see our needs taken care of with vsftp.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-07-2007 05:47 AM
тАО05-07-2007 05:47 AM
Re: Need recommendation for good customizable FTP server
wu-ftpd is very customizable btw, and most of the above can be done with the home directory of the user, though some cron scripting may be required.
the standard vsftpd for Linux can do some of what you want. Good admin scripting will have to do the rest.
Note that in their default configuration both of the above authenticate in clear text (not secure) and vsftpd permits anonymous ftp and does not chroot its users.
Going to an sftp based solution might be better. openssh is a standard component of all linuxes.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-07-2007 05:58 AM
тАО05-07-2007 05:58 AM
Re: Need recommendation for good customizable FTP server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-07-2007 06:03 AM
тАО05-07-2007 06:03 AM
Re: Need recommendation for good customizable FTP server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-07-2007 06:26 AM
тАО05-07-2007 06:26 AM
Solutionhttp://search.cpan.org/~rwmj/Net-FTPServer-1.122/lib/Net/FTPServer.pm
Being that it is written in perl it would probably be easier to hack and customize.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-07-2007 06:41 PM
тАО05-07-2007 06:41 PM
Re: Need recommendation for good customizable FTP server
if for example you would be able to add a 'site exec' command at the end of each transfer, you could let it execute a script on the ftp server that does whatever you want with that file.
from the manpage:
The SITE EXEC command may be used to execute commands in the /bin/ftp-exec directory. Take care that you understand the security implications before copying any command into the /bin/ftp-exec directory. For example, do not copy in /bin/sh. This would enable the user to execute other commands through the use of sh -c. If you have doubts about this feature, do not create the /bin/ftp-exec directory.