Two vsftpd servers on one network?
Two vsftpd servers on one network?
I'm configuring two vsftpd servers on the same network. The first one functions properly. The second displays: Command: TYPE I Response: 200 Switching to Binary mode. Command: PASV Response: 227 Entering Passive Mode (23,248,138,7,153,241). Command: LIST Error: Connection timed out after 20 seconds of inactivity Error: Failed to retrieve directory listing here is the config for the second server: # Example config file /etc/vsftpd.conf # The default compiled-in settings are quite cautious. This sample adjusts some parameters for better usability. Refer to vsftpd.conf.5 for complete details. # Important: This isn't a complete list. Read the vsftpd.conf.5 manual for full understanding. # Note: Enabling anonymous FTP requires caution—commenting it out disables it. # local_enable=YES # Allow anonymous users to log in. # Uncomment to permit local login. # Write_enable=YES # Default umask is 077; consider changing to 022 if needed. # Anonymous uploads are supported via local_umask=022. # This affects only if write enable is active. You'll need to set a writable directory for the user. #anon_upload_enable=YES # Allow anonymous users to create directories. # Uncomment for this feature. # Logging is enabled: dirmessage_enable=YES, xferlog_enable=YES. Port 20 is used for FTP data transfer. # Ensure connections start from port 20. You may assign ownership of uploaded files to another user if desired. #chown_uploads=YES # Log file path can be customized. #xferlog_file=/var/log/vsftpd.log # Log format can be set to standard. Adjust timeout values as needed: idle_session_timeout=600, data_connection_timeout=120. It's wise to use a non-root user for uploads unless you're certain. #Async_ABOR support is recommended but not advised for security reasons. #Disable it if you prefer to avoid potential DoS risks from ASCII mode. #Config options like async_abor, log format, and timeout can be tailored to your needs.