Link to home
Start Free TrialLog in
Avatar of Ivan_Windon
Ivan_WindonFlag for United States of America

asked on

Cisco 2600 router with static IP and ATT

I just changed over from a dynamic IP account with AT&T to a Static IP address.  I have 5 static IPs.  I would like to give one to my router and one for my exchange server for the MX record.

Everything worked fine on the Cisco router when it was on the dynamic side, however now it doesn't quite work.  The router can ping web sites no problem, however I'm not getting onto the internet from the clients anymore.  The router has DHCP setup.  I'm guessing this is a routing issue, but I'm not sure how to go about solving it and just need some help finishing this up.

I'm including my config.  My IPs I have been assigned are:
IP = 99.28.107.224 - 231 SN = 255.255.255.248  DG = 99.28.107.230



!
version 12.2
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Grasshopper
!
logging queue-limit 100
enable secret 5 xxxxxxxxxxxxxxxxxxxxxxxxx
enable password xxxxxxxxxxxxxxxxxxxxxxxxxx
!
username admin privilege 15 secret 5 $xxxxxxxxxxxxxxxxxxxxxxxxxxx
username iwindon privilege 15 secret 5 xxxxxxxxxxxxxxxxxxxxxxxxxxxx
memory-size iomem 10
aaa new-model
!
!
aaa session-id common
ip subnet-zero
!
!
ip name-server 68.94.156.1
ip name-server 68.94.157.1
ip dhcp excluded-address 192.168.1.1
ip dhcp excluded-address 192.168.1.254
ip dhcp excluded-address 192.168.1.2
ip dhcp excluded-address 192.168.1.3
ip dhcp excluded-address 192.168.1.4
ip dhcp excluded-address 192.168.1.5
ip dhcp excluded-address 192.168.1.6
ip dhcp excluded-address 192.168.1.7
ip dhcp excluded-address 192.168.1.8
ip dhcp excluded-address 192.168.1.9
!
ip dhcp pool local
   import all
   network 192.168.1.0 255.255.255.0
   default-router 192.168.1.1
!
vpdn enable
!
vpdn-group pppoe
 request-dialin
  protocol pppoe

!
!
!
!
!
!
!
!
!
no voice hpi capture buffer
no voice hpi capture destination
!
!
mta receive maximum-recipients 0
!
!
!
!
interface ATM0/0
 no ip address
 no ip mroute-cache
 no atm ilmi-keepalive
 pvc 0/35
  pppoe-client dial-pool-number 1
 !
 dsl operating-mode auto
!
interface FastEthernet0/0
 ip address 192.168.1.1 255.255.255.0
 ip nat inside
 ip tcp adjust-mss 1452
 no ip mroute-cache
 duplex auto
 speed auto
!
interface Dialer1
 mtu 1492
 ip address 99.28.107.225 255.255.255.248
 ip nat outside
 encapsulation ppp
 no ip mroute-cache
 dialer pool 1
 ppp pap sent-username xxxxxxxxxxxxxx@att.net password 0 xxxxxxxx
!
ip nat inside source list 1 interface Dialer1 overload

ip http server
ip http authentication local
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
ip route 192.168.1.0 255.255.255.0 FastEthernet0/0
!
!
!
access-list 1 permit any
access-list 101 permit udp any any eq domain
access-list 101 permit udp any eq domain any
dialer-list 1 protocol ip permit
!
radius-server authorization permit missing Service-Type
call rsvp-sync
!
!
mgcp profile default
!
!
!
dial-peer cor custom
!

!        
!
privilege configure level 15 line
!
line con 0
line aux 0
line vty 0 4
 privilege level 15
 password xxxxxxxxx
!
!
end

Thanks,

Ivan
Avatar of omesie
omesie

Just out of curiosity, when trying to connect to a website using the IP address from a client PC, does that work?  It's possible you haven't set up DNS forwarders to the right IP addresses seeing as you've changed from Dynamic to static, your ISP may have different DNS servers.
ASKER CERTIFIED SOLUTION
Avatar of BooSTid
BooSTid

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
It also looks to me like the router is still configured with PPOE information which it will no longer need. It should just be a static ip.

HTH,
Ken
Avatar of Ivan_Windon

ASKER

I believe it was the ip route 0.0.0.0 0.0.0.0 99.28.107.230 that did the trick.  I'm not 100% why yet (haven't had time to do the research), however on my router it doesn't like it if you say access-list 1 permit ip 192.168.0.0 0.0.0.255 any, it complains at the any part.  I have to just put access-list 1 permit any.  I didn't change it, left it as it was.  I did remove the ip route on the fa0/0 port however.  Soon as I put the ip route to the default gateway the web began to hum again.  Thank you for helping me with this.  I still have a ways to go before I'll be proficient with Cisco equipment, however I'm learning a lot these past few weeks.
Default routes with an interface specified instead of a specific next hop can fail depending on what's on that network and what responds to proxy ARP requests. It works well if you have a single ip address and a single gateway; but outside of that it can be pretty hit or miss. This would explain why it failed as soon as you acquired a range rather then a dynamic host address