- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Is vsftp reply messages are configurable?
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
тАО07-01-2008 07:16 PM
тАО07-01-2008 07:16 PM
I would like to seek help from Linux expert here if vsftp reply messages are configurable.
Our applications developer would like to request if its possible that when doing ftp, instead of the message
"150 Ok to send data.
226 File receive OK."
Theire applications want to see
"226 Transfer complete"
As a confirmation message.
Please advice if this is configurable on vsftp.
Message transfer complete is seen in wuftpd.
If not, is there any wu-ftpd version that will support Red Hat Enterprise Linux AS release 4 (Nahant Update 6)?
Thanks in advance!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2008 05:34 AM
тАО07-02-2008 05:34 AM
Re: Is vsftp reply messages are configurable?
A rather esoteric request.
Probably possible.
http://www.debianhelp.co.uk/vsftpd.htm
http://www.linux.ie/pipermail/ilug/2006-June/088554.html
http://fedora.co.in/2007/09/08/vsftpd-very-secure-ftp-server-configuration-howto/
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
тАО07-02-2008 12:08 PM
тАО07-02-2008 12:08 PM
SolutionAfter that look into file postlogin.c for entry:
vsf_cmdio_write(p_sess, FTP_TRANSFEROK, "File receive OK.");
replace it and re-compile the package.
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2008 02:17 PM
тАО07-02-2008 02:17 PM
Re: Is vsftp reply messages are configurable?
A quote from RFC959, the Internet standards document that defines the FTP protocol:
----------------
4.2 FTP REPLIES
[...]
An FTP reply consists of a three digit number (transmitted as three alphanumeric characters) followed by some text. The number is intended for use by automata to determine what state to enter next; the text is intended for the human user. It is intended that the three digits contain enough encoded information that the user-process (the User-PI) will not need to examine the text and may either discard it or pass it on to the user, as appropriate.
In particular, the text may be server-dependent, so there are likely to be varying texts for each reply code.
[...]
-------------------
In other words, the application SHOULD examine only the three digits at the beginning of the server's reply to determine what to do. The text part of the reply may have different wording, or it might be written in French, Chinese or Elvish, and it would still be a valid FTP reply.
The RFC959 document is available for free in various RFC archives in the Internet. Your developer should definitely read it.
http://www.w3.org/Protocols/rfc959/
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-04-2008 09:12 PM
тАО07-04-2008 09:12 PM