Questions tagged [ftps]

An extension to the commonly used File Transfer Protocol (FTP) that adds support for the Transport Layer Security (TLS) and the Secure Sockets Layer (SSL) cryptographic protocols.

FTPS (also known as FTP-ES, FTP-SSL and FTP Secure) is an extension to the commonly used File Transfer Protocol (FTP) that adds support for the Transport Layer Security (TLS) and the Secure Sockets Layer (SSL) cryptographic protocols.

FTPS should not be confused with the SSH File Transfer Protocol (SFTP), an incompatible secure file transfer subsystem for the Secure Shell (SSH) protocol. It is also different from Secure FTP, the practice of tunneling FTP through an SSH connection. For SFTP, see the corresponding tag .

545 questions
36
votes
7 answers

Python FTP implicit TLS connection issue

I have a need to connect to FTPS server to which I am able to connect successfully using lftp. However, when I try with Python ftplib.FTP_TLS, it times out, the stack trace shows that it is waiting for the server to send welcome message or like.…
Rg Glpj
  • 423
  • 2
  • 5
  • 10
32
votes
3 answers

Best Method to SFTP or FTPS Files via SSIS

This question originally asked which is the best method for uploading files via SFTP or FTPS in SSIS. It now just lists the pros and cons of each solution. I personally use CozyRoc's SFTP library these days, but I've used each of the below…
Registered User
  • 8,357
  • 8
  • 49
  • 65
30
votes
6 answers

Does .NET FtpWebRequest Support both Implicit (FTPS) and explicit (FTPES)?

I am being asked to support implicit and explicit FTPS (also known as FTPES). We are currently using the .NET FtpWebRequest. Does the FtpWebRequest support both types of FTPES, and what is the difference? Thanks
PortageMonkey
  • 2,675
  • 1
  • 27
  • 32
27
votes
9 answers

What's the best way to automate secure FTP in PowerShell?

I'd like to automate the FTP download of a database backup file using PowerShell. The file name includes the date so I can't just run the same FTP script every day. Is there a clean way to do this built into PowerShell or using the .NET…
Eric Ness
  • 10,119
  • 15
  • 48
  • 51
26
votes
4 answers

How to connect to FTPS server with data connection using same TLS session?

Environment: I'm using Sun Java JDK 1.8.0_60 on 64-bit Windows 7, using Spring Integration 4.1.6 (which internally appears to use Apache Commons Net 3.3 for FTPS access). I'm attempting to integrate with our application an automatic download from…
user65839
21
votes
2 answers

Send and receive files from FTP in Spring Boot

I'm new to Spring Framework and, indeed, I'm learning and using Spring Boot. Recently, in the app I'm developing, I made Quartz Scheduler work, and now I want to make Spring Integration work there: FTP connection to a server to write and read files…
joninx
  • 1,775
  • 6
  • 31
  • 59
19
votes
2 answers

Transfer files over FTPS (SSL/TLS) using C#.Net

I'm writing an application that syncs files over an FTP site. Right now it's working by connecting through regular FTP, but now our IT guys want to set this up over a secure FTPS connection. They provided me with a *.cr_ certificate file. If I open…
Eric Anastas
  • 21,675
  • 38
  • 142
  • 236
18
votes
2 answers

FTPS with Python ftplib - Session reuse required

So, I am trying to connect to an FTP server to get directory listings and download files. But the first command after the prot_p() function is raising an exception - Producing these errors from the log: *get* '150 Here comes the directory…
slat
  • 306
  • 1
  • 3
  • 5
15
votes
2 answers

Does EventMachine issue close_notify on close_connection if tls_start was run?

I am trying to program a simple FTPS server based on EventMachine. Control socket works properly. When using data socket for data transfer, it seems that everything works well (TLS handshake completes successfully and data is received), but then I…
Pavel K.
  • 6,697
  • 8
  • 49
  • 80
14
votes
1 answer

Is "SFTP" and "FTP over SSL" a same thing?

I need to write a program to send some files to an SFTP server. I googled, but found there is similar thing called "FTP over SSL". Are they the same?
Freewind
  • 193,756
  • 157
  • 432
  • 708
14
votes
3 answers

ftp_ssl_connect with implicit ftp over tls

Can ftp_ssl_connect handle Implicit FTP over TLS? By default it uses explicit. I'm trying to upload to a server that accepts only Implicit ftp over tls on port 990; has anybody run into this as of yet? How did you fix it?
Rasiel
  • 2,823
  • 6
  • 31
  • 37
13
votes
1 answer

cURL - Use cURL to ftp files and keep the original timestamp of file

I am using curl to download some files from a FTPS site. When i download the files from site to my machine the zip files date changes to the download time and date. I want to keep the original timestamp that is on the FTPS server. Please advise how…
arthur
  • 131
  • 1
  • 1
  • 3
12
votes
1 answer

How to connect to FTP over TLS/SSL (FTPS) server in Java

I'm stuck in connecting to FTP over TLS/SSL (FTPS) server. I am using SimpleFTP library through am able to connect FTP server without SSL but could not connect FTPS. It is giving me this error at line 2 (ftp.connect), SimpleFTP received an unknown…
Abdul Rafay
  • 266
  • 1
  • 2
  • 15
12
votes
5 answers

SSH host key fingerprint does not match pattern C# WinSCP

I am trying to connect to an FTPS server using C# via WinSCP and I am getting this error: SSH host key fingerprint ... does not match pattern ... After tons of research, I believe is has something to do with the length of the key. The key I got…
user3690095
11
votes
1 answer

Accessing FTPS using RCurl

I have an FTPS server which I can already work with using clients such as Filezilla and Syncback. I also have admin access to this FTPS server and I know that it is working properly with TLS because I see "TLS" in the Filezilla connection log. I…
Angelo
  • 2,936
  • 5
  • 29
  • 44
1
2 3
36 37