Hello,
I know passive mode is safe use.But some firewall can't use passive mode.
Could I change vsftpd or proftpd to active mode?Could I choose active mode or passive mode when I install or update i-MSCP in the feature?
i-MSCP should allow usage of active mode with VsFTPd/ProFTPd
-
- unreproducible
- akong7777
- Thread is marked as Resolved.
-
-
Active mode works already. You must enforce it through your FTP client (e.g Filezilla).
For instance, with VsFTPd
Code- Status: Disconnected from server
- Status: Connecting to 192.168.1.132:21...
- Status: Connection established, waiting for welcome message...
- Response: 220 Welcome to i-MSCP Ftp server
- Command: USER nuxwin@test.tld
- Response: 331 Please specify the password.
- Command: PASS ************
- Response: 230 Login successful.
- Command: OPTS UTF8 ON
- Response: 200 Always in UTF8 mode.
- Status: Connected
- Status: Retrieving directory listing...
- Command: PWD
- Response: 257 "/"
- Status: Directory listing successful
- Status: Retrieving directory listing...
- Command: TYPE I
- Response: 200 Switching to Binary mode.
- Command: PORT 192,168,1,100,181,92
- Response: 200 PORT command successful. Consider using PASV.
- Command: LIST
- Response: 150 Here comes the directory listing.
- Response: 226 Directory send OK.
- Status: Directory listing successful
As you can see here, I get Response: 200 PORT command successful. Consider using PASV. which clearly state that I'm not using passive mode but active mode.
-