MPLS

Latest 10 Articles

Older Articles

Overview

Router Types

Operation

MPLS VPNs

Comparison

There are advantages and disadvantages for each approach, so one needs to consider those in addition to:

Type of Traffic

Connectivity Scenarios

Scalability

Deployment

Provisioning

Management / Maintenance

Cost

IOS Configuration Example

ip vrf <vrf-name>

  rd xxx:yyy

  route-target export aaa:bbb

  route-target import aaa:bbb

mpls label protocol ldp

mpls ldp neighbor x.x.x.x password <...>

interface <...>

  description <...>

  mtu 1530

  ip address x.x.x.x

  ip ospf message-digest-key <...>

  ip ospf network point-to-point

  ip ospf cost <...>

  tag-switching ip

router bgp

  <...>        ! all the usual stuff here

  address-family ipv4 vrf <vrf-name>

    redistribute connected

    max-paths 2

    no auto-summary

    no synchronization

JUNOS Configuration Example

protocols

  ldp

    import|export

    keepalive-[interval|timeout]

    preference <...>

    interface <...>

      enable|disable

      hello-interval

      hold-time

      transport-address

protocols

  mpls

    interface <...>

      unit <...>

        family mpls

routing-instances

  <vrf-name>

    instance-type vrf

    interface <...>

    route-distinguisher xxx:yyy

    protocols

      bgp

        <...>        ! all the usual stuff here

    vrf-import

    vrf-export

© Robert Larsen.  All rights reserved.