Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
07-18-2012, 08:56 AM
|
#1
|
|
Member
Registered: May 2012
Location: San Luis, Argentina
Distribution: Debian
Posts: 93
Rep:
|
Access server from outside LAN via SSH
Hi all,
I have a home server running Debian Squeeze. This server is behind a router with a static IP.
To access the apache server, in the router I have redirected port 8888 (public) to port 80 (private) so when I type xxx.xxx.xxx.xxx:8888 (where the x's represent the router's static ip address) in a web browser from outside the LAN, it displays a home page. That works just fine.
Now I would like to access the ssh server from outside the LAN. To accomplish this, in the router I redirected port 1982 to the server's (private) port 22, but I keep getting a "Connection timed out" message in Putty while trying to connect to the server.
Some things to consider:
1) the sshd daemon is running on the server.
2) Iptables is not blocking any incoming connections (just to test, it's configured with an ACCEPT ALL policy).
3) The Putty connection is xxx.xxx.xxx.xxx:1982 (where the x's represent the same IP address as above).
4) I already checked this post where a suggestion is given but I am not quite sure as how to implement it.
I hope I have asked this question the smart way. Any suggestions / ideas are more than welcome!
|
|
|
|
07-18-2012, 09:22 AM
|
#2
|
|
Senior Member
Registered: May 2005
Location: boston, usa
Distribution: fc-12/ fc-11-live-usb/ aix
Posts: 2,672
|
does ssh localhost work ?
are you able to ssh in from within the same network ?
|
|
|
|
07-18-2012, 09:24 AM
|
#3
|
|
Member
Registered: May 2012
Location: San Luis, Argentina
Distribution: Debian
Posts: 93
Original Poster
Rep:
|
Quote:
Originally Posted by schneidz
does ssh localhost work ?
are you able to ssh in from within the same network ?
|
Yes, it works like a charm - I forgot to include that details in the things-to-consider list above.
|
|
|
|
07-18-2012, 09:29 AM
|
#4
|
|
Senior Member
Registered: Sep 2009
Location: Philly, PA
Distribution: Kubuntu x64, RHEL, Fedora Core, FreeBSD, Windows x64
Posts: 1,061
|
Test to see if the port is even listening and check to see if you get an SSH banner using telnet. Testing from Linux,
Code:
nmap -PN -p 1982 xxx.xxx.xxx.xxx
#You should get an SSH banner using telnet. Something like this: SSH-2.0-OpenSSH_5.9p1 Debian-5ubuntu1
telnet xxx.xxx.xxx.xxx 1982
If you're not getting a banner then it indicates either an in between routing problem or a problem with the router port forwarding. I would do a tracert to test further and double check your IP/port settings in the router. If it still doesn't work then try forwarding to another port other than 1982 and test again. Check the router logs to see if there's any errors which pop up when you're doing your testing.
NOTE: If you're inside the LAN and ssh into your Debian server than you can still test against the xxx.xxx.xxx.xxx:1982 address. telnet localhost so that you know what kind of SSH banner you should be expecting.
We'll proceed further once you've taken those testing steps.
|
|
|
|
07-18-2012, 09:40 AM
|
#5
|
|
Member
Registered: May 2012
Location: San Luis, Argentina
Distribution: Debian
Posts: 93
Original Poster
Rep:
|
Quote:
Originally Posted by sag47
Test to see if the port is even listening and check to see if you get an SSH banner using telnet. Testing from Linux,
Code:
nmap -PN -p 1982 xxx.xxx.xxx.xxx
#You should get an SSH banner using telnet. Something like this: SSH-2.0-OpenSSH_5.9p1 Debian-5ubuntu1
telnet xxx.xxx.xxx.xxx 1982
If you're not getting a banner then it indicates either an in between routing problem or a problem with the router port forwarding. I would do a tracert to test further and double check your IP/port settings in the router. If it still doesn't work then try forwarding to another port other than 1982 and test again. Check the router logs to see if there's any errors which pop up when you're doing your testing.
NOTE: If you're inside the LAN and ssh into your Debian server than you can still test against the xxx.xxx.xxx.xxx:1982 address. telnet localhost so that you know what kind of SSH banner you should be expecting.
We'll proceed further once you've taken those testing steps.
|
Here's the banner. I tested from outside the LAN with a Debian Squeeze box at work:
Code:
Starting Nmap 5.00 ( http://nmap.org ) at 2012-07-18 11:36 ART
Interesting ports on customer.<ISP>.com.ar (xxx.xxx.xxx.xxx):
PORT STATE SERVICE
1982/tcp filtered unknown
Nmap done: 1 IP address (1 host up) scanned in 2.49 seconds
Again, the x's are the public IP address.
|
|
|
|
07-18-2012, 10:00 AM
|
#6
|
|
Senior Member
Registered: Sep 2009
Location: Philly, PA
Distribution: Kubuntu x64, RHEL, Fedora Core, FreeBSD, Windows x64
Posts: 1,061
|
Code:
1982/tcp filtered unknown
Means there is no service listening. So it's likely a routing problem or a port forwarding issue on your home router. You said, "Here's the banner," but you didn't post any banner from telnet. The output of nmap is not a banner.
At any rate I would look more closely at your router. If you try all the port forwarding settings you can then perhaps upgrading the routers firmware will fix a known/unknown routing bug.
|
|
|
|
07-19-2012, 08:20 AM
|
#7
|
|
Member
Registered: May 2012
Location: San Luis, Argentina
Distribution: Debian
Posts: 93
Original Poster
Rep:
|
Quote:
Originally Posted by sag47
Code:
1982/tcp filtered unknown
Means there is no service listening. So it's likely a routing problem or a port forwarding issue on your home router. You said, "Here's the banner," but you didn't post any banner from telnet. The output of nmap is not a banner.
At any rate I would look more closely at your router. If you try all the port forwarding settings you can then perhaps upgrading the routers firmware will fix a known/unknown routing bug.
|
Yesterday when I got home I changed the public port to 22 (which is forwarded by the router to private port 22) and it worked! There must have been something wrong with public port 1982 I guess - it was open in the router but it was not forwarding traffic to the LAN.
Any ideas why? The router is a Dlink-600. Anyway, I'll mark this as solved, but additional insights are always welcome, so feel free to keep 'em coming. 
|
|
|
|
07-19-2012, 09:49 AM
|
#8
|
|
Senior Member
Registered: Sep 2009
Location: Philly, PA
Distribution: Kubuntu x64, RHEL, Fedora Core, FreeBSD, Windows x64
Posts: 1,061
|
It could be a firmware bug, or possibly something internally used by the router preventing you from using the port (though if that's the case it shouldn't have let you select it to begin with). Since you're running on port 22 then generically run nmap and see what services are running on your router other than 22.
Code:
nmap -PN xxx.xxx.xxx.xxx
Try using a port other than 22 and 1982; for example maybe 2222 and check to see if it still works. If your router keeps having port forwarding problems then I would say it needs a firmware upgrade. D-Link publishes all of their firmware on their support website. Port forwarding is on Layer 3 and is a software issue so there shouldn't be anything physically wrong with your router unless it's bad memory addresses on the router memory.
SAM
Last edited by sag47; 07-19-2012 at 10:00 AM.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 10:25 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|