First of all, why was the concept of Route Reflectors introduced? It´s quite simple actually. If there is no Route Reflector in the iBGP Network - the prefixes are advertised to the first iBGP neighbor, and that's it, he will not advertise it to the next iBGP neighbor due to the BGP inter protocol loop prevention mechanism. What can we do? We have 2 options:
1. Do a full mesh between all the iBGP neighbors, so that all the prefixes of each router are advertised to each and every one of the other BGP routers separately.
2. Introduce a concept of Route Reflector.
As explained below, like the BGP Confederations - Route Reflectors remove the need for a full-mesh iBGP peering. They let all the routers learn all the iBGP routes (prefixes), and they propagate those prefixes to the other iBGP neighbors, not causing loops in the network. There are 2 types of Route Reflector routers, and they are decided based on their role in the network. These are Route Reflector SERVER and CLIENT.
Route Reflector SERVER- are allowed to learn the iBGP routes from their CLIENTS, and advertise them to other iBGP peers
*RR Servers act as normal BGP peers with the NON-RR-CLIENT peers and the eBGP peers, meaning - they send all the BGP Updates
Route Reflector CLUSTER - One or more RR Servers and their clients. With MULTIPLE Clusters - at least one of the RRs must be peered with at least one RR in Each Cluster.
There are 3 implemented Loop Prevention Mechanisms:
1. CLUSTER_LIST - The Cluster ID is automatically included into the BGP PA when generated, so the RR rejects the prefixes where their own Cluster ID appears
2. ORIGINATOR_ID - The PA that lists the RID of the first iBGP peer to advertise the route into the AS.
3. Only advertise BEST routes
The configuration is rather simple, and it contains of 2 steps:
Step 1: Define the CLUSTER ID on ALL the routers (in this Example it's 3)
(config-router)#bgp cluster-id 3
Step 2: There is a difference between the RR SERVER and RR CLIENT (under the BGP configuration):
On RR SERVER configure ALL the clients:
(config-router)#neighbor 172.25.185.22 route-reflector-client
(config-router)#neighbor 172.25.186.59 route-reflector-client
Check the status of each Client on the RR SERVER ROUTER:
Cisqueros_R1#show ip bgp neighbors 172.25.185.22 | i Reflector
Route-Reflector Client
Cisqueros_R1#
*DONT forget to remove the iBGP sessions between CLIENTS, because... well, thats the point of implementing the RRs, to decrease the number of BGP peerings
The Route Reflector will "reflect" the routes received from one iBGP peer to the others.
Have in mind that the RR is a single point of failure in the Network, so - BEST PRACTICE is to have MULTIPLE RR SERVERS
Subscribe to:
Post Comments (Atom)
Most Popular Posts
-
Before we start, lets once again make sure we fully understand what Bridge Domain is. The bridge domain can be compared to a giant distribut...
-
Ever since Cisco bought Insieme and created Cisco ACI, and VMware bought Nicira and created NSX, I've been intensively deep-diving and b...
-
[In collaboration with the guest blogger, Marc Espinosa ] Let's start with the messaging protocols, MQTT and CoAP, and consider which ...
-
By know you should know the following facts about ACI: Cisco Nexus 9k Switches make the ACI Fabric, which is the Control and the Data pla...
-
Get ready to have your mind blown. One of the easiest procedures I've encountered. You just need to follow these 3 steps, to migrate the...
-
The VM-Series firewall for VMware NSX is jointly developed by Palo Alto Networks and VMware. NetX APIs are used to integrate the Palo Alto N...
-
Google has made their Cloud Platform (GCP) so that you can host your application any way your business requires. When we talk about the ...
-
First time we “unpack” ACI, we will find a certain number of potential Spine and potential Leaf switches, and hopefully 3 (or 5) APIC Contro...
-
Narbik Topology for web-iou Disclaimer: I DON’T OWN NOR HAVE AN ACCESS TO THE TOPOLOGY, INITIAL CONFIGS, IOU/IOL BINARIES OR ANY OTHER ...
-
Before I get into the Python for NX-OS, let me explain a few concepts that I've seen Network Engineers have been struggling with. Dev...
So if you have multiple RR servers in a cluster, what's the cluster ID?
ReplyDelete