Hi All,
Am trying to model redistributing OSPF into BGP using Packet Tracer but am not having any luck , wondering if anyone can help me sort out what I'm doing wrong ?
I have OSPF between a switch and router and then BGP between that router and another router. I have other devices connected as am using this to for a real world issue investigation
Switch A
router ospf 20
router-id 192.168.2.1
log-adjacency-changes
network 10.50.100.0 0.0.0.255 area 2
network 10.10.20.0 0.0.0.3 area 2
network 192.168.2.1 0.0.0.0 area 2
Router A
router ospf 20
router-id 192.168.1.1
log-adjacency-changes
network 172.31.1.0 0.0.0.255 area 0
network 192.168.1.1 0.0.0.0 area 0
network 10.10.20.0 0.0.0.3 area 2
network 10.10.20.4 0.0.0.3 area 2
!
router bgp 64530
bgp log-neighbor-changes
no synchronization
neighbor 172.31.1.5 remote-as 64520
network 192.168.1.1 mask 255.255.255.255
network 172.31.1.0 mask 255.255.255.0
redistribute ospf 20 match internal external 1 external 2
redistribute connected
Router E
router ospf 11
router-id 192.168.1.5
log-adjacency-changes
network 192.168.1.5 0.0.0.0 area 11
network 10.11.10.0 0.0.0.255 area 11
!
router bgp 64520
bgp log-neighbor-changes
no synchronization
neighbor 172.31.1.1 remote-as 64530
network 192.168.1.5 mask 255.255.255.255
network 172.31.1.0 mask 255.255.255.0
redistribute ospf 11 match internal external 1 external 2
redistribute connected
"sh ip route bgp" from both Router A & E has no entries.