-
Notifications
You must be signed in to change notification settings - Fork 83
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
FTPS (FTP over SSL) support #30
Comments
It should support FTPS already.. isn't it? |
Ah that's great if it does. I hadn't seen any reference to FTPS (FTP over SSL) in the readme, version history or GitHub issues. Only SFTP (Secure File Transfer Protocol) seems to be mentioned (and supported). I don't have the ability to test it myself just yet so I thought I'd ask the question. Also thanks for the quick response! |
AFAIK the library I use for FTP supports FTPS without any problems as this |
Ftps doesn't work here, sorry. |
@KooiRUG, can you show me your config (without sensitive data)? |
@lukasz-wronski yep, here it is:
And this is how it shows up in my ftp-server:
In other words, no tls-attempt is made (no |
@KooiRUG: Is this a correct port for FTPS connection? Shouldn't you use port 990? |
@lukasz-wronski Port 21 will do (explicit over SSL/TLS shares its port with the regular ftp-port), port 990 is for an implicit connection. Tried that too, but using port 990, we're not going beyond:
To be sure implicit connections work @ my server, I connected using another application:
|
In modules/ftp-config.js .getSyncConfig doesn't return any 'secure' option. So node-ftp always use the default false value.
|
Is there any solution? My provider only allows FTP over TLS... |
Hello there, I also confirm that cannot use FTP over SSL |
Hey guys, created a pull request in order to enable the support (successfully tested it also). |
Is there any chance of this being added to the next release? |
I'm interested in using this also. I have been using Filezilla but attempting to streamline my dev process currently and I liked this ftp plugin for vscode better than the other one :-) |
Any progress on this? We are forced to use FTPS on our server. |
This is now resolved and #62 is merged into master. |
"port": 21, |
+1 |
Are there any plans to support FTPS (FTP over SSL) connections?
The text was updated successfully, but these errors were encountered: