Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »






show path-computation-client status

show bgp summary


P Routers

show configuration protocols

>> BGP

>> MPLS

>> OSPF


OSPF config
ospf {
    traffic-engineering;
    area 0.0.0.0 {
        interface ge-0/0/1.0 {
            interface-type p2p;
        }
        interface ge-0/0/3.0 {
            interface-type p2p;
        }
        interface ge-0/0/5.0 {
            interface-type p2p;
            passive {
                traffic-engineering {
                    remote-node-id 172.22.105.1;
                    remote-node-router-id 172.20.20.3;
                }
            }
        }
        interface lo0.0;
    }                                   
}

BGP config:

BGP config
lab@vmx-5> show configuration policy-options 
policy-statement ospf-to-bgp {
    term 10 {
        from protocol [ ospf direct ];
        then accept;
    }
}


lab@vmx-5> show configuration policy-options 
policy-statement ospf-to-bgp {
    term 10 {
        from protocol [ ospf direct ];
        then accept;
    }
}

lab@vmx-5> show configuration protocols bgp     
group ebgp {
    type external;
    export ospf-to-bgp;
    peer-as 64512;
    neighbor 172.22.105.1;
}
group ibgp {
    type internal;
    local-address 172.20.20.5;
    neighbor 172.20.20.6;
    neighbor 172.20.20.2;
}



































  • No labels