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

Cisco 1710 behind Adit600 from windstream

Status
Not open for further replies.

Russtoleum

IS-IT--Management
Sep 17, 2009
6
US
hello all, i have limited experience with cisco boxes but i still love to try and use them...anyway, im trying to implement one at a client of mine and the config i have isn't working...the client has a 5 ip block with windstream.net and were on a firebox and it crapped out so i got a Cisco 1710 router off ebay to replace it...any way, i was hoping i could post my config and get help troubleshooting why it isn't working...i can ping the public ip address but not the gateway....and any help would be appreciated



Current configuration : 1576 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$oMEP$C5cBGhSNZxW9VqKGHCqWH0
enable password cisco
!
memory-size iomem 20
no aaa new-model
ip subnet-zero
!
!
ip name-server 10.0.0.8
!
ip cef
ip audit po max-events 100
!
!
!
!
!
!
!
!
interface Ethernet0
description WAN
ip address *.*.56.67 255.255.255.248 secondary
ip address *.*.56.68 255.255.255.248 secondary
ip address *.*.56.69 255.255.255.248 secondary
ip address *.*.56.70 255.255.255.248 secondary
ip address *.*.56.66 255.255.255.248
ip nat outside
full-duplex
!
interface FastEthernet0
description LAN
ip address 10.0.0.2 255.255.255.0
ip nat inside
speed auto
full-duplex
!
ip nat inside source static tcp 10.0.0.9 25 *.*.56.66 25 extendable
ip nat inside source static tcp 10.0.0.9 80 *.*.56.66 80 extendable
ip nat inside source static tcp 10.0.0.9 443 *..56.66 443 extendable
ip nat inside source static tcp 10.0.0.9 110 *.*.56.66 110 extendable
ip nat inside source static tcp 10.0.0.3 3389 *.*.56.69 3389 extendable
ip nat inside source static tcp 10.0.0.8 1723 *.*.56.67 1723 extendable
ip classless
ip route 0.0.0.0 0.0.0.0 *.*.56.65
no ip http server
no ip http secure-server
!
!
access-list 110 permit tcp host 10.0.0.9 any eq smtp
access-list 110 deny tcp any any eq smtp
access-list 110 permit ip 10.0.0.0 0.0.0.255 any
!
!
!
line con 0
line aux 0
line vty 0 4
password cisco
login
!
end



thanks again for any help
 
ip name-server 10.0.0.8

This needs to be your public dns server, not the one inside your network.

Also, for other clients to get out, you would need an acl and a nat statement pointing to the WAN interface.

/

tim@tim-laptop ~ $ sudo apt-get install windows
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package windows...Thank Goodness!
 
Could you give a quick example of what that might look like...becasue i kinda thought this line

access-list 110 permit ip 10.0.0.0 0.0.0.255 any

handled it

i appreciate your time
 
No---make a new acl

access-list 109 permit ip 10.0.0.0 0.0.0.255 any
ip nat inside source list 109 int e0 over

/

tim@tim-laptop ~ $ sudo apt-get install windows
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package windows...Thank Goodness!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top