Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Telnet problems on Cisco Rouer!!?!?

Status
Not open for further replies.

o3rat

MIS
Feb 10, 2004
10
US
I just configure my 2610, its running DHCP and a NAT fine and i can ping both interfaces[ e1/0 69.47.17.34/20 and e0/0 192.168.1.1/24]. I can use the internet and email services. I can telnet the router from within the network, but not from the outside.

This is my current config:

Current configuration : 1160 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname o3Rat
!
enable secret 5 $1$OtFm$MMEYgaFIGkFmzjIwz/Kgm0
!
ip subnet-zero
!
!
ip dhcp excluded-address 192.168.1.1
ip dhcp excluded-address 192.168.1.2
ip dhcp excluded-address 192.168.1.3
ip dhcp excluded-address 192.168.1.10
!
ip dhcp pool MSHOME
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
dns-server 64.233.217.2 64.233.217.3
lease 5
!
ip audit notify log
ip audit po max-events 100
!
!
!
interface Ethernet0/0
description Switch to Router connection
ip address 192.168.1.1 255.255.255.0
ip nat inside
half-duplex
!
interface Ethernet1/0
description LAN to WAN connection
ip address 69.47.17.34 255.255.248.0
ip nat outside
half-duplex
!
ip nat inside source list 99 interface Ethernet1/0 overload
ip classless
ip route 0.0.0.0 0.0.0.0 69.47.16.1
ip address 69.47.17.34 255.255.248.0
ip nat outside
half-duplex
!
ip nat inside source list 99 interface Ethernet1/0 overload
ip classless
ip route 0.0.0.0 0.0.0.0 69.47.16.1
no ip http server
!
access-list 99 permit any
!
line con 0
password 7 140F170819102F39
login
line aux 0
line vty 0 4
password 7 010B03074E1F031D
login
!
end


Any suggestions?
 
What specifically are you trying to telnet to? Ethernet1/0?

Is there anything in front of this router?
 
tt could be something in your line vty config. Try building an access class

line vty 0 4
access-class 12 in
exec-timeout 120 0
length 0
!
Your nat statements may also need to contain the extended param.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top