wan circuit topologies

Upload: luisomar07

Post on 02-Jun-2018

215 views

Category:

Documents


0 download

TRANSCRIPT

  • 8/10/2019 WAN Circuit Topologies

    1/5

    http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/ Page 1

    WAN Circuit Topologies

    By stretch| Wednesday, February 6, 2013 at 4:26 a.m. UTC

    There are a variety of approaches to connecting multiple sites across a wide area network (WAN), ranging from leased lines to

    MPLS to IPsec VPN tunnels. Unfortunately, many of the options and potential WAN topologies are often misunderstood or

    confused with one another.

    Point-to-Point

    A point-to-point circuit, as its name implies, connects exactly two points. This is the simplest type of WAN circuit. Packets sent from

    one site are delivered to the other and vice versa. There is typically some amount of processing and encapsulation performed

    across the carrier's infrastructure, but it is all transparent to the customer.

    A point-to-point circuit is typically delivered as a layer two transport service, which allows the customer to run whatever layer three

    protocols they want with an arbitrary addressing scheme. A customer can change or add an IP subnet in use on a layer two circuit

    without coordinating with their provider.

    Point-to-Multipoint

    http://packetlife.net/users/stretch/http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/
  • 8/10/2019 WAN Circuit Topologies

    2/5

    http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/ Page 2

    The primary detractor of point-to-point circuits is that they don't scale efficiently. Suppose you wanted to deploy a hub-and-spoke

    style WAN topology with twenty branch sites connecting to a single main office. You could deploy twenty point-to-point circuits, one

    to each spoke site from the hub, but that would result in a clutter of twenty separate physical connections at the hub site. Installing

    twenty circuits would be rather expensive, and you might not even be able to fit them all on the same device. This is where a

    point-to-multipoint circuit would be ideal.

    With a point-to-multipoint circuit, we only need a single circuit to the hub site to be shared by all spoke circuits. Each spoke is

    assigneda unique tag which identifies its traffic across the hub circu it. The type of tagging is medium-dependent; we'll use an

    Ethernet circuit with IEEE 802.1Q VLAN trunking as an example. (The spoke circuits may have their traffic tagged or untagged,depending on the specific carrier's service parameters.) Each spoke gets a virtual circuit and routed subinterface on the hub circuit.

    The resulting layer three topology is the same as using several point-to-point circuits but is more practical in implementation.

    interface GigabitEthernet0/0.102

    description Site B

    encapsulation dot1q 102

    ip addr 10.0.0.1 255.255.255.252

    !

    interface GigabitEthernet0/0.103

    description Site C

    encapsulation dot1q 103ip addr 10.0.0.5 255.255.255.252

    !

    interface GigabitEthernet0/0.104

    description Site D

    encapsulation dot1q 104

    ip addr 10.0.0.9 255.255.255.252

    Multipoint-to-Multipoint

    While more efficient than a tree of point-to-point circuits, the major drawback of a point-to-multipoint circuit is that spoke-to-spoke

    traffic must traverse the hub site. This isn't a problem if the spoke sites never need to talk to one another, but can quickly lead to

    http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/
  • 8/10/2019 WAN Circuit Topologies

    3/5

    http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/ Page 3

    problems if users at one spoke site need to access resources at another.

    The logical evolution of the topology may be to expand to a multipoint-to-multipoint design, in which all sites are effectively hub

    sites. Each site is configured with a virtual circuit to each of the othe r sites, forming a full mesh of virtual point-to-point circuits

    across the WAN. But as you can see, multipoint-to-multipoint is hindered by the same scaling limitations as point-to-point: For n

    sites, n(n-1)/2 virtual circuits are necessary to form a full mesh. Although the number of physical circuits grows linearly as sites are

    added, the administrative effort to maintain so many virtual circuits can be a nightmare.

    Metro Ethernet

    Metro Ethernetis a layer two metropolitan area network (MAN) service which simplifies the WAN topology greatly by effectively

    emulating one big LAN switch spanning an entire metro area. All sites connected into the metro Ethernet cloud are placed into a

    single multi-access segment. This allows each site to communicate directly across the carrier's infrastructure with any other site.

    The catch here is that, as its name implies, metro Ethernet is typically limited to within a single geographic area. One could not, for

    example, order metro Ethernet connectivity among Los Angeles, Dallas, and New York. Its multi-access nature also introduces

    design considerations pertaining to the mapping of routing protocol adjacencies that should not be overlooked.

    MPLS VPN

    http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/http://en.wikipedia.org/wiki/Metro%20Ethernethttp://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/
  • 8/10/2019 WAN Circuit Topologies

    4/5

    http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/ Page 4

    Unlike the previous classes, MPLS VPNis a layer three WAN technology. It can be delivered over any layer two transport which

    supports IP. A point-to-point circuit is installed between the customer site and the MPLS provider's nearest point of presence. A

    dynamic routing protocol such as OSPF or BGP is run between the customer edge (CE) and the provider edge (PE) routers to

    exchange routing information which then is propagated to the other sites within the MPLS VPN.

    MPLS is a great choice for WAN connectivity because it offers national and international reach, high redundancy (through the

    carrier's multipath routed infrastructure), and linear scaling. Anotherimportant benefit is that MPLS removes the need to maintain afull mesh of routing adjacencies, which is of particular concern when using BGP. Rather than forming a mesh of adjacencies

    among all site routers, each site router needs only to peer with the provider and the provider handles all inter-site routing across its

    infrastructure.

    The term MPLS can lead to confusion, because MPLS is only run across the carriers infrastructure (the P and PE routers), not on

    the customer's actual circuit. It is referred to as an MPLS VPN (as opposed to just MPLS) because the customer's network is

    implemented as a distinct VPN among many others belonging to the carrier's other customers.

    Internet VPN Overlay

    http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/http://packetlife.net/blog/2011/may/16/creating-mpls-vpn/http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/
  • 8/10/2019 WAN Circuit Topologies

    5/5

    http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/ Page 5

    Finally, we have the do-it-yourself approach. If none of the aforementioned topologies are right for you, or if you find yourself

    severely limited by budget, you might opt for an Internet VPN overlay. With this design, each site has only an Internet circuit.

    Point-to-point or multipoint VPN tunnels (like DMVPN) are built among the sites to deliver secure, private connectivity. The biggest

    drawback to this design is that, underneath the overlay, you're still subject to the limitations of the public Internet, including

    non-guaranteed throughput rates and the absence of QoS controls. An Internet VPN overlay is however well-positioned as a

    backup to a more robust WAN solution.

    Posted in WAN

    http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/http://packetlife.net/blog/category/wan/http://packetlife.net/blog/2008/jul/23/dynamic-multipoint-vpn-dmvpn/http://packetlife.net/blog/2013/feb/6/wan-circuit-topologies/