Routing

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-instances with BGP route

    Posted 12-04-2011 22:45

    Gents,

     

    I create new routing-instances "test" under this routing-instances I configured BGP ,AS and add the interface ge-2/0/4.146 as following: 

     

    ---------------------------------------------------------------------------

     

    instance-type virtual-router;

     interface ge-2/0/4.146;

    routing-options {    

    autonomous-system XXXX;

     }

    protocols {    

     bgp {        

    group EBGP-test {         

        type external;            

     local-address 172.16.191.162;          

       family inet {                

     unicast {                    

     rib-group RIB-TEST;              

       }           

      }          

       peer-as 65000;         

        neighbor 172.16.191.161;   

          }  

       }

     }

     

    ------------------------------------------------------------------

     

    then i create rib-group to teak copy for the BGP route from "test.inet.0" table to the master table "inet.0"

     

    -----------------------------------------------------------------

     

    edite routing-options:

     

    interface-routes {  

       rib-group inet RIB-TEST;

     

     }

     

    rib-groups {  

     

        RIB-TEST {      

     

       import-rib [ test.inet.0  inet.0 ];    

     

     }

     

     }

    -------------------------------------------------------------

     

     

     So the rib-groub succeed and i can show the bgp router under the inet.0 and test.inet.0.

    But from the master routing-instances i can't pingable?!!, But when i ping from routing-instances test i can pingable.

     

     

    So could you please help me to understanding what its issue?!!

     

     

    Best Regards



  • 2.  RE: routing-instances with BGP route

    Posted 12-05-2011 12:53

    Hi,

     

    You have to apply rib-group " RIB-TEST" also under protocol direct otherwise next-hop won't be reachable from inet.0, that's the reason you have this problems with failed ping...