Link to home
Start Free TrialLog in
Avatar of Neale Williams
Neale WilliamsFlag for Australia

asked on

Cisco 877 Config

Having trouble configuring a Cisco 877 for a bigpond ADSL2. I am getting Carrier Detect and the ATM0 interface seems to be connecting but cannot ping any addresses or load web pages. Running Config is:

ip dhcp pool LAN_CLIENTS
network 10.1.1.0 255.255.255.0
default-router 10.1.1.1
dns-server 61.9.194.49 61.9.195.193

interface ATM0
no ip address
no ip redirects
no ip unreachables
no ip proxy-arp
ip route-cache flow
no atm ilmi-keepalive
pvc 8/35
tx-ring-limit 3
encapsulation aal5mux ppp dialer
dialer pool-member 1
!
dsl operating-mode auto

interface Vlan1
ip address 10.1.1.1 255.255.255.0
no ip redirects
no ip proxy-arp
ip nat inside
ip route-cache flow

interface Dialer0
ip address negotiated
ip verify unicast reverse-path
no ip redirects
no ip unreachables
no ip proxy-arp
ip nat outside
encapsulation ppp
ip route-cache flow
dialer pool 1
ppp authentication chap callin
ppp chap hostname myusername@bigpond.com
ppp chap password mypassword

ip nat inside source list 190 interface Dialer0 overload
ip route 0.0.0.0 0.0.0.0 Dialer0
access-list 190 permit ip 10.1.1.0 0.0.0.255 any

Thanks!
SOLUTION
Avatar of Don Johnston
Don Johnston
Flag of United States of America image

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
I honestly do see anything wrong with what you have posted. Can you post the entire config?
I meant I don't see anything wrong.
Avatar of Neale Williams

ASKER

Thanks for the comments. As you can see from the config I have enabled NAT. I tried to use SDM first but I could not edit the interfaces after creating them and was having trouble with the dynamic ip address on the dialer interface.

Here is the running config:

CISCO877#sh run
Building configuration...

Current configuration : 1717 bytes
!
version 12.4
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname CISCO877
!
boot-start-marker
boot-end-marker
!
enable secret 5 xxxxxxx
enable password xxxxxxx
!
no aaa new-model
!
!
dot11 syslog
no ip routing
no ip cef
no ip dhcp use vrf connected
!
ip dhcp pool LAN_CLIENTS
   network 10.1.1.0 255.255.255.0
   dns-server 61.9.194.49 61.9.195.193
   default-router 10.1.1.1
!
!
!
!
!
username xxxxxx privilege 15 secret 5 xxxxxxxx
!
!
archive
 log config
  hidekeys
!
!
!
!
!
interface ATM0
 no ip address
 no ip redirects
 no ip unreachables
 no ip proxy-arp
 no ip route-cache
 no atm ilmi-keepalive
 pvc 8/35
  tx-ring-limit 3
  encapsulation aal5mux ppp dialer
  dialer pool-member 1
 !
 dsl operating-mode auto
!
interface FastEthernet0
!
interface FastEthernet1
!
interface FastEthernet2
!
interface FastEthernet3
!
interface Vlan1
 ip address 10.1.1.1 255.255.255.0
 no ip redirects
 no ip proxy-arp
 ip nat inside
 ip virtual-reassembly
 no ip route-cache
!
interface Dialer0
 ip address negotiated
 no ip redirects
 no ip unreachables
 no ip proxy-arp
 ip nat outside
 ip virtual-reassembly
 encapsulation ppp
 dialer pool 1
 ppp authentication chap callin
 ppp chap hostname xxxxxxxx
 ppp chap password 0 xxxxxxx
!
ip forward-protocol nd
ip route 0.0.0.0 0.0.0.0 Dialer0
!
ip http server
no ip http secure-server
ip nat inside source list 190 interface Dialer0 overload
!
access-list 190 permit ip 10.1.1.0 0.0.0.255 any
!
!
!
control-plane
!
!
line con 0
 no modem enable
line aux 0
line vty 0 4
 password cisco
 login
!
scheduler max-task-time 5000
end

Where are you pinging from?

Have you verified that you can ping from the router to a public address?
ASKER CERTIFIED SOLUTION
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
The router cannot currently ping any external addresses. It did before but I started again because it was not working properly.
I will have access to the router again this afternoon. I will try your changes Soulja. What is the syntax?
Ok now the router can ping external IP addresses but the clients cant ping the cisco. If I connect my laptop directly to the cisco it still says media disconnected. All the interfaces are up.
Post output of "show int status" and "show ip int brief"
I reconfigured from scratch using an older template I had and all is working fine now. Think I must have missed some random line. The interfaces were all up and ok. Just couldn't ping from a client.
Compare your old template and the config above with Diffmerge or something similar.
Think I stuffed up the VLAN interface.
Thanks for the help guys!