I am studying for my ccna 4 practical exam and I am stuck.
– I have two networks and two routers. The routers are connected using a serial connection with PPP encapsulation (200.1.1.0)
Router headOffice se0/0 is connected to router isp1 via se0/0 ip 200.1.1.2
– headOffice running config:
Press RETURN to get started.
headOffice>
headOffice>
headOffice>enable
headOffice#show run
Building configuration…
Current configuration : 798 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname headOffice
!
!
!
!
!
!
!
!
username isp1 password 0 student
!
!
!
!
!
no ip domain-lookup
!
!
!
!
!
!
interface FastEthernet0/0
ip address 10.1.1.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 10.1.4.1 255.255.255.0
duplex auto
speed auto
!
interface Serial0/0
ip address 200.1.1.2 255.255.255.0
encapsulation ppp
ppp authentication chap
!
interface Serial0/1
ip address 10.1.2.1 255.255.255.0
encapsulation frame-relay
!
router rip
version 2
network 10.0.0.0
default-information originate
no auto-summary
!
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/0
!
!
!
!
!
!
!
line con 0
line vty 0 4
login
!
!
!
end
– ISP1 network was set up by the college so I believe it was configured correctly.
I cant get anything to ping from any host in network 10.1.1.0 into ISP1 network specifically host 201.1.1.10
I can ping to 200.1.1.2 (headOffice se0/0) from an address 10.1.1.20 (laptop I set up)
But when I ping 200.1.1.1 ( ISP se0/0 the other side of PPP link) I get “request timed out”.
I checked I have a default static route:
0.0.0.0 0.0.0.0 200.1.1.1 on router headOffice
deafualt-information originate has been issued
I have not configured any acl’s yet
router protocol is rip version 2
Any help would be greatly appreciated.