There are a number of public FTP servers that require SSL/TLS on the control channel.
One example of that is www3.software.ibm.com.
I would like to use a linux shell ftp client like lftp or ncftp to interact with such servers.
Unfortunately I haven't found a configuration of those programs yet that allows me to do so.
I am looking for suggestions how to configure those client programs to successfully connect.
Addendum 1 at 2024-12-28T09:26:44+00:00
The following is adapted from the SU post that martin-prikryl linked to and does not work for me:
#!/bin/sh
URL="www3.software.ibm.com"
lftp -e "
set ftps:initial-prot "";
set ftp:ssl-force true;
set ftp:ssl-protect-data true;
open ${URL};"
Same error message as before.