Results 1 to 2 of 2
I have an ssh server setup at home. I opened a port for it on my router: port 22 inbound and port 5500 to the public. Now I'm at school ...
- 02-18-2005 #1Just Joined!
- Join Date
- Nov 2004
- Posts
- 4
SSH help
I have an ssh server setup at home. I opened a port for it on my router: port 22 inbound and port 5500 to the public. Now I'm at school and can't connect to the computer at home. I tried ssh -p 5500 root@xxx.xxx.xxx.xxx, but nothing happens. The router at home should re-direct incoming port 5500 to port 22 and then to the ssh server. Could it be something that gets stuck when the server tries to send data back? The firewall here has port 22 (in and out) opened.
Fast answers are appreciated.
- 02-18-2005 #2Just Joined!
- Join Date
- Jan 2005
- Location
- Toronto, ON, Canada
- Posts
- 79
You have to be sure that the router does:
afrolinuxCode:If packet is incoming(from internet you can figure out this by the dest IP segment) and dest_port == 5500 NAT the packet's destination info --> router_IP:5500 to SSH_server_IP:22 If packet is outgoing(from internet you can figure out this by the src IP segment) and src_port == 22 NAT the packet's source info --> SSH_server_IP:22 to router_IP:5500


Reply With Quote