Configuring Route Reflectors on Huawei Routers
- March 12, 2024
- Posted by: Lyfey Technologies
- Category: Networking

IBGP uses the split horizon rule to avoid loops within an AS, when an IBGP router receives a route from another IBGP peer, it does not advertise that route to other IBGP peers.

In a network with multiple IBGP peerings, we need to find a solution to ensure full connectivity within the network. There are main mechanisms used to achieve full connectivity:
- Full mesh topology: Every router establishes IBGP peering with every other router. This is not an ideal solution for a Network with many routers, it’s not scalable and hence not commonly used.
- Route Reflector: An RR is a designated router that reflects routes learned from one IBGP peer to all other peers. All routers only establish peering with the RR. It’s recommended to have multiple RRs in a large network to avoid a single point of failure.
- BGP confederation: Divides the AS into sub-ASes to reduce the number of required IBGP peering. The nested AS also form EBGP peering between themselves.
This lab simulates how to configure router reflectors on Huawei routers. As shown in the topology above topology, we have two clusters. R2 is the RR of cluster 1 while R3 is the RR for cluster 2. R5 and R6 are RR clients of R2 while R4, R7, and R8 are RR clients of R3. R1 is a non-client. We simulate route exchange by creating a network 100.100.100.100/32 on R1 and advertise it in BGP.
**********************************R1
sys
#
sysname R1
#
interface GigabitEthernet0/0/0
undo shutdown
ip address 30.30.30.2 255.255.255.254
#
interface GigabitEthernet0/0/1
undo shutdown
ip address 30.30.30.0 255.255.255.254
#
interface Loopback100
ip address 100.100.100.100 255.255.255.255
#
bgp 64000
router-id 1.1.1.1
peer 30.30.30.1 as-number 64000
peer 30.30.30.3 as-number 64000
#
ipv4-family unicast
undo synchronization
network 100.100.100.100 255.255.255.255
peer 30.30.30.3 enable
peer 30.30.30.1 enable
#
******************************R2
#
sysname R2
#
interface GigabitEthernet0/0/0
undo shutdown
ip address 30.30.30.3 255.255.255.254
#
interface GigabitEthernet0/0/1
undo shutdown
ip address 40.40.40.0 255.255.255.254
#
interface GigabitEthernet0/0/2
undo shutdown
ip address 10.10.10.4 255.255.255.254
#
interface GigabitEthernet0/0/3
undo shutdown
ip address 10.10.10.0 255.255.255.254
#
bgp 64000
router-id 2.2.2.2
peer 30.30.30.2 as-number 64000
peer 40.40.40.1 as-number 64000
group RR_PEER internal
peer 10.10.10.5 as-number 64000
peer 10.10.10.5 group RR_PEER
peer 10.10.10.1 as-number 64000
peer 10.10.10.1 group RR_PEER
#
ipv4-family unicast
undo synchronization
undo reflect between-clients
reflector cluster-id 2.2.2.2
peer 30.30.30.2 enable
peer 40.40.40.1 enable
peer RR_PEER enable
peer RR_PEER reflect-client
peer 10.10.10.1 enable
peer 10.10.10.1 group RR_PEER
peer 10.10.10.5 enable
peer 10.10.10.5 group RR_PEER
#
commit
****************************R3
sys
#
sysname R3
#
interface GigabitEthernet0/0/0
undo shutdown
ip address 40.40.40.1 255.255.255.254
#
interface GigabitEthernet0/0/1
undo shutdown
ip address 30.30.30.1 255.255.255.254
#
interface GigabitEthernet0/0/2
undo shutdown
ip address 20.20.20.4 255.255.255.254
#
interface GigabitEthernet0/0/3
undo shutdown
ip address 20.20.20.2 255.255.255.254
#
interface Ethernet0/0/0
undo shutdown
ip address 20.20.20.0 255.255.255.254
#
bgp 64000
router-id 2.2.2.2
peer 30.30.30.0 as-number 64000
peer 40.40.40.0 as-number 64000
group RR_PEER internal
peer 20.20.20.1 as-number 64000
peer 20.20.20.1 group RR_PEER
peer 20.20.20.5 as-number 64000
peer 20.20.20.5 group RR_PEER
peer 20.20.20.3 as-number 64000
peer 20.20.20.3 group RR_PEER
#
ipv4-family unicast
undo synchronization
undo reflect between-clients
reflector cluster-id 2.2.2.2
peer 30.30.30.0 enable
peer 40.40.40.0 enable
peer RR_PEER enable
peer RR_PEER reflect-client
peer 20.20.20.1 enable
peer 20.20.20.1 group RR_PEER
peer 20.20.20.5 enable
peer 20.20.20.5 group RR_PEER
peer 20.20.20.3 enable
peer 20.20.20.3 group RR_PEER
#
commit
************************************R4
#
sysname R4
#
interface Ethernet0/0/0
undo shutdown
ip address 20.20.20.1 255.255.255.254
#
bgp 64000
router-id 4.4.4.4
peer 20.20.20.0 as-number 64000
#
ipv4-family unicast
undo synchronization
peer 20.20.20.0 enable
#
return
**************************************R5
#
sysname R5
#
interface GigabitEthernet0/0/0
undo shutdown
ip address 10.10.10.5 255.255.255.254
#
interface GigabitEthernet0/0/1
undo shutdown
ip address 10.10.10.2 255.255.255.254
#
bgp 64000
router-id 5.5.5.5
peer 10.10.10.4 as-number 64000
#
ipv4-family unicast
undo synchronization
peer 10.10.10.4 enable
#
return
*******************************R6
#
sysname R6
#
interface GigabitEthernet0/0/0
undo shutdown
ip address 10.10.10.1 255.255.255.254
#
interface GigabitEthernet0/0/1
undo shutdown
ip address 10.10.10.3 255.255.255.254
#
bgp 64000
router-id 6.6.6.6
peer 10.10.10.0 as-number 64000
#
ipv4-family unicast
undo synchronization
peer 10.10.10.0 enable
#
return
***********************************R7
#
sysname R7
#
interface GigabitEthernet0/0/0
undo shutdown
ip address 20.20.20.5 255.255.255.254
#
bgp 64000
router-id 7.7.7.7
peer 20.20.20.4 as-number 64000
#
ipv4-family unicast
undo synchronization
peer 20.20.20.4 enable
#
return
***********************************R8
#
sysname R8
#
interface GigabitEthernet0/0/0
undo shutdown
ip address 20.20.20.3 255.255.255.254
#
bgp 64000
router-id 8.8.8.8
peer 20.20.20.2 as-number 64000
#
ipv4-family unicast
undo synchronization
peer 20.20.20.2 enable
#
return
Verify BGP peering status on the RR routers.


