RIB group for route leaking


https://www.juniper.net/documentation/en_US/release-independent/solutions/information-products/pathway-pages/rg-understanding-tn.pdf


https://www.juniper.net/documentation/en_US/junos/topics/topic-map/config_junos_routing_table.html#id-understanding-junos-os-routing-tables





Link

Define

Link 

1- in the rib-group define which route table will import the rib

code
{master:0}[edit routing-options]
Netbox@EX4600-1# show

rib-groups {
    my-rib-group {
        import-rib [ blue.inet.0 inet.0 ];
    }
}




set routing-options rib-groups my-rib-group import-rib blue.inet.0
set routing-options rib-groups my-rib-group import-rib inet.0



Apply

Link

2- configure where the route will be leaked to the rig-group ( pointing to other routing table )


code
{master:0}[edit routing-options]
Netbox@EX4600-1# show
interface-routes {
    rib-group inet my-rib-group;
}


set routing-options interface-routes rib-group inet my-rib-group