Unable to connect to FTP Server with SOCKS5 using WinSCP
Clash Royale CLAN TAG #URR8PPP Unable to connect to FTP Server with SOCKS5 using WinSCP I choose WinSCP so I can implement a SOCKS5 Proxy into my FTP Client. With the Proxy commented out I am able to connect and download files from a FTP Server without a proxy. If I try to connect to the FTP Server with SOCKS5 Proxy I am unable to connect. Any erros in my proxy configuration or something ? LoginData is correct, works with filezilla. public void Download(string LocalFile) { try { // Setup session options SessionOptions sessionOptions = new SessionOptions { Protocol = Protocol.Ftp, HostName = LoginData.Servername, UserName = LoginData.Username, Password = LoginData.Passwort, }; // Configure proxy sessionOptions.AddRawSettings("ProxyMethod", "2"); // socks5 proxy sessionOptions.AddRawSetting...