You are on page 1of 2

So here is the thing.

192.168.2.0 network in on your serial network right. So you should be able to pi


ng them without having to configure anything since they already know about each
other(directly connected. The use of routing is of the network they don't know.
You're not advertising int gi0/0 and gi 0/0.
What you should do is,
In R1
route ospf 1
network 192.168.1.0 0.0.0.255 area 0
R2
router ospf 1
network 192.168.3.0 0.0.0.255 area 0
This command will do two things
1) Send hello packets on those interface as well
2) Also advertise them.
I did the lab too and it's working.
Output from R1
interface FastEthernet0/0
ip address 192.168.1.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/0
ip address 192.168.2.1 255.255.255.0
clock rate 2000000
!
router ospf 1
log-adjacency-changes
network 192.168.1.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 0
output from R2
interface FastEthernet0/0
ip address 192.168.1.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/0
ip address 192.168.2.1 255.255.255.0
clock rate 2000000
!
router ospf 1
log-adjacency-changes
network 192.168.1.0 0.0.0.255 area 0

network 192.168.2.0 0.0.0.255 area 0


R1#show ip route
Codes: C - connected, S - static, I - IGRP, 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, E - EGP
i - IS-IS, 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
O 192.168.3.0/24 [110/65] via 192.168.2.2, 00:03:00, Serial0/0

R2#show ip route
Codes: C - connected, S - static, I - IGRP, 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, E - EGP
i - IS-IS, 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
O 192.168.1.0/24 [110/65] via 192.168.2.1, 00:06:03, Serial0/0
C 192.168.2.0/24 is directly connected, Serial0/0
C 192.168.3.0/24 is directly connected, FastEthernet0/0

You might also like