Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache Ant FTP connection over TLS

Tags:

ssl

ant

ftp

How to connect to FTP over TLS in Apache Ant? Ftp task doesn't seem to support this. Are there some other tasks for FTP over TLS?

like image 277
Tormi Talv Avatar asked Jun 10 '12 21:06

Tormi Talv


1 Answers

FTPS has not been widely accepted by the industry. SFTP (part of SSH) is preferred. FTPS suffers the same limitations as FTP and introduces a new one: Firewall Incompatibilty.

This is very likley why the ftp task doesn't support it. As Martin Clayton suggests scp will do the trick.

like image 65
Martin Cowie Avatar answered Nov 16 '22 00:11

Martin Cowie