router-reflector junos example config between RR-cluster and RR-client

Home » Blog » Routing » bgp » bgp design juniper » router-reflector junos example config between RR-cluster and RR-client

router-reflector junos example config between RR-cluster and RR-client

09.01 2020 | by massimiliano

router-reflector junos example config between RR-cluster and RR-client     ARCHITETTURA DI RIFERIMENTO:             CONFIG […]


https://www.ingegnerianetworking.com/wp-content/uploads/2020/01/RR-config-junos-example-1-118.png

router-reflector junos example config between RR-cluster and RR-client

 

 

ARCHITETTURA DI RIFERIMENTO:

 

 

RR config junos example 1

 

 

 

 

CONFIG PE1 (RR-Clients)

 

routing-options {

  autonomous-system 65000

}

protocols {

bgp {

       group IBGP {

           type internal;

           local-address 192.168.0.1;

           family inet {

               unicast;

           }

           family inet-vpn {

                unicast;

           }

           family l2vpn {

                signaling;

           }

           export IBGP-RR-OUT

           neighbor 10.1.1.5;

           neighbor 10.1.1.7;

           }         

}

policy-options {

     policy-statement IBGP-RR-OUT {
                then {
                     next-hop self;

 

 

 

 

CONFIG RR1 (RR-Cluster)

 

routing-options {

  autonomous-system 65000

}

protocols {

bgp {

       group IBGP {

           type internal;

           local-address 10.1.1.5;

           family inet {

               unicast;

           }

           family inet-vpn {

                unicast;

           }

           family l2vpn {

                signaling;

           }

            export NHS-RR;

            neighbor 10.1.1.7;

          }

          group IBGP-RR-Clients {

           type internal;

           local-address 10.1.1.5;

           family inet {

               unicast;

           }

           family inet-vpn {

                unicast;

           }

           family l2vpn {

                signaling;

           }

            cluster 10.1.1.5; 

            neighbor 192.168.0.1;

            neighbor 192.168.0.2;

            neighbor 192.168.0.3;

            neighbor 192.168.0.4;

            }         

}

policy-options {

     policy-statement NHS-RR {
                then {
                     next-hop self;

 

 

 

NOTA: la configurazione suddetta è simmetrica agli altri nodi sia essi PE2-PE3-PE4 come Client che RR2 come Router-Reflector

 

Torna in alto