Routing

 View Only
last person joined: 4 days ago 

Ask questions and share experiences about ACX Series, CTP Series, MX Series, PTX Series, SSR Series, JRR Series, and all things routing, including portfolios and protocols.
  • 1.  Routing through MPLS Network - VRF?

     
    Posted 11-30-2017 07:04

    Hi,

     

    After a user has entered a network via L2TP and PPP, am I right in thinking that the best method of getting that user across an MPLS backbone ISP is via VRF's? If it is then could someone please show me an example of this?

     

    Thanks



  • 2.  RE: Routing through MPLS Network - VRF?
    Best Answer

     
    Posted 11-30-2017 07:05

    Hi Clive,

     

    All you need is to create the loopback and address-assignment under the VRF.

     

    You can use radius-attribute “ERX-Virtual-Router-Name := "TEST" or you can use predefined variable.

     

    LNS# show dynamic-profiles TEST

    predefined-variable-defaults {

        routing-instances TEST;

    }

     

    LNS# dynamic-profiles TEST

    routing-instances {

        "$junos-routing-instance" {

            interface "$junos-interface-name";

        }

    }

     

    LNS# show routing-instances TEST   

    instance-type vrf;

    interface lo0.4;

    vrf-target target:X:X;

    access {

        address-assignment {

            pool LAB {

                family inet {

                    network 10.0.0.0/22;

               }

            }

        }

    }

     

    Regards,
    Rahul 



  • 3.  RE: Routing through MPLS Network - VRF?

     
    Posted 11-30-2017 07:50

    Hi Rahul,

     

    Thank you.... much appreciated

     

    Thanks

     

    Clive