Hello,
how do I access a FTP site through a firewall?
The firewall has the IP address 1.1.1.1 (for simplicity reason) and
uses port 8080. I have to reach FTP site 2.2.2.2
oClient := FTPClient():new("2.2.2.2", "user", "password",
"1.1.1.1:8080")
oClient:connect()
doesn't work.
OClient := FTPClient():new("2.2.2.2", "user", "password", "1.1.1.1",
8080)
oClient:connect()
doesn't work either.
Any idea? Has someone solved this problem?
Kind regards,
Georg