The MPLS-OPS Archive[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index][Thread Index][Author Index][Subject Index] RE: Juniper MPLS
Well,
if your IGP is already established, then you just need to select which signaling
protocol you want to use. Juniper supports both LDP and RSVP. You'll get
automatic LSP creation with LDP, but with RSVP, you get Traffic Engineering,
named LSPs, Fast ReRoute, etc.
You
can also go with a hybrid LDP over RSVP solution, if you so
choose.
For
grins, let's assume you go with RSVP. We have to configure a couple of steps to
get MPLS working:
1.
Enable family MPLS on the backbone interface (facing your
core)
2.
Enable the RSVP protocol
3.
Enable the MPLS protocol
4.
Build the LSP
For
the first step, just enable family mpls like you would family inet. That
enables MPLS support for that interface (e.g., set interface so-0/0/0 unit 0
family mpls)
For the second step, under protocols rsvp, enable each interface
individually, or better yet, enable all, then specifically disable
fxp0.0
protocols {
rsvp { interface all; interface fxp0.0 { disable; } } }
Same
thing for step #3. You'll also see the LSP config here:
protocols {
mpls { label-switched-path TO-ROUTER_Z { to xyz.xyz.xyz.xyz; <-- loopback of remote node } interface
all;
} This
is a pretty basic config, but it should get you started. Remember, LSPs
are unidirectional and only configured on the Ingress router, so you'll
need to configure an LSP on Router_Z pointing back to the loopback IP of this
router (Router_A).
Hope
this helps.
-Jeff
-----Original Message-----
From: Hernan Hevia [mailto:hhevia@ntzn.com] Sent: Thursday, October 14, 2004 8:57 AM To: Richmond, Jeff (ELI); mpls-ops@mplsrc.com Subject: RE: [MPLS-OPS]: Juniper MPLS
|
|