I'm trying to have the default route from one VRF be imported into another VRF and then learned by the rest of the network on VRF.
Below is a basic configuration we are using. When using this configuation the default route that is being originated from the Intenret VRF is not apppearing in the WAN VRF. Is this possible? If so, can we also have the default route that the WAN VRF has imported be learned throughout the rest of the network which is either BGP or OSPF.
Thanks,
Mike
vrf definition Internet
rd 65000:40
route-target export 65000:40
!
address-family ipv4
exit-address-family
vrf definition WAN
rd 65000:60
route-target export 65000:60
route-target import 65000:40
!
address-family ipv4
exit-address-family
router bgp 65000
bgp log-neighbor-changes
!
address-family ipv4 vrf Internet
network 10.0.40.0 mask 255.255.255.0
default-information originate
exit-address-family
!
address-family ipv4 vrf WAN
redistribute connected
redistribute ospf 60
exit-address-family
!
ip route vrf Internet 0.0.0.0 0.0.0.0 10.0.40.1