I'm using Python 2.7 on ubuntu 11.10 distribution.
I have a problem with ftplib module and FTP_TLS connection. On my ftp server there is vsftp
When try a connection I receive this error:
ftplib.error_perm: 530 Please login with USER and PASS.
This is my code:
from ftplib import FTP_TLS
ftp = FTP_TLS( '192.168.1.5' )
ftp.login( 'user' , 'password')
ftp.close()
Anyway if I use the simple FTP connection, ftp = FTP('192.168.1.5') , it works!
But I need FTP_TLS connection. I tried also to insert param ftp.auth() and ftp.prot_p() but nothing happens.