- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Passive mode FTP
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
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
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
тАО04-14-2003 09:43 AM
тАО04-14-2003 09:43 AM
Passive mode FTP
We just upgraded a server from Linux Red Hat to Mandrake and FTP no longer performs the same.
Originally, a connection was established and the you had to issue the PASSIVE command to continue.
Now, we receive message "passive mode off" after the PASSIVE command is issued.
Am I missing a configuration file or something? If so, I'd appreciate to know which one and the syntax to set it.
I couln't find anything in the man pages.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-14-2003 09:55 AM
тАО04-14-2003 09:55 AM
Re: Passive mode FTP
Details would depend on the FTP daemon that you're using.
G.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-15-2003 02:03 AM
тАО04-15-2003 02:03 AM
Re: Passive mode FTP
If wu-ftpd, your /etc/ftpaccess should contain sth like
passive address 10.0.0.1 0.0.0.0/0 # this *IS* required for passive
passive ports 0.0.0.0/0 1024 65535 # to see if it made a difference
pasv-allow all *.mybox.com
port-allow all *.mybox.com
But best would be to let active mode on... depends on your version !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-15-2003 06:48 PM
тАО04-15-2003 06:48 PM
Re: Passive mode FTP
"Originally, a connection was established and the you had to issue the PASSIVE command to continue.
Now, we receive message "passive mode off" after the PASSIVE command is issued"
That means your FTP server is running in PASSIVE mode by default . So if you giva PASV command it toggles the passive mode to off state.
So instruct the users not to give the pasv command. and use ftp server just like that.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2003 07:31 AM
тАО04-29-2003 07:31 AM
Re: Passive mode FTP
I finally opted to remove passive commands from my command files due to time restrictions but found the following:
The /etc files for ftp
# find . -name '*ftp*' -exec ls -l {} \;
./xinetd.d/wu-ftpd
./pam.d/ftp
./ftpaccess
./ftpconversions
./ftpgroups
./ftphosts
./ftpusers
./lftp.conf
./xinetd.d/wu-ftpd contains
server = /usr/sbin/in.ftp server_args = -l -a
/etc/ftpaccess has no "passive" related command bu /etc/lftp.conf contains
set ftp:passive-mode on
NOW I'm encountering another problem / difference.
When I ftp TO the server everything is (looks) OK.
When I ftp FROM the server I keep getting the following in my logs:
'AUTH GSSAPI': command not understood
'AUTH KERBEROS_V4': command not understood
KERBEROS_V4 rejected as an authentication type
Some applications look for empty logs (ie no error) to proceed.
How can I configure FTP to eliminate those messages?
Thanks again and sorry for the delay in answering
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2003 10:28 AM
тАО04-29-2003 10:28 AM
Re: Passive mode FTP
Check in /etc/pam.d/ftp for something like:
auth optional /lib/security/pam_krb5.so
and comment it out.