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 800 series and pipex.

Status
Not open for further replies.

UKShark

Technical User
Jun 1, 2007
4
0
0
GB
I dont know if anyone can help. I have a cisco adsl router and have had it working before. I have reset and re-configured it but now its not working. I know ive left something stupid out. I have taken out all the firewall rules so its as basic as it can be. It assigns an outside IP ok and i can ping "yahoo.com" from it, so I know DNS is ok.

If I connect a PC to it with a fixed IP and using the ISP's DNS address's I cannot connect to the internet.

Here is my config, can anyone help?

Steve

!
version 12.3
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname MyRouter
!
no logging buffered
enable secret 5 $1$M2vN$8gyGl70Wul****.JXZN9o1
enable password *******
!
username ******** privilege 15 password 0 ******
no aaa new-model
ip subnet-zero
ip domain name local
!
!
ip audit notify log
ip audit po max-events 100
no ftp-server write-enable
!
!
!
!
partition flash 2 10 2
!
!
!
!
interface Ethernet0
description $FW_INSIDE$
ip address 192.168.0.1 255.255.255.0
ip nat inside
ip tcp adjust-mss 1452
hold-queue 100 out
!
interface ATM0
no ip address
no atm ilmi-keepalive
dsl operating-mode auto
!
interface ATM0.1 point-to-point
pvc 0/38
oam-pvc manage
pppoe-client dial-pool-number 1
!
!
interface FastEthernet1
no ip address
duplex auto
speed auto
!
interface FastEthernet2
no ip address
duplex auto
speed auto
!
interface FastEthernet3
no ip address
duplex auto
speed auto
!
interface FastEthernet4
no ip address
duplex auto
speed auto
!
interface Dialer0
description $FW_OUTSIDE$
ip address negotiated
ip mtu 1452
ip nat outside
encapsulation ppp
dialer pool 1
dialer-group 1
ppp authentication chap callin
ppp chap hostname ******@xtreme5.pipex.net
ppp chap password 0 ********
ppp pap sent-username ******@xtreme5.pipex.net password 0 *******
ppp ipcp dns request
!
ip classless
ip route 0.0.0.0 0.0.0.0
ip http server
ip http secure-server
!
!
line con 0
no modem enable
line aux 0
line vty 0 4
privilege level 15
password ******
login local
transport input telnet
!
scheduler max-task-time 5000
!
end
 
Oh The computer connecting is setup as so, and works fine with another router.

IP: 192.168.0.60
Subnet : 255.255.255.0
Gateway: 192.168.0.1
DNS: ISP server 1 ip
ISP server 2 ip


(ISP ips are 100% correct. Work with another router)

No firewall on PC. No AV on pc. Clean install. Win XP Pro
 
Hello
I think you are missing these lines.
ip nat inside source list 1 interface Dialer0 overload
access-list 1 permit 192.168.0.0 0.0.0.255
Good luck
 
Well, I see two things that may be causing this...
One, which I think is the main issue, is your default route. You have
router(config)#ip route 0.0.0.0 0.0.0.0
It should be
router(config)#ip route 0.0.0.0 0.0.0.0 di0
for dialer0 interface. Also, you have a ppp pap config for pap sent password and username, but only chap configured to actually authenticate. Under dialer 0 config, try this...
router(config-if)#ppp authentication pap chap callin
Also under dialer0, try these...
router(config-if)#ppp ipcp dns request
router(config-if)#ppp ipcp wins request
Don't forget copy run start, or wr mem. And of course, it looks like you did the no shut on the interfaces...but if you want to be sure, save the config and shut the router off, then turn it back on, and then when it comes up, do this
router>en
router#deb ppp authe
router#deb ppp neg
You'll get a better clue as to what is going on, if none of this works. Also, you can do a
router#sh int di0
and it will show if layer 2 LCP and IPCP are open. It should also be bound to a virtual-access interface, with interface and line protocol both being up---this is what should happen. Good luck.

Burt
 
Oh wow, minue---good call. I'm getting to be blind in my old age...lol.

Burt
 
Thanks for yur help/
All working.
You guys are the best!

Steve
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top