computing
  • 0

Solved Vsftpd :500 Illegal PORT command Error

  • 0

Hi,
I have installed vsftpd on ubuntu. When i use ‘ls’ command.
I getting this error
500 Illegal PORT command Error ftp: bind: Address already in use.

please any1 give suggestion.help me pls

Share

1 Answer

  1. Open /etc/vsftpd.conf, search for pasv_enable and set it to yes.
    Set the value for pasv_min_port, e.g. 7000.
    Set the value for pasv_max_port to 7100.

    restart the vsftpd service.

    If you’ve configured port forwarding in the routers setup, make sure, that ports 7000-7100 are forwarded to your ftp servers local ip address.

    • 0