- AT&T Forums Home
- /
- U-verse Forums
- /
- U-verse Equipment
- /
- Residential Gateway
- /
- Re: can't get to my Cisco Router http config inter...
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
can't get to my Cisco Router http config interface nor can I ssh
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-21-2012 06:17:10 PM
I have a block of 8 static IPs, I have NAT setup and can use the Internet just fine, however, unless I disconnect the LAN cable to the router's inteface (effectively shutting it down) I cannot get to my 2621's http config interface page... additionally, I cannot ssh into the PC but we can take this one step at a time... here's my config:
sh run
Building configuration...
Current configuration : 1045 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R1
!
boot-start-marker
boot-end-marker
!
enable secret 5 hooey
!
memory-size iomem 10
no aaa new-model
ip subnet-zero
ip cef
!
ip name-server 68.94.156.1
ip name-server 68.94.157.1
--More-- !
!
interface FastEthernet0/0
ip address 192.168.1.1 255.255.255.0
ip nat inside
duplex auto
speed auto
!
interface Serial0/0
no ip address
shutdown
!
interface FastEthernet0/1
ip address xxx.xxx.xxx.xxx 255.255.255.248
ip nat outside
duplex auto
speed auto
!
interface Serial0/1
no ip address
shutdown
!
ip default-gateway xxx.xxx.xxx.xxx
ip nat inside source list 1 interface FastEthernet0/1 overload
ip http server
ip classless
ip route 0.0.0.0 0.0.0.0 xxx.xxx.xxx.xxx
!
access-list 1 permit 192.168.1.0 0.0.0.255
!
line con 0
exec-timeout 0 0
password blarney
logging synchronous
login
line aux 0
line vty 0 4
password blarney
login
line vty 5 15
password blarney
login
!
end
R1#
Solved! Go to Solution.
Re: can't get to my Cisco Router http config interface nor can I ssh
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-21-2012 06:49:44 PM
http://192.168.1.1
From the WAN side will not work until you put in a static NAT translation for port 80.
You will need that same static NAT translation for port 22 to use SSH as well.

Re: can't get to my Cisco Router http config interface nor can I ssh
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-22-2012 12:46:33 AM
from the WAN... I will look into the static NAT, not sure I know how to do that but it makes sense now that you say it. I was trying to do it all dynamic
and, yes, I can do it just fine from the LAN
thank you!
Re: can't get to my Cisco Router http config interface nor can I ssh
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-22-2012 01:20:50 AM
I have the static NAT set up as:
ip nat inside source static tcp 192.168.1.5 80 xxx.xxx.xxx.xxx 80
but I'm not sure about the options for extendable and no-payload, they don't seem to help when I try different ones...
I turned on
debug ip nat
and the incoming port numbers are seemingly random so that it totally messing this up, I think, anyway. Why don't I see the port number 80 coming in to be translated?
Re: can't get to my Cisco Router http config interface nor can I ssh
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-22-2012 03:57:36 PM
Re: can't get to my Cisco Router http config interface nor can I ssh
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-22-2012 04:29:25 PM
that got me part of the way, now I can reach the router and I can ssh to the PC from a PC that is on the same WAN IPs as the R1 router, but if I try to ssh in or get to the R1 router via a PC that is not on the static IPs, it fails...
Re: can't get to my Cisco Router http config interface nor can I ssh
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-22-2012 05:11:20 PM - edited 05-22-2012 05:11:55 PM
Ya, to get into the router's HTTP interface, you would need:
ip nat inside source static tcp 192.168.1.1 80 xxx.xxx.xxx.xxx 80
What is the target of the SSH? The PC? In that case, the PC would need to be on a static IP in the private range (say 192.168.1.100), and then:
ip nat inside source static tcp 192.168.1.100 22 xxx.xxx.xxx.xxx 22

Re: can't get to my Cisco Router http config interface nor can I ssh
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-22-2012 05:19:48 PM
Re: can't get to my Cisco Router http config interface nor can I ssh
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-22-2012 08:29:06 PM
If you have an SSH server at 192.168.1.5 and the NAT static translation open for it, then you can (from outside your network) SSH to the outside public IP address of xxx.xxx.xxx.xxx. If you have a computer on the LAN that needs to SSH to that PC, then you need to use the local LAN IP address of 192.168.1.5. You cannot use the outside IP, as the Cisco will not allow "loopback connections" through a NAT translation.