Verify BGP routing table for RR clients.


Tadalis SX: mexitil online pharmacy – permethrin cream pharmacy
sildenafil order: VGR Sources – sildenafil 25 mg price in india
buy viagra: sildenafil cost in india – over the counter viagra
order viagra professional: drug prices sildenafil – where can i get over the counter viagra
viagra tablet 150 mg viagra australia over the counter viagra pills online order
https://vgrsources.com/# viagra caps
cheap generic viagra canadian pharmacy: sildenafil online prescription – buy viagra cheap australia
how to get a viagra prescription: viagra online – order sildenafil online without prescription
viagra professional pfizer: can you order viagra without a prescription – cheap sildenafil tablets uk
viagra soft gel capsules VGR Sources buy viagra australia
cheap viagra prescription online: VGR Sources – sildenafil 50 mg canada
viagra 100mg price: sildenafil without prescription from canada – price for viagra 100mg
viagra 150 mg: viagra cost per pill – sildenafil 20 mg over the counter
sildenafil 50 mg no prescription VGR Sources viagra generic
https://vgrsources.com/# real viagra
viagra 100 mg best price: VGR Sources – where can i get viagra in australia
viagra for female for sale: VGR Sources – viagra brand canada
cheapest sildenafil 100 mg online: VGR Sources – cheap viagra in usa
sildenafil 50mg buy where to buy sildenafil in canada viagra 10mg price in india
cheapest price for sildenafil 100 mg: VGR Sources – viagra soft
order sildenafil 50 mg: best price for generic viagra – sildenafil buy cheap
can i buy viagra without a prescription: VGR Sources – online sildenafil india
viagra 50 mg cost VGR Sources viagra for sale in us
https://vgrsources.com/# sildenafil 20 mg prescription online
viagra 25 mg daily: order viagra 50 mg – canadian online pharmacy generic viagra
viagra pill for women: best viagra tablet – viagra 50
sildenafil 100mg usa cheap: VGR Sources – cheap generic viagra online canada
viagra pill price in mexico viagra pills over the counter buy viagra new zealand
sildenafil 100mg order: VGR Sources – sildenafil for daily use
viagra us: VGR Sources – cost of female viagra
sildenafil tablets 100mg online: sildenafil 20 mg buy online – sildenafil 100 capsule
online generic viagra: viagra for women australia – how much is the viagra pill
viagra canadian pharmacy paypal where do you get viagra sildenafil cheap buy
viagra cost in uk: VGR Sources – viagra 150 mg price
https://vgrsources.com/# cheap generic viagra 100mg canada
viagra cheapest: viagra gel australia, – best price for sildenafil
sildenafil online australia: VGR Sources – 200mg sildenafil paypal
can i buy viagra over the counter in australia viagra tablets for sale best price for viagra
sildenafil 60 mg cost: VGR Sources – viagra online purchase
viagra online prices: viagra online in india – buy viagra hong kong
viagra price comparison: VGR Sources – viagra in mexico over the counter
how to buy viagra over the counter uk viagra cost per pill purchase cheap viagra online
india viagra generic: VGR Sources – buy sildenafil pills
https://vgrsources.com/# how to order viagra online safely
viagra gel for sale: canadian online pharmacy viagra – viagra cost in mexico
sildenafil 100mg tablets: viagra canada fast shipping – generic viagra gel
viagra tablet price online viagra buy online canada can i buy viagra in mexico
cheap real viagra online: VGR Sources – buy viagra online discount
sildenafil tab 50mg cost: VGR Sources – best price for viagra in uk
sildenafil discount price: VGR Sources – buy generic viagra online in usa
where to buy viagra over the counter in usa: can i buy viagra over the counter australia – sildenafil australia
female viagra south africa female viagra australia where to buy viagra prices
buy generic viagra soft tabs: VGR Sources – viagra soft sale
https://vgrsources.com/# generic viagra online fast delivery
where can i order generic viagra: VGR Sources – best sildenafil
price of viagra 100mg uk: purchase genuine viagra – can i buy viagra over the counter australia
cheap viagra india online VGR Sources where can you get viagra pills
viagra canada fast shipping: VGR Sources – female viagra pill online
online sildenafil: VGR Sources – sildenafil online prices
female viagra no prescription: VGR Sources – compare prices viagra
female viagra pill VGR Sources 12.5 mg viagra
order female viagra online: cheap viagra overnight – Viagra 50mg
https://vgrsources.com/# sildenafil order
order cheap generic viagra online: VGR Sources – how to get viagra over the counter
where can i buy viagra: VGR Sources – sildenafil 2
viagra online prescription canada: VGR Sources – sildenafil 100 canadian pharmacy
200mg sildenafil paypal sildenafil citrate tablets how much is a 100mg viagra
Lipi Pharm: Lipi Pharm – Lipi Pharm
LipiPharm: Generic Lipitor fast delivery – LipiPharm
Crestor Pharm: Best price for Crestor online USA – Crestor Pharm
LipiPharm lipitor lawsuit settlement amounts USA-based pharmacy Lipitor delivery
http://semaglupharm.com/# how to administer semaglutide
average cost of prednisone: PredniPharm – prednisone 200 mg tablets
Rosuvastatin tablets without doctor approval: Crestor Pharm – CrestorPharm
Order Rybelsus discreetly: FDA-approved Rybelsus alternative – SemagluPharm
Crestor Pharm Crestor Pharm how fast does crestor work
atorvastatin and coq10: Lipi Pharm – Lipi Pharm
atorvastatin drugs.com: pronounce atorvastatin – Discreet shipping for Lipitor
Semaglu Pharm: Safe delivery in the US – Semaglu Pharm
http://crestorpharm.com/# Crestor Pharm
where can i buy prednisone canadian online pharmacy prednisone can you buy prednisone over the counter in usa
Crestor Pharm: CrestorPharm – CrestorPharm
order prednisone 100g online without prescription: 20mg prednisone – prednisone nz
Lipi Pharm: LipiPharm – USA-based pharmacy Lipitor delivery
Crestor Pharm crestor 20 mg precio CrestorPharm
Rybelsus 3mg 7mg 14mg: Semaglu Pharm – how to get on semaglutide
https://crestorpharm.com/# No doctor visit required statins
what tier drug is rosuvastatin what tier drug is crestor CrestorPharm
CrestorPharm: crestor reviews – Crestor Pharm
Atorvastatin online pharmacy: atorvastatin abuse – lipitor coupons
is atorvastatin a psychotropic medication: antidote for atorvastatin – lipitor what does it do
Predni Pharm prednisone online prednisone 50 mg coupon
Best price for Crestor online USA: how does rosuvastatin work – Crestor Pharm
purchase prednisone: how can i get prednisone online without a prescription – buy prednisone online without a script
http://crestorpharm.com/# CrestorPharm
generic replacement for crestor: Crestor Pharm – crestor interactions with vitamins
Cheap Lipitor 10mg / 20mg / 40mg Order cholesterol medication online Lipi Pharm
what does rosuvastatin 40 mg look like: CrestorPharm – how expensive is crestor
Semaglu Pharm: Semaglu Pharm – Semaglu Pharm
SemagluPharm SemagluPharm how does rybelsus work for diabetes
buy prednisone with paypal canada: PredniPharm – Predni Pharm
Crestor Pharm: CrestorPharm – Crestor Pharm
Online statin drugs no doctor visit: generic lipitor cost – Lipi Pharm
https://prednipharm.shop/# Predni Pharm
rosuvastatin classification when to take rosuvastatin morning or night Over-the-counter Crestor USA
what is the active ingredient in rybelsus: п»їBuy Rybelsus online USA – Semaglu Pharm
Affordable Rybelsus price: SemagluPharm – how to take semaglutide shot
what happens if you take too much semaglutide Safe delivery in the US Semaglu Pharm
LipiPharm: LipiPharm – Lipi Pharm
Lipi Pharm: Online statin drugs no doctor visit – п»їBuy Lipitor without prescription USA
https://prednipharm.com/# Predni Pharm
Predni Pharm generic prednisone tablets Predni Pharm
semaglutide san antonio: Rybelsus 3mg 7mg 14mg – Online pharmacy Rybelsus
LipiPharm: does lipitor cause hair loss – Safe atorvastatin purchase without RX
Buy statins online discreet shipping Crestor Pharm CrestorPharm
prednisone brand name canada: Predni Pharm – buy cheap prednisone
Lipi Pharm: LipiPharm – repatha vs lipitor
CrestorPharm CrestorPharm Crestor Pharm
http://semaglupharm.com/# Semaglu Pharm
Cheap Lipitor 10mg / 20mg / 40mg: Online statin drugs no doctor visit – Atorvastatin online pharmacy
prednisone 15 mg daily: prednisone where can i buy – Predni Pharm
rosuvastatin and fenofibrate tablets Safe online pharmacy for Crestor rosuvastatin drug class
http://semaglupharm.com/# SemagluPharm
http://lipipharm.com/# LipiPharm
FDA-approved generic statins online: Lipi Pharm – Lipi Pharm
PredniPharm: buy prednisone online without a prescription – 50mg prednisone tablet
https://semaglupharm.com/# Where to buy Semaglutide legally
semaglutide skin sensitivity Semaglu Pharm SemagluPharm
Predni Pharm: cost of prednisone 5mg tablets – PredniPharm
prednisone 5443: prednisone 20 mg purchase – Predni Pharm
https://semaglupharm.com/# SemagluPharm
Order rosuvastatin online legally Best price for Crestor online USA CrestorPharm
Predni Pharm: Predni Pharm – prednisone for sale no prescription
https://semaglupharm.com/# Semaglu Pharm
https://semaglupharm.shop/# Online pharmacy Rybelsus
CrestorPharm: Crestor 10mg / 20mg / 40mg online – Crestor Pharm
Semaglu Pharm SemagluPharm Semaglu Pharm
https://semaglupharm.shop/# Semaglu Pharm
prednisone 4mg tab: where to buy prednisone uk – where to buy prednisone in canada
Rybelsus side effects and dosage: Rybelsus side effects and dosage – Rybelsus side effects and dosage
crestor 20 mg para que sirve Crestor Pharm can you take berberine with rosuvastatin
https://semaglupharm.shop/# Online pharmacy Rybelsus
Order cholesterol medication online: LipiPharm – LipiPharm
Affordable Rybelsus price: Order Rybelsus discreetly – Semaglu Pharm
http://crestorpharm.com/# CrestorPharm
Semaglu Pharm Safe delivery in the US Semaglutide tablets without prescription