Solution 16
Solution 16
The 10.0.0.0 network is not in the first subnet (the zero subnet) so putting the below won’t work:
Because this would advertise host .1 and .2 so if you want to advertise the hosts in the 10.0.0.4
network which are .5 and .6 you need to enter:
Show Runs
RouterA
hostname RouterA
!
interface Loopback0
ip address 192.168.1.1 255.255.255.252
!
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/0
ip address 10.0.0.5 255.255.255.252
clock rate 2000000
!
router ospf 1
log-adjacency-changes
network 10.0.0.4 0.0.0.3 area 0
network 192.168.1.0 0.0.0.3 area 2
Router B
hostname RouterB
!
interface Serial0/0
ip address 10.0.0.6 255.255.255.252
clock rate 2000000
!
interface Serial0/1
ip address 172.16.1.1 255.255.255.252
clock rate 2000000
!
router ospf 1
log-adjacency-changes
network 10.0.0.4 0.0.0.3 area 0
network 172.16.1.0 0.0.0.3 area 1
Router C
!
hostname RouterC
!
interface Serial0/0
ip address 172.16.1.2 255.255.255.252
clock rate 2000000
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
router ospf 1
log-adjacency-changes
network 172.16.1.0 0.0.0.3 area 1
Tests
RouterA#show ip route
RouterA#
RouterA#
RouterA#show ip protocols
Router ID 192.168.1.1
Maximum path: 4
RouterC#show ip route
RouterC#ping 192.168.1.1
!!!!!