Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

1- Interface

2- protocols: OSPF, MPLS, LDP/RSVP/iGP

3- routing-instance

https://www.juniper.net/documentation/en_US/junos/topics/concept/vpls-security-interface-understanding.html


Code Block
titleRSVP and MPLS
collapsetrue
protocols {
    rsvp {
        apply-groups CR-RSVP;
        interface xe-0/0/0.0;
        interface xe-0/1/0.0;
    }
    mpls {
        apply-groups CR-MPLS;
        path-mtu {
            rsvp mtu-signaling;
        }
        traffic-engineering mpls-forwarding;
        smart-optimize-timer 180;
        ipv6-tunneling;
        optimize-timer 1800;
        label-switched-path lspy {
            to y.y.y.y;
            metric 6;
        }
        label-switched-path lspz {
            to z.z.z.z;
        }

        interface xe-0/0/0.0;
        interface xe-0/1/0.0;
    }

...