-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does aioftp support FTPES (FTP server over explicit TLS/SSL) #93
Comments
|
Interesting, not working for me :( not sure what is wrong or different in my server. It works when using fptlib and the FTP_TLS
|
explicit mode is not implemented, see #37 |
Oh, my bad. I misread "explicit". Only implicit mode supported right now. @rsichny, thanks! |
Thanks @pohmelie and @rsichny will find a workaround then |
Further discussion in #37 |
from ftplib import FTP_TLS
Using ftplib I was able to connect to my FTP server over explicit TLS/SSL in Python, I have not found a way to asynchronously download files using the aioftp library and FTPS. Does it only support plain FTP? If it supports FTPES would you please provide an example?
Update
I noticed that this feature was added #81
Does the same example in the README work? or are there any additional steps to connect to the FTP over explicit TLS/SSL ?
I'm getting the following error:
line 689, in do_handshake
ssl.SSLError: [SSL: UNKNOWN_PROTOCOL] unknown protocol (_ssl.c:847)
Thanks for this library :)
The text was updated successfully, but these errors were encountered: