Configure a routing instance for Router PE1. As part of this configuration, under routing-options, configure a default static route (route 0.0.0.0/0) to be installed in vpna.inet.0, and point the route to the hub CE router’s VPN interface (10.23.0.1). Also, configure BGP under the routing instance to export the default route to the local CE router:
- [edit]
- routing-instances {
-
- vpna {
- instance-type vrf;
- interface t3-0/2/0.0;
- interface at-1/3/1.0;
- route-distinguisher 10.255.14.171:100;
- vrf-import vpna-import;
- vrf-export vpna-export;
-
- routing-options {
-
- static {
- route 0.0.0.0/0 next-hop 10.23.0.1;
- }
- }
-
- protocols {
-
- bgp {
-
- group to-CE1 {
- export export-default;
- peer-as 63001;
- neighbor 192.168.197.14;
- }
- }
- }
- }
- }