Skip to content
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

Can not use FTP over TLS (Explicit) #84

Open
georgertl opened this issue Sep 3, 2020 · 12 comments
Open

Can not use FTP over TLS (Explicit) #84

georgertl opened this issue Sep 3, 2020 · 12 comments

Comments

@georgertl
Copy link

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

@subfighter3
Copy link

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
Copy link

Same

@Igor3007
Copy link

Igor3007 commented Jun 1, 2022

same

@jluisfa
Copy link

jluisfa commented Jun 15, 2022

Try add "secure": true

"scheme": "ftp",
"host": "ftp.hostname.com",
"port": 21,
"secure": true,
"username": "username",
"password": "password",
"rootPath": "/"

@AndersenWebworks
Copy link

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

@paulthepen
Copy link

Any updates?

@jluisfa
Copy link

jluisfa commented Mar 2, 2023

Try this:

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

@BluewaterSolutions
Copy link

BluewaterSolutions commented Mar 6, 2023

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
Copy link

jluisfa commented Mar 6, 2023

Change protocol to:
"protocol": "ftps"

@BluewaterSolutions
Copy link

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

@carlitoselmago
Copy link

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
Copy link

jluisfa commented Jun 20, 2023

My current configuration:

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

9 participants