So this is driving me nuts, this should be super simple but I don't know what is getting me hung up here...See attached thumbnail of the topology.
I am trying to force R3 to only to learn the 172.1.1.1/32; 172.3.3.3/32 routes via S0/2 and the other two 172.1.1.1/32; 172.4.4.4/32 networks to be learned via R2 via s0/1 on R3.I implemented this via prefix/distribute lists (see configs)
I've been scratching my head on this for a while now, everything seems good from a configuration standpoint, however R3 is not learning the intended 172.x.x.x networks from R2 while R2 has learned the routes from R1 via EIGRP.
Also I did not attach R4s config as it is a stub network and is not participating in the route manipulation I am attempting.
===================================================================
Router 1:
R1# sh runBuilding configuration...
Current configuration : 1495 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 1.1.1.1 255.255.255.255
!
interface Loopback1
ip address 172.1.1.1 255.255.255.255
!
interface Loopback2
ip address 172.2.2.2 255.255.255.255
!
interface Loopback3
ip address 172.3.3.3 255.255.255.255
!
interface Loopback4
ip address 172.4.4.4 255.255.255.255
!
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
ip address 150.1.1.1 255.255.255.0
duplex auto
speed auto
!
interface Serial0/1
no ip address
shutdown
!
interface Serial0/2
ip address 10.0.0.5 255.255.255.252
!
interface Serial0/3
no ip address
shutdown
!
router eigrp 1
redistribute connected
network 1.0.0.0
network 10.0.0.0
network 150.0.0.0
network 172.0.0.0
no auto-summary
!
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
==============================================================================
Router 2:
R2#sh run
Building configuration...
Current configuration : 1212 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 Loopback0
ip address 2.2.2.2 255.255.255.255
!
interface FastEthernet0/0
ip address 150.2.2.2 255.255.255.0
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.9 255.255.255.252
!
interface Serial0/2
no ip address
shutdown
!
interface Serial0/3
no ip address
shutdown
!
router eigrp 1
network 2.0.0.0
network 10.0.0.0
network 150.0.0.0
no auto-summary
!
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
============================================================================
Router 3:
R3#sh run
Building configuration...
Current configuration : 1687 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 Loopback0
ip address 3.3.3.3 255.255.255.255
!
interface FastEthernet0/0
ip address 150.3.3.3 255.255.255.0
duplex auto
speed auto
!
interface Serial0/0
ip address 10.0.0.13 255.255.255.252
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/1
no ip address
!
interface Serial0/2
ip address 10.0.0.6 255.255.255.252
!
interface Serial0/3
no ip address
shutdown
!
router eigrp 1
network 3.0.0.0
network 10.0.0.0
network 150.0.0.0
distribute-list prefix R2-Routes in Serial0/1
distribute-list prefix R1-Routes in Serial0/2
no auto-summary
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
ip access-list standard R1-Routes
ip access-list standard R2-Routes
!
!
ip prefix-list R1-Routes seq 1 permit 172.1.1.1/32
ip prefix-list R1-Routes seq 2 permit 172.3.3.3/32
ip prefix-list R1-Routes seq 3 permit 150.0.0.0/8 ge 24
!
ip prefix-list R2-Routes seq 1 permit 172.2.2.2/32
ip prefix-list R2-Routes seq 2 permit 172.4.4.4/32
ip prefix-list R2-Routes seq 3 permit 150.0.0.0/8 ge 24
!
!
!
!
!
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