Vsftpd client prompt: Entering passive mode three solutions

  

In general, the following prompt Entering Passive mode, requires input passive mode, after the completion of the operation, found that there is still no response.

Workaround: Usually, the first one does not necessarily have an effect. Second, the third effect is significant

Method 1: Modify vsftpd.conf, add a pasv_promiscuous=YES to disable passive security detection.

Method 2: Modify the vsftpd.conf file, add: <Start in passive mode, open passive access port>

pasv_min_port=30000

pasv_max_port=30999< Br>

Then define the iptables rules:

iptables –A INPUT –p tcp ——dport 30000:30999 –j ACCEPT

iptables –A INPUT – p tcp ——dport 30000:30999 –j ACCEPT

iptables –A INPUT –p tcp ——dport 21 –j ACCEPT

Method 3: Will vsftpd The mode is changed to active mode: <start in active mode>

pasv_enable=no

Copyright © Windows knowledge All Rights Reserved