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
-1
votes
1 answer

Send file to ftp-server

I need to transfer an file created but I keep getting the following error: Warning: ftp_put(): Can't open data connection for transfer of "/server.txt" I can access the ftp via an ftp application and I can create and transfer files via the…
Natalie Hedström
  • 2,607
  • 3
  • 25
  • 36
-1
votes
1 answer

Python FTPS (FTP_TLS) connection refused. No certificate?

I would like to download a file over ftps. When I try to download that file with wget, I have to include the --no-check-certificate for it to work, but I could not find a parallel setting in ftplib. from ftplib import FTP_TLS host =…
Amit
  • 5,924
  • 7
  • 46
  • 94
-1
votes
1 answer

Part of file in a ftp path can be downloaded but the others get error 550 using filezilla server and client

I tried to set a FileZilla FTP Server for my boss. When downloading files from FTP, we got error 550. I promise I had set all accession for that group, which means they should be able to do anything they want on that path. Fine, I set accession for…
-1
votes
1 answer

AIX 7.1 anonymous ftp fails

I have a "vsftpd" server running on a RHEL machine which is configured for anonymous communication. I am trying to connect to it from a AIX 7.1 machine using ftp client. ftp -snv host 8043 Connected to host 220 secure FTP service ftp> user anonymous…
Fazlin
  • 2,285
  • 17
  • 29
-1
votes
2 answers

Lftp 550 error when trying to mirror a folder. FileZilla is ok

I made this script to download a folder in a remote FTP with implicit SSL: open -d ftps://USER:"PASS"@ftp.xxx.tld:990 mirror --verbose --continue /remote/folder $HOME/destination/folder; bye It connects, the features are: <--- 220-Microsoft FTP…
Gabriel
  • 5,453
  • 14
  • 63
  • 92
-1
votes
1 answer

Upload file with implicit FTPS and firewall

I need to upload a file in SUSE Linux Enterprise 12 to a FTP server that only allows implicit FTPS (actual upload needs to be triggered from PHP but I can run arbitrary shell commands). The firewall restricts outgoing connections by default. I…
Álvaro González
  • 142,137
  • 41
  • 261
  • 360
-1
votes
2 answers

Handshake operation timed out on FTPS file transfer to remote

I get a weird error while trying to push file to remote ftp server using FTP over SSL/TLS. I found no trace of solution online :/ Please help. Here's my code: from ftplib import FTP_TLS import sys, os root = "\\home\\user\\test.txt" dest =…
-1
votes
2 answers

FTPS suddenly failing across all Azure Web Apps

I have over 10 Azure Web Apps for which i've been able to manually upload file to using FTPS for over 3 years. Now all of a sudden on Mac Client and Win10 client and other peoples computers we're all getting the same errors preventing manual…
A. Wentzel
  • 484
  • 8
  • 16
-1
votes
1 answer

Communication over FTPS vs SFTP

Beside of inbound/outbound port configuration and encryption. I have the following doubts: If FTPS encrypts both command and data channels via SSL, why it is said that communication is human-readable? In what format? The binary condition of SFTP is…
Maximus Decimus
  • 4,901
  • 22
  • 67
  • 95
-1
votes
1 answer

Upload File Commons FTPS Android Studio

I get problems with uploading a file by SFTP and I looked for information the problem is that when wanting to upload an image to SFTP I upload the name of the image with 0 KB I would like to know what happens with FTP I upload it and I added the…
Chama
  • 1
-1
votes
1 answer

FTPWebRequest EnableSsl = true returns (530) Not logged in

I want to download a file from the FTP server via SSL. If I don't enable enableSSL, the download works. If I activate enableSSL, I get the error message "(530) Not logged in". We have a vManaged Server. Does something on the server have to be…
Ameise
  • 35
  • 3
-1
votes
1 answer

One more Fatal error: gnutls_handshake: A TLS packet with unexpected length was received

All, After installing the new cert from Comodo in my MS2012 server, my FTPS connections from my RHEL6 server are failing with "gnutls_handshake" error. We moved from Verisign signed to Comodo. I went through the different "set" commands but still…
Srini Vasu
  • 21
  • 1
  • 2
  • 5
-1
votes
1 answer

Batch script connect to ftp site and download folders + files

What I try is to connect to a ftps site on port 55332 in passive mod via a batch script. After the connect I will stay in the folder /photos/ and automatically download all Folders + files that contains in /photos/ That is what I have but dont know…
BASF
  • 147
  • 1
  • 3
  • 17
-1
votes
2 answers

vsftpd not in netstat

I install vsftpd on Ubuntu mate. I do everything by this manual: https://www.digitalocean.com/community/tutorials/how-to-configure-vsftpd-to-use-ssl-tls-on-an-ubuntu-vps Result is the vsftpd is rununing as process "ps -aux", but if I write "netstat…
-1
votes
1 answer

PureFtpd passive port range doesn't deliver listening address to client

I'm trying to configure my pureftpd behind the firewall to act as a passive ftp/TLS server. Acting machines: Server: 192.168.3.220 (internal network, default route to the router at 192.168.3.1) Configuration: pureftpd with PassivePorts 64000 64300,…
tloudev
  • 19
  • 5
1 2 3
36
37