FTPS or "File Transfer Protocol secure" is a protocol used to transfer data such as files over an encrypted and secure link.
Questions tagged [ftps]
57 questions
51
votes
3 answers
FTPS versus SFTP versus SCP
I would like to know exactly what the difference is between the following protocols:
FTPS, SFTP, and SCP. For instance Unix has an scp tool, FileZilla offers FTP and SFTP,
whereas JetBrains PhpStorm offers distinct SFTP and FTPS protocols.
Thanks…
John Sonderson
- 3,746
32
votes
6 answers
Simple command to connect to FTPS server on Linux command line
I have an FTP and FTPS server where I can connect to easily with FileZilla. I'm looking for a linux CLI method. I thought lftp does it, but it seems weird. Is there another way?
Here is the method I found on Google to connect to my FTPS with lftp.…
user240137
- 421
11
votes
5 answers
Save certificate to use with lftp
How can I save a certificate for use with lftp?
The certificate in question is not accepted by lftp when downloaded from the server. I tried
openssl s_client -connect {HOSTNAME}:21 -showcerts
from How to save a remote server SSL certificate…
Greg C
- 316
7
votes
5 answers
Which is better? SFTP or FTPS
I've heard it from some sources that SFTP is preferable to FTPS. If this is the case, I'm wondering why exactly.
Jegschemesch
- 171
7
votes
4 answers
trust server certificate with lftp
When connecting to a server with lftp, I have the following issue:
Certificate verification: Not trusted: no issuer was found (AA:AA:AA:[...]:AA:AA)
Which indicates at least that the cert verification failed. I would like to whitelist that…
MayeulC
- 235
7
votes
5 answers
Command line FTPS?
I need to write a batch file to auto upload a backup every day. I'm restricted to Windows. Is there free software to do this?
I was looking at FileZilla, but the command line interface doesn't let you auto upload files, and I need to buy a license…
6
votes
1 answer
Unable to connect to FTP server using Filezilla with router in-between
While connecting to my web server using filezilla, i am getting this error:
Status: Resolving address of ftp.mysite.org.in
Status: Connecting to 199.199.199.18:21...
Status: Connection established, waiting for welcome message...
Response: …
haywire
- 294
5
votes
4 answers
FTP error 425 failed to establish connection
Getting "ftp error 425 failed to establish connection" when trying to connect to ftp server.
Tried 2 ftp clients on 3 machines on same network and none work. However FTP works from home / mobile broadband.
No ip blocks on ftp sever.
Other ftp…
cKK
- 61
5
votes
1 answer
How does an FTP client set file permissions on server?
I'm currently having to use a very limited FTP client/adapter to upload some files to a remote server. I say limited, because the resulting files end up on the remote server with permissions 000 and there appears to be no way to configure what the…
Scott Oliver
- 183
4
votes
3 answers
How do I connect to a ftp/sftp site?
I need to provide an url to a third party company so that they can log in and download the file. The problem is that I don't know the url for my ftp/sftp site due to my very limited knowledge in ftp. I only know the way to connect to the ftp/sftp…
Superman Coding
- 51
- 1
- 1
- 2
4
votes
1 answer
FileZilla Server refusing connection - 425 error
I've looked at some other questions (for example, this one) but haven't found an answer there. Here's the issue:
I'm running FileZilla Server (0.9.60) on a server on our network. We have an external server trying to connect by FTPS. The connection…
Matt Gutting
- 43
4
votes
1 answer
Can't connect to new FTP server
I know there are lots of post out there on this but I feel like I've tried everything. I've worked with my IT staff and we're all stumped. So here is all of the possibly useful information I can think of:
There was an FTP server in our datacenter…
Supergibbs
- 153
3
votes
1 answer
Which port must I unblock in firewall for FTPS using WinScp to evade Timeout?
I'm suing FTPS in WinScp for sending data to my Synology diskstation. When I'm doing it inside a private network using port 21 for connection everything works fine. But when I'm trying the same thing over the internet, I get a connection error once…
Tim
- 1,100
3
votes
1 answer
How do I obtain a trusted, signed, client certificate for use with an FTPS site in IIS and tied to a Windows user?
I've been asked by a third party to setup an FTPS site for them to connect to.
I am doing this on IIS 10.
It is required that the third-party client uses a client certificate which is tied to the FTP user.
I have tested this and got everything to…
3
votes
1 answer
File transfer with vsftpd does not work with TLS, but does work with unencrypted connection
I have an Ubuntu server at home.
I access it from outside my network via NAT redirections. I use the port 3876 to connect to the FTP, and this port is redirected by the router to the IP of the server and the port 21.
I opened the Ubuntu firewall…
user1082293