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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I cant telnet my router from the outside.

Status
Not open for further replies.

Creater

Technical User
May 1, 2003
6
0
0
US
My problem is that i have sett up my router and i can telnet from the inside but i cant telnet to it from the outside..

I have hade somthing like this before without problem but cant remember what is difernt.

I think it has somthing with my static nat translation but i dont know how to not tranlat the telnet port.

One more thing, i use the static nat translation to act like a DMZ for one of my comps.. is this right?

can somone help my wih this..

Thakns


Current configuration : 1306 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Gateway_Router
!
enable secret 5 "REMOVED"
enable password "REMOVED"
!
ip subnet-zero
ip domain-name Home
ip dhcp excluded-address 10.10.10.1 10.10.10.4
!
ip dhcp pool DHCPPOOLLAN_0
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
dns-server "REMOVED" "REMOVED"
!
!
!
!
interface Ethernet0
ip address dhcp
ip nat outside
!
interface Ethernet1
ip address 10.10.10.1 255.255.255.0
ip nat inside
!
router igrp 1
redistribute connected
network 10.0.0.0
!
ip nat log translations syslog
ip nat translation max-entries 6000
ip nat inside source list 1 interface Ethernet0 overload
ip nat inside source static tcp 10.10.10.4 80 interface Ethernet0 80
ip nat inside source static 10.10.10.3 213.100.91.104
ip classless
ip http server
!
logging 10.10.10.3
access-list 1 deny 10.10.10.3 log
access-list 1 permit 213.100.91.104 log
access-list 1 permit 10.10.0.0 0.0.255.255 log
dialer-list 1 protocol ip permit
dialer-list 1 protocol ipx permit
snmp-server community "REMOVED" RW
snmp-server enable traps tty
!
line con 0
line vty 0 4
password "REMOVED"
login
!
end
 
It appears that you are using DHCP on the external interface. What IP address do you try to telnet to? You may want to find out what your external address is by first going to
andf1
 
Yes i am using the external ip. I now its right becouse i remote my comp with remote desktop (from school)
 
would this work? just looking at the config, and if your webserver on 10.10.10.4 works, then this should also.

ip nat inside source static tcp 10.10.10.1 23 interface Ethernet0 23

ps: this is a guess.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top