Routing

last person joined: 2 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.  configure junos configure junos ospf over mlppp

    Posted 04-21-2009 15:52

    Anyone using junos-es configured  ospf over mlppp (multiple t-1's)

     

    I get all my interfaces to show in show ospf interfaces expcept the t-1's and ls-0/0/0

     

    This what I built so far:

     

    ls-0/0/0 {
        unit 0 {
            encapsulation multilink-ppp;
            family inet {
                address 172.16.63.2/30;

     

        t1-1/0/0 {
            unit 0 {
                family mlppp {
                    bundle ls-0/0/0.0;
                }
            }
        }
        t1-2/0/0 {
            unit 0 {
                family mlppp {
                    bundle ls-0/0/0.0;
                }
            }
        }
        lo0 {
            unit 0 {
                family inet {
                    address 192.168.250.250/32;

     


    protocols {
        ospf {
            area 0.0.0.0 {
                interface all;

     

    routing-instances {
        sunguard {
            interface ls-0/0/0.0;
            protocols {
                ospf {
                    rib-group sunguard-to-inet;
                    export inet-to-sunguard;
                    area 0.0.0.0 {
                        interface ls-0/0/0.0;
     

     

    rrichard@COAUPRJPRISP01> show ospf interface
    Interface           State   Area            DR ID           BDR ID          Nbrs
    ge-0/0/0.0          DR      0.0.0.0         192.168.250.250 0.0.0.0            0
    ge-0/0/1.0          BDR     0.0.0.0         192.168.250.251 192.168.250.250    1
    lo0.0               DR      0.0.0.0         192.168.250.250 0.0.0.0            0


  • 2.  RE: configure junos configure junos ospf over mlppp
    Best Answer

     
    Posted 04-22-2009 00:53

    Hi Bowling

     

    You have to type this to see ospf interfaces under routing-instances:

     

    "show ospf interface instance sunguard"

     

    and you will see the OSPF related informations to your ls interface.

     

    HTH



  • 3.  RE: configure junos configure junos ospf over mlppp

    Posted 04-22-2009 07:52
    cool  thanks.