I have an ftp server to which my clients connect quietly in the morning, but the afternoon the connection is refused (not all, but only one of of them), while the clients using http normally works.
In particular, it appears as if the authentication credentials are accepted but the file transfer is blocked.
Can it be possible that the client at the afternoon has available a lower band and then linux or vsftpd denies the connection?
The ftp server is passive, the configuration file is vsftpd.conf ( aaa.bbb.ccc.ddd is the server ip address) is :
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=0666
xferlog_enable=YES
xferlog_std_format=YES
idle_session_timeout=600
data_connection_timeout=120
chroot_local_user=YES
pasv_enable=YES
pasv_min_port=50000
pasv_max_port=50010
pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES
file_open_mode=0666
anon_umask=000
anon_upload_enable=YES
anon_mkdir_write_enable=NO
anon_other_write_enable=YES
guest_enable=YES
guest_username=virtual
user_config_dir=/etc/vsftpd/vsftpd_user_conf
pasv_address=aaa.bbb.ccc.ddd
pasv_addr_resolve=NO
secure_chroot_dir=/usr/share/empty
allow_writeable_chroot=YES
isolate=NO
isolate_network=NO