:( Turns out I tested the wrong system.
When I specify the port = 22, which is the port configured by 3rd-party, I get the error:
Testing FTP Server Failed. Authenticate as SSL/TLS client failed.
You might be connecting to non SSL/TLS port -or- using incorrect SSL/TLS version.
Consider using TLS 1.2: client.SSLConfiguration.EnabledSslProtocols = SslProtocols.Tls12;
(as stated in original post)
However, if I don't specify the port (ie. client.ConnectSSL(FtpSite)
), I get the error:
A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond xxx.xx.xx.xxx:990
By default, it appears to try to connect to port 990. I need it to connect to port 22. I have verified with Windows SFTP.exe that I can indeed connect to remote site on port 22.
Thanks,
Gary.