Hello Guys - I am trying to figure out why static default route is not getting redistributed to any peers (eBGP and iBGP). However, other static routes are getting redistributed. Can i know where is the issue. Thank you in advance
Router-02 #show run | be router
router bgp 64552
bgp log-neighbor-changes
neighbor 192.168.0.66 remote-as 64552
neighbor 192.168.0.66 description iBGP Peer
!
address-family ipv4
redistribute connected
redistribute static
neighbor 192.168.0.66 activate
neighbor 192.168.0.66 default-originate
neighbor 192.168.0.66 soft-reconfiguration inbound
no auto-summary
no synchronization
exit-address-family
Router-02#show ip bgp neighbors 192.168.0.66 advertised-routes
Network Next Hop Metric LocPrf Weight Path
*> 8.8.4.4/32 192.168.0.4 0 32768 ?
Total number of prefixes 42
Router-02#show run | in ip route
no ip route-cache cef
no ip route-cache
ip route 0.0.0.0 0.0.0.0 10.27.0.4 track 10
ip route 8.8.4.4 255.255.255.255 10.27.0.4
Router-02#show ip route
Gateway of last resort is 192.168.0.4 to network 0.0.0.0
S* 0.0.0.0/0 [1/0] via 10.27.0.4
Router-02#
Thanks / Sairam