![]() |
|||||||||||||||||||||||||||||
MPLS VPN L3VPN over GRE
![]() |
|||||||||||||||||||||||||||||
Contents
MPLS VPN--L3VPN over GRELast Updated: December 15, 2011
The MPLS VPN--L3VPN over GRE feature provides a mechanism for tunneling Multiprotocol Label Switching (MPLS) packets over a non-MPLS network. The MPLS VPN--L3VPN over GRE feature utilizes MPLS over generic routing encapsulation (MPLSoGRE) to encapsulate MPLS packets inside IP tunnels. This action creates a virtual point-to-point link across non-MPLS networks.
Finding Feature InformationYour software release may not support all the features documented in this module. For the latest feature information and caveats, see the release notes for your platform and software release. To find information about the features documented in this module, and to see a list of the releases in which each feature is supported, see the Feature Information Table at the end of this document. Use Cisco Feature Navigator to find information about platform support and Cisco software image support. To access Cisco Feature Navigator, go to www.cisco.com/go/cfn. An account on Cisco.com is not required. Prerequisites for MPLS VPN--L3VPN over GREBefore you configure the MPLS VPN--L3VPN over GRE feature, ensure that your MPLS Virtual Private Network (VPN) is configured and working properly. See the Configuring MPLS Layer 3 VPNs module for information about setting up MPLS VPNs. Ensure that the following routing protocols are configured and working properly: Restrictions for MPLS VPN--L3VPN over GREThe MPLS VPN--L3VPN over GRE feature does not support the following:
Information About MPLS VPN--L3VPN over GREThe MPLS VPN--L3VPN over GRE feature provides a mechanism for tunneling MPLS packets over non-MPLS networks. MPLS VPN--L3VPN over GRE allows you to create a GRE tunnel across a non-MPLS network. The MPLS packets are encapsulated within the GRE tunnel packets, and the encapsulated packets traverse the non-MPLS network through the GRE tunnel. When GRE tunnel packets are received at the other side of the non-MPLS network, the GRE tunnel packet header is removed and the inner MPLS packet is forwarded to its final destination. The MPLS VPN--L3VPN over GRE feature supports three GRE tunnel configurations: PE-to-PE TunnelingThe provider edge-to-provider edge (PE-to-PE) tunneling configuration provides a scalable way to connect multiple customer networks across a non-MPLS network. With this configuration, traffic that is destined to multiple customer networks is multiplexed through a single GRE tunnel.
As shown in the figure below, the PE routers assign VPN routing and forwarding (VRF) numbers to the customer edge (CE) routers on each side of the non-MPLS network. The PE routers use routing protocols such as BGP, OSPF, or Routing Information Protocol (RIP) to learn about the IP networks behind the CE routers. The routes to the IP networks behind the CE routers are stored in the associated CE router's VRF routing table. The PE router on one side of the non-MPLS network uses the routing protocols (that are operating within the non-MPLS network) to learn about the PE router on the other side of the non-MPLS network. The learned routes that are established between the PE routers are then stored in the main or default routing table. The opposing PE router uses BGP to learn about the routes that are associated with the customer networks behind the PE routers. These learned routes are not known to the non-MPLS network. For this example, BGP defines a static route to the BGP neighbor (the opposing PE router) through the GRE tunnel that spans the non-MPLS network. Because the routes that are learned by the BGP neighbor include the GRE tunnel next hop, all customer network traffic is sent using the GRE tunnel. P-to-PE TunnelingAs shown in the figure below, the provider-to-provider edge (P-to-PE) tunneling configuration provides a way to connect a PE router (P1) to an MPLS segment (PE-2) across a non-MPLS network. In this configuration, MPLS traffic that is destined to the other side of the non-MPLS network is sent through a single GRE tunnel. P-to-P TunnelingAs shown in the figure below, the provider-to-provider (P-to-P) configuration provides a method of connecting two MPLS segments (P1 to P2) across a non-MPLS network. In this configuration, MPLS traffic that is destined to the other side of the non-MPLS network is sent through a single GRE tunnel. How to Configure MPLS VPN--L3VPN over GREConfiguring the MPLS VPN--L3VPN over GRE Tunnel InterfaceTo configure the MPLS VPN--L3VPN over GRE feature, you must create a GRE tunnel to span the non-MPLS networks. You must perform this procedure on the devices located at both ends of the GRE tunnel. Before You Begin
SUMMARY STEPS
Before configuring the MPLS VPN--L3VPN over GRE feature, ensure that your MPLS VPN and the appropriate routing protocols are configured and working properly. See the c_Prerequisites_for_MPLS_VPN--L3VPN_over_GRE_1054956.xml#con_1054956. DETAILED STEPS ExamplesThe following example shows a GRE tunnel configuration that spans a non-MPLS network. This example shows the tunnel configuration on the PE devices (PE1 and PE2) located at both ends of the tunnel: Configuration Examples for MPLS VPN--L3VPN over GREMPLS Configuration with MPLS VPN--L3VPN over GRE ExampleThe following basic MPLS configuration example uses a GRE tunnel to span a non-MPLS network. This example is similar to the configuration shown in the first figure above. PE1 Configuration! mpls ip ! ip vrf vpn1 rd 100:1 route-target import 100:1 route-target export 100:1 ! interface loopback 0 ip address 10.2.2.2 255.255.255.255 ! interface GigabitEthernet 0/1/2 ip address 10.1.1.1 255.255.255.0 ! interface Tunnel 1 ip address 10.0.0.1 255.255.255.0 tunnel source 10.1.1.1 tunnel destination 10.1.1.2 mpls ip ! interface GigabitEthernet 0/1/3 ip vrf forwarding vpn1 ip address 10.10.0.1 255.255.255.0 ! router bgp 100 neighbor 10.5.5.5 remote-as 100 neighbor 10.5.5.5 update-source loopback0 ! address-family vpnv4 neighbor 10.5.5.5 activate neighbor 10.5.5.5 send community-extended ! address-family ipv4 vrf vpn1 neighbor 10.10.0.2 remote-as 20 neighbor 10.10.0.2 activate ! PE2 Configuration! mpls ip ! ip vrf vpn1 rd 100:1 route-target import 100:1 route-target export 100:1 ! interface loopback 0 ip address 10.5.5.5 255.255.255.255 ! interface GigabitEthernet 0/1/1 ip address 10.1.1.2 255.255.255.0 ! interface Tunnel 1 ip address 10.0.0.2 255.255.255.0 tunnel source 10.1.1.2 tunnel destination 10.1.1.1 mpls ip ! interface GigabitEthernet 0/0/5 ip vrf forwarding vpn1 ip address 10.1.2.1 255.255.255.0 ! router bgp 100 neighbor 10.2.2.2 remote-as 100 neighbor 10.2.2.2 update-source loopback0 ! address-family vpnv4 neighbor 10.2.2.2 activate neighbor 10.2.2.2 send community-extended ! address-family ipv4 vrf vpn1 neighbor 10.1.2.2 remote-as 30 neighbor 10.1.2.2 activate ! Additional ReferencesRelated Documents
MIBsTechnical Assistance
Feature Information for MPLS VPN--L3VPN over GREThe following table provides release information about the feature or features described in this module. This table lists only the software release that introduced support for a given feature in a given software release train. Unless noted otherwise, subsequent releases of that software release train also support that feature. Use Cisco Feature Navigator to find information about platform support and Cisco software image support. To access Cisco Feature Navigator, go to www.cisco.com/go/cfn. An account on Cisco.com is not required.
Cisco and the Cisco logo are trademarks or registered trademarks of Cisco and/or its affiliates in the U.S. and other countries. To view a list of Cisco trademarks, go to this URL: www.cisco.com/go/trademarks. Third-party trademarks mentioned are the property of their respective owners. The use of the word partner does not imply a partnership relationship between Cisco and any other company. (1110R) Any Internet Protocol (IP) addresses and phone numbers used in this document are not intended to be actual addresses and phone numbers. Any examples, command display output, network topology diagrams, and other figures included in the document are shown for illustrative purposes only. Any use of actual IP addresses or phone numbers in illustrative content is unintentional and coincidental. © 2011 Cisco Systems, Inc. All rights reserved.
|
|||||||||||||||||||||||||||||