How to connect to FTP through a proxy
How can I get WinSCP to connect to an FTP site through my companies proxy?
I filled in my proxy info and tried different proxy types but it hangs when connecting. It looks like it is trying to connect to the FTP directly, instead of the proxy first.
Here is a python example that I was able to get to connect.
I filled in my proxy info and tried different proxy types but it hangs when connecting. It looks like it is trying to connect to the FTP directly, instead of the proxy first.
Here is a python example that I was able to get to connect.
import ftplib ftp = ftplib.FTP("proxy.com") ftp.login(user="FTP_USERx@123.123.123.123 PROXY_USER", passwd="FTP_PASS", acct="PROXY_PASS") ftp.dir() ftp.quit()