0
1
I would like to find a way to access port 9700, but my proxy only allows port 8080 and 443. Is there a way to tunnel through port 443 to access port 9700?
0
1
I would like to find a way to access port 9700, but my proxy only allows port 8080 and 443. Is there a way to tunnel through port 443 to access port 9700?
1
If you are behind a proxy that is only allowing outgoing traffic on TCP port 8080 and 443, then the only way you can get traffic to other ports is to have something outside of the firewall listening on TCP port 443 or 8080 and willing to forward traffic for you to your desired destination host at port 9700.
If you have a home Internet connection with enough speed you might be able to run such software on your home computer. This would require:
Since this proxy has TCP port 443 open, you also might consider signing up for an SSL VPN service which will operate on port 443 and look like HTTPS SSL traffic. I've never used any third-party SSL VPN services so I don't know of any to mention off hand.
Thank you for your answer, I've got a static ip at home and I've opened port 22 . I would have to open port 443 as well and then tunnel the home connection to 9700 is that right ? In terms of security would it be a bad thing to open 443 ? – fingertwist – 2011-08-12T02:36:25.597
if that is the case, how would you tunnel twice ? once at home through 443 and then tell my home connection to tunnel to 9700 ? – fingertwist – 2011-08-12T02:38:16.403
"Tunneling" means something different than the way it seems you mean it. This situation is just straight-up forwarding; you'd have to run a program on your home PC that is receiving traffic from TCP port 443 and then does nothing but resend that traffic to the machine you want, TCP port 9700. There is a risk in that if you use something like TrivialProxy that doesn't use authentication, anyone who hits your IP address will have their traffic redirected as well. If you need something that is for more than temporary use then I'd look into SSL VPNs which will do authentication and tunneling. – LawrenceC – 2011-08-12T12:17:06.110