I am trying to set up an ftp server using opensuse.
I can connect to the server, but can not get listings, put, nor get files
How must I change the set up so ftp will work?
This is what I see from a Clent PC:
$ ftp tommythegeek.com
Connected to tommythegeek.com.
220 Welcome to Tommy The Geek's FTP service.
User (tommythegeek.com:(none)): anonymous
331 Please specify the password.
Password:
230 Login successful.
ftp> ls
200 PORT command successful. Consider using PASV.
425 Failed to establish connection.
ftp> bye
This is my vsftpd.conf file:
write_enable=NO
dirmessage_enable=YES
nopriv_user=ftpsecure
ftpd_banner=Welcome to Tommy The Geek's FTP service.
deny_email_enable=YES
banned_email_file=/etc/vsftpd.banned_emails
local_enable=YES
anonymous_enable=YES
anon_root=/srv/ftp
no_anon_password=NO
anon_world_readable_only=YES
anon_umask=022
anon_upload_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES
log_ftp_protocol=YES
xferlog_enable=YES
vsftpd_log_file=/var/log/vsftpd.log
xferlog_std_format=YES
xferlog_file=/var/log/vsftpd.log
dual_log_enable=YES
ascii_upload_enable=YES
pasv_enable=YES
pam_service_name=vsftpd
listen=YES
ssl_enable=NO
rsa_cert_file=
dsa_cert_file=
pasv_min_port=30000
pasv_max_port=30100
The contents of vsftpd log for this transaction:
Tue Dec 31 15:04:07 2019 [pid 11845] CONNECT: Client "107.77.168.122"
Tue Dec 31 15:04:07 2019 [pid 11845] FTP response: Client "107.77.168.122", "220 Welcome to Tommy The Geek's FTP service."
Tue Dec 31 15:04:14 2019 [pid 11845] FTP command: Client "107.77.168.122", "USER anonymous"
Tue Dec 31 15:04:14 2019 [pid 11845] [anonymous] FTP response: Client "107.77.168.122", "331 Please specify the password."
Tue Dec 31 15:04:25 2019 [pid 11845] [anonymous] FTP command: Client "107.77.168.122", "PASS <password>"
Tue Dec 31 15:04:25 2019 [pid 11842] [ftp] OK LOGIN: Client "107.77.168.122", anon password "fred@somwhere.com"
Tue Dec 31 15:04:25 2019 [pid 11852] [ftp] FTP response: Client "107.77.168.122", "230 Login successful."
Tue Dec 31 15:04:33 2019 [pid 11852] [ftp] FTP command: Client "107.77.168.122", "PORT 107,77,168,122,166,152"
Tue Dec 31 15:04:33 2019 [pid 11852] [ftp] FTP response: Client "107.77.168.122", "200 PORT command successful. Consider using PASV."
Tue Dec 31 15:04:33 2019 [pid 11852] [ftp] FTP command: Client "107.77.168.122", "NLST"
Tue Dec 31 15:05:34 2019 [pid 11852] [ftp] FTP response: Client "107.77.168.122", "425 Failed to establish connection."
Thanks & Regards Tom Bodine