How to Configure BGP Route Reflection
When you actually set up a router to act as a route reflector, the configuration of route reflectors must happen on both the route reflector and the client. Examine router 4’s clients.

Configure route reflection in a router
On the route reflector side, the configuration requires only that you identify the routing cluster for which the router is the reflector:
[edit protocols]
bgp {
group reflector-peers {
type internal;
cluster 172.16.1.1;
neighbor 172.16.2.2;
neighbor 172.16.3.3;
neighbor 172.16.4.4;
}
}
The configuration is identical to a normal IBGP configuration except that a cluster ID is specified.
Notice in this configuration that the cluster ID is configured to be identical to the router ID. Use this configuration as a best practice because with it, you can more easily track the originating cluster for routes that are advertised throughout your network.
On the client side, the configuration is identical to previous IBGP configurations except that you now have only a session configured between each client and the route reflector (not between each other):
[edit protocols]
bgp {
group route-reflector {
type internal;
neighbor 172.16.1.1;
}
}
Each client to the route reflector will have that route reflector configured as an internal peer.
You still have to configure the routing policy to ensure that routes are advertised as expected. The route reflector doesn’t change that requirement.
You, however, don’t want to configure a next-hop-self policy on your route reflector because you don’t want all your externally bound traffic to flow through the route reflectors. You want it to take the shortest path, which isn’t generally through the route reflector. The exception to this rule is when the EBGP session from another AS is directly connected to your route reflector.

Cloud Computing Glossary
cloud computing
A networking solution in which everything — from computing power to computing infrastructure, applications, business processes to personal collaboration — is delivered as a service wherever and whenever you need.

Cloud Computing Glossary
cloud service
The delivery of software, infrastructure, or storage that has been packaged so it can be automated and delivered to customers in a consistent and repeatable manner.

Cloud Computing Glossary
deprovision
The release of cloud services that are no longer needed.

Cloud Computing Glossary
federating
Linking distributed resources together over the cloud.

Cloud Computing Glossary
hypervisor
An operating system that acts as a traffic cop, managing the various virtualization tasks in the cloud to ensure that they make things happen in an orderly manner.

Cloud Computing Glossary
multi-tenancy
The sharing of underlying resources by multiple companies over a cloud.

Cloud Computing Glossary
network attached store
Storage that has its own network address through which it is accessed by the network's workstation users. Acronym: NAS

Cloud Computing Glossary
service level agreement
A contract that stipulates the type of service you need from providers and what type of penalties would result from an unexpected business interruption. Acronym: SLA

Cloud Computing Glossary
solution stack
An integrated set of software that provides everything a developer needs to build an application.

Cloud Computing Glossary
storage area network
A storage systems that is flexible and scalable because it's available to multiple hosts at the same time. Acronym: SAN

Cloud Computing Glossary
vertical industry groups
Workgroups comprised of members from a particular industry such as technology and retail.

Cloud Computing Glossary
virtual memory
The portion of your hard drive that Windows uses to expand the available RAM

Cloud Computing Glossary
virtualization
Using computer resources to imitate other computer resources or whole computers to maximize performance and flexibility.