So I'm plucking through the Simplified book for route and am making notes of things to come back and lab (might add I had I have picked up on many grammatical / typos in the book). Yet I really do enjoy the layout and the general explanations of the book. I just have a slight worry in the back of my head that the commands I am typing might not be correct from the example due to the number of errors I have found.
Anywho, I am working on a scenario explained in the book (page 328 if you have it)
Basically the objective is to filter R2 the ABR from sending specific routes / Summary LSAs from Area 0 (R1) routes to the remainder of the OSPF domain. Specifically the 192.168.1.1 and 192.168.1.3 networks. Well I have checked, re-checked, and triple checked my commands and can't seem to pinpoint why this is not working.
R3 appears to be still learning all the routes / summary LSAs from R1 (area 0) via R2 the ABR into Area 1.
Here are the configs and topology.
sh runBuilding configuration...
Current configuration : 1530 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R1
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
memory-size iomem 10
ip cef
!
!
!
!
no ip domain lookup
ip domain name lab.local
!
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
archive
log config
hidekeys
!
!
!
!
!
!
!
!
interface Loopback0
ip address 192.168.0.1 255.255.255.0
!
interface Loopback1
ip address 192.168.1.1 255.255.255.0
!
interface Loopback2
ip address 192.168.2.1 255.255.255.0
!
interface Loopback3
ip address 192.168.3.1 255.255.255.0
!
interface Loopback4
ip address 192.168.4.1 255.255.255.0
!
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/0
ip address 10.0.0.1 255.255.255.252
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/1
no ip address
shutdown
!
router ospf 1
router-id 1.1.1.1
log-adjacency-changes
network 10.0.0.0 0.0.0.3 area 0
network 192.168.0.0 0.0.0.255 area 0
network 192.168.1.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 0
network 192.168.3.0 0.0.0.255 area 0
network 192.168.4.0 0.0.0.255 area 0
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
!
!
!
!
!
control-plane
!
!
!
!
!
!
!
!
!
!
line con 0
exec-timeout 0 0
privilege level 15
logging synchronous
line aux 0
exec-timeout 0 0
privilege level 15
logging synchronous
line vty 0 4
login
!
!
end
=============================================================
sh run
Building configuration...
Current configuration : 1438 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R2
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
memory-size iomem 10
ip cef
!
!
!
!
no ip domain lookup
ip domain name lab.local
!
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
archive
log config
hidekeys
!
!
!
!
!
!
!
!
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/0
ip address 10.0.0.2 255.255.255.252
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/1
ip address 10.0.0.5 255.255.255.252
!
router ospf 1
router-id 2.2.2.2
log-adjacency-changes
area 0 filter-list prefix Deny-Odd-Only out
network 10.0.0.0 0.0.0.3 area 0
network 10.0.0.4 0.0.0.3 area 1
distribute-list Filter-Odd-Subnets in Serial0/0
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
ip access-list standard Filter-Odd-Subnets
deny 0.0.1.0 255.255.254.255
permit any
!
!
ip prefix-list Deny-Odd-Only seq 5 deny 192.168.1.0/24
ip prefix-list Deny-Odd-Only seq 7 deny 192.168.3.0/24
ip prefix-list Deny-Odd-Only seq 9 permit 0.0.0.0/0 le 32
!
!
!
!
!
control-plane
!
!
!
!
!
!
!
!
!
!
line con 0
exec-timeout 0 0
privilege level 15
logging synchronous
line aux 0
exec-timeout 0 0
privilege level 15
logging synchronous
line vty 0 4
login
!
!
end
=========================================================================
R3#sh run
Building configuration...
Current configuration : 1040 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R3
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
memory-size iomem 10
ip cef
!
!
!
!
no ip domain lookup
ip domain name lab.local
!
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
archive
log config
hidekeys
!
!
!
!
!
!
!
!
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/0
no ip address
shutdown
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/1
ip address 10.0.0.6 255.255.255.252
!
router ospf 1
router-id 3.3.3.3
log-adjacency-changes
network 10.0.0.4 0.0.0.3 area 1
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
!
!
!
!
!
control-plane
!
!
!
!
!
!
!
!
!
!
line con 0
exec-timeout 0 0
privilege level 15
logging synchronous
line aux 0
exec-timeout 0 0
privilege level 15
logging synchronous
line vty 0 4
login
!
!
end