Having an error with my FTP server. It's been placed behind an HAProxy server that does communicate with the FTP properly.
Filezilla spits out:
Response: 257 "/" is the current directory.
Command: TYPE I
Response: 200 Type set to: Binary.
Command: PASV
Error: Could not read from socket: ECONNRESET - Connection reset by peer
Error: Disconnected from server
Error: Failed to retrieve directory listing
My HAProxy looks like:
frontend ftp
bind *:21
mode tcp
default_backend ftp-pool
backend test
balance roundrobin
mode tcp
server ftp-1 IP_ADDRESS:21 check
backend ftp-pool
server ftp-1 IP_ADDRESS check port 21 inter 10s rise 1 fall 2
# Individual backends
backend ftp-1
server ftp-1 IP_ADDRESS check port 21 inter 10s rise 1 fall 2
As far as I've been able to find adding handler.passive_ports = range(10001, 10250)
to my pyftpdlib server should enable passive mode.