For the third solution you create a global import map to import only the specific routes needed to reach the desired small number of networks in the Internet. See Figure 103.
Figure 103: Global Import Map Applied to Routes Imported from VRF BGP RIB

The global import map enables global BGP routes to be automatically imported into the BGP RIB table in a VRF. The route map determines which routes are imported and which are not. When they are installed in the VRF routing table, the imported routes point to IP interfaces in the parent virtual router.
To configure a route map and global import map for importing specific routes.
- host1(config)#virtual-router pe1
- host1:pe1(config)#prefix-list internet-host
permit 10.5.5.5/32
- host1:pe1(config)#route-map globimap1
- host1:pe1(config-route-map)#match ip address
prefix-list internethost
- host1:pe1(config-route-map)#exit
- host1:pe1(config)#ip vrf pe11
- host1:pe1(config-vrf)#rd 100:1
- host1:pe1(config-vrf)#route-target both 100:1
- host1:pe1(config-vrf)#global import map globimap1