FTP problem
FTP problem
I have a problem with connecting to FTP
Here is a log from the FTP client:
/etc/vsftpd/vsftpd.conf:
Someone can help me?
Here is a log from the FTP client:
Code: Select all
[R] Connecting to 195.19. *. * -> IP = 195.19. *. * PORT = 21
[R] Connected to 195.19. *. *
[R] 220 (vsFTPd 2.2.2)
[R] USER admin_ ******
[R] 331 Please specify the password.
[R] PASS (hidden)
[R] 230 Login successful.
[R] SYST
[R] 215 UNIX Type: L8
[R] FEAT
[R] 211 -Features:
[R] EPRT
[R] EPSV
[R] MDTM
[R] PASV
[R] REST STREAM
[R] SIZE
[R] TVFS
[R] UTF8
[R] 211 End
[R] PWD
[R] 257 "/"
[R] CWD /
[R] 250 Directory successfully changed.
[R] PWD
[R] 257 "/"
[R] TYPE A
[R] 200 Switching to ASCII mode.
[R] PASV
[R] 500 OOPS: invalid pasv_address
[R] List Error
[R] PASV mode failed, trying PORT mode.
[R] Listening on PORT: 64520 , Waiting for connection.
[R] PORT 10,0,0,20,252,8
[R] 500 OOPS: priv_sock_get_cmd
[R] Connection lost: 195.19. *. * (Duration: 17 seconds)
[R] List Error
[R] Connecting to 195.19. * .* -> IP = 195.19.*.* PORT = 21
[R] Connected to 195.19.*.*
[R] 220 (vsFTPd 2.2.2)
[R] USER admin_avrora
[R] 331 Please specify the password.
[R] PASS (hidden)
[R] Connection failed
[R] Connection failed
Code: Select all
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=002
anon_upload_enable=NO
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_std_format=YES
chroot_local_user=YES
listen=YES
pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES
force_dot_files=YES
ascii_upload_enable=YES
ascii_download_enable=YES
pasv_enable=YES
pasv_max_port=12100
pasv_min_port=12000
pasv_address='195.19.*.*'
Re: FTP problem
It looks like pasv_address option doesn't work properly. Try to comment it out and restart vsftpd.
Re: FTP problem
Yes, you right ;) that's resolve a problem
Thx you man ;)
Thx you man ;)
Re: FTP problem
Thanks a lot.. That saved my timeskid wrote:It looks like pasv_address option doesn't work properly. Try to comment it out and restart vsftpd.
Re: FTP problem
Closed.