-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
Hi guys
FluentFTP cannot connect to this FTP server project with demanded encryption.
If to verify supported connection modes you can use the next code on temporarry project
using FluentFTP;
var client = new AsyncFtpClient(
"127.0.0.1",
"VoDA",
"123",
5021,
new FtpConfig
{
SslProtocols = System.Security.Authentication.SslProtocols.None,
EncryptionMode = FtpEncryptionMode.Auto
});
client.ValidateCertificate += Client_ValidateCertificate;
void Client_ValidateCertificate(FluentFTP.Client.BaseClient.BaseFtpClient control, FtpSslValidationEventArgs e) {
e.Accept = true;
}
var det = await client.AutoDetect(false, true);
foreach (var detectedConfig in det)
{
Console.WriteLine(detectedConfig.Encryption);
}
Console.ReadLine();
the response would be
None
Also Far manager fails to connect to FTPS in test project. So FTPS is implemented incorrectly.

Metadata
Metadata
Assignees
Labels
No labels