Link to home
Start Free TrialLog in
Avatar of GivenRandy
GivenRandy

asked on

Simple RIPv2 Mis-configuration ?

I'm using a simple setup, a portion here with 2950 and 2620XM:

Host (PC) <--->  Switch (S1) <---> Router (R1) <---> Router (R2)

The PC is 192.168.1.150 (DHCP via R1). The VLAN 1 for S1 is 192.168.1.9. The S1-to-R1 is fia Fa0/0 at 192.168.1.1. The S1-to-S2 is via R1's S0/0 at 192.168.2.1 and R2's S0/0 at 192.168.2.2. I can't ping R2 from the PC but I can from S1. It would appear that RIPv2 is okay on S1:

==================================
R1#
R1#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

C    192.168.1.0/24 is directly connected, FastEthernet0/0
C    192.168.2.0/24 is directly connected, Serial0/0
R    192.168.3.0/24 [120/1] via 192.168.2.2, 00:00:21, Serial0/0
R1#
R1#
R1#sh ip rip database
192.168.1.0/24    auto-summary
192.168.1.0/24    directly connected, FastEthernet0/0
192.168.2.0/24    auto-summary
192.168.2.0/24    directly connected, Serial0/0
192.168.3.0/24    auto-summary
192.168.3.0/24
    [1] via 192.168.2.2, 00:00:29, Serial0/0
R1#
=========================================

Why can't I ping from the PC? "Destination host unreachable."

The code snippet has show-run for S1.
S1#
S1#
S1#sh run
Building configuration...

Current configuration : 1379 bytes
!
version 12.1
no service pad
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname S1
!
enable secret 5 $1$j72v$.FTOMvXK62I63vUV6FZtE/
!
ip subnet-zero
!
!
spanning-tree mode pvst
no spanning-tree optimize bpdu transmission
spanning-tree extend system-id
!
!
!
!
interface FastEthernet0/1
!
interface FastEthernet0/2
!
interface FastEthernet0/3
!
interface FastEthernet0/4
!
interface FastEthernet0/5
!
interface FastEthernet0/6
!
interface FastEthernet0/7
!
interface FastEthernet0/8
!
interface FastEthernet0/9
!
interface FastEthernet0/10
!
interface FastEthernet0/11
!
interface FastEthernet0/12
!
interface FastEthernet0/13
!
interface FastEthernet0/14
!
interface FastEthernet0/15
!
interface FastEthernet0/16
!
interface FastEthernet0/17
!
interface FastEthernet0/18
!
interface FastEthernet0/19
!
interface FastEthernet0/20
!
interface FastEthernet0/21
!
interface FastEthernet0/22
!
interface FastEthernet0/23
!
interface FastEthernet0/24
!
interface Vlan1
 ip address 192.168.1.9 255.255.255.0
 no ip route-cache
!
ip default-gateway 192.168.1.1
ip http server
!
line con 0
 exec-timeout 0 0
 privilege level 15
 password controls
 logging synchronous
line vty 0 4
 exec-timeout 0 0
 password controls
 logging synchronous
 login
line vty 5 15
 exec-timeout 0 0
 password controls
 logging synchronous
 login
!
!
end

S1#
S1#

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of lanboyo
lanboyo

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
Avatar of gcl_hk
gcl_hk

you need to provide more inform:
sh run for R1 and R2
sh ip route on R2
which device to return the "Destination host unreachable."

Avatar of GivenRandy

ASKER

Of course, I forgot to add default-route. Thanks!