Cant connect thru ssh socks proxy to certain sites

  • Thread starter Thread starter postcd
  • Start date Start date
P

postcd

Hello, i setup an open socks proxy on my remote vps:

Code:
Code:
ssh -f -N -D 0.0.0.0:1080 localhost
and then allowed only connections from IP of my home computer

Code:
Code:
iptables -A INPUT --src myhomeip -p tcp --dport 1080 -j ACCEPT
iptables -A INPUT -p tcp --dport 1080 -j REJECT
but it appears that im failing to connect websites running on non-standard ports like:2087, 8888, 10000

these are web control panels

can i anyhow veriffy what is happenning on my vps logs? Or i need to do different proxy command above to fix this issue? How to make websites on these ports work when loaded via above proxy?

Continue reading...
 
Back
Top