liximomo / vscode-remote-fs

Working with any file in everywhere with vscode.
MIT License
166 stars 17 forks source link

Can not use FTP over TLS (Explicit) #84

Open georgertl opened 3 years ago

georgertl commented 3 years ago

I can not use FTP over TLS (Explicit)! Is there any possibility? Thank you

subfighter3 commented 3 years ago

Hi there, same problem here.

How can I set remote-fs to connect to an FTP with TLS? The server bans my IP address when I try to connect with Remote FS..

thank you

wokalek-work commented 2 years ago

Same

Igor3007 commented 2 years ago

same

jluisfa commented 2 years ago

Try add "secure": true

"scheme": "ftp",
"host": "ftp.hostname.com",
"port": 21,
"secure": true,
"username": "username",
"password": "password",
"rootPath": "/"
AndersenWebworks commented 1 year ago

I'm having the same problem and sadly adding secure does nothing. Still getting "550 SSL/TLS required on the control channel"

paulthepen commented 1 year ago

Any updates?

jluisfa commented 1 year ago

Try this:

"scheme": "ftp",
"host": "ftp.hostname.com",
"port": 21,
"secure": true,
"protocol": "ftpes",
"secureOptions": {"rejectUnauthorized": false},
"username": "username",
"password": "password",
"rootPath": "/"
BluewaterSolutions commented 1 year ago

I tried "scheme": "ftp", "host": "ftp.hostname.com", "port": 21, "secure": true, "protocol": "ftpes", "secureOptions": {"rejectUnauthorized": false}, "username": "username", "password": "password", "rootPath": "/"` and it's telling me to "503 Use AUTH first" any tips?

jluisfa commented 1 year ago

Change protocol to: "protocol": "ftps"

BluewaterSolutions commented 1 year ago

I changed protocol to ftps and it's still throwing the 503 Use Auth first error message.

carlitoselmago commented 1 year ago

I tried "scheme": "ftp", "host": "ftp.hostname.com", "port": 21, "secure": true, "protocol": "ftpes", "secureOptions": {"rejectUnauthorized": false}, "username": "username", "password": "password", "rootPath": "/"` and it's telling me to "503 Use AUTH first" any tips?

This worked for me

jluisfa commented 1 year ago

My current configuration:

"scheme": "sftp",
"host": "ftp.hostname.com",
"username": "name",
"password": "pass",
"rootPath": "/",
"port": 21,
"connectTimeout": 10000