Skip to main content

What is Multicast Rendezvous Point (RP) ?


IP Multicast Routing

A Rendezvous Point (RP) is nothing but a router in a multicast network domain that acts as a shared root for a multicast shared tree. We can assign any number of routers and can be configured to work as Rendezvous Point RPs and they can be configured to cover different group ranges.














 




The reference point for the root of the shared tree

  • RP learns about the source using PIM register messages (RP pack with register stopped add (s.g).
  • RP learns about the destination using PIM join messages and Merge two trees together.
  • Joining the shortest path to the source and prune toward RP.
All the routers must agree on the conman RP

Here is the question that comes to mind. What if there is no RP?
  1. .       Source cannot register.
  2. .       Join cannot be processed.




Rendezvous point (static, auto RP, BSR)


Configuring  Rendezvous point.
  • Statically
  • Dynamically


1.       Auto-RP
2.       BSR

When you configure Static RP  we have to manually configure RP address on every router
All routers must have the same RP address. RP fail-over is not possible.

Auto RP
Auto-RP is a Legacy Cisco proprietary method of learning  RP information. all routers automatically learn RP address.

No configuration is necessary except on
  •  candidate RP (device willing to become RP).
  • mapping agent (choose the RP and relay this information to the rest of the PIM domain).
  • Permit backup RP’s to be configured.


How auto-RP works

1.       Candidate RP generates advertisements using ( s, 224.0.1.39) and groups with group information

2.       Mapping agent listen for (*. 224.0.1.39) to learn about RP mappings.
3.       Mapping agent generates an advertisement using (s.224.0.1.40) to distribute RP mapping information.
  • Every router must join 224.0.1.39 and 224.0.1.40 to learn information from the mapping  agent
  • By default using spare mode other routers can not join 224.0.1.40 (mapping agent)



Auto RP with multiple RP

  • Providers redundancy and load sharing.
  • An access list can be applied to control whatever RP server ever group.
  • If multiple RP-configured mapping agents select the best highest ip
  • Cannot use two RP same time for the same group.


Drawback of auto RP

Cisco proprietary.
Need to learn about 224.0.1.39/40
Not used in IPv6 multicast.

Comments

Popular posts from this blog

What is Classification and marking? What is IP Precedence and DSCP Values? What is AF and EF?

  Classification and Marking Classification and marking are the processes of identifying the priority of each packet. This is the first step of QOS control and should be done near the source hosts. Classification is the process of identifying and categorising traffic into classes, typically based upon incoming interface IP precedence, DSCP Source or Destination address. Application classification is the most fundamental QOS building block. Without classification, all packets are treated the same.   The table lists the criteria of classification                                  Marking  Marking is the QOS feature component that colours a packet so it can be identified and distinguished from other packets in QOS treatment. Commonly used markers: link-layer: COS (ISL, 802.1q), MPLS EXP bits,...

OSPF default routing

  OSPF Default Route Configuring OSPF Default route is not a big problem. We have couple of options when we want to OSPF default route. Here is an example R1(config)#router ospf 1  R1(config-router)#default-information originate ?   always       Always advertise default route   metric       OSPF default metric   metric-type  OSPF metric type for default routes   route-map    Route-map reference   <cr> We can change numbers of things for example metric or metric type but most of the people forget about the most important thing is the always keyword.  If we add the always command this feature advertises the default route even if we do not have in our routing table. It will look like that route is installed in routing table.   When we use the default information originate we can advertise a default route in OSPF. But OSPF won’t...

BGP Local preference configuration

BGP Local preference (Local_Pref) Path attribute gives the router inside a single autonomous system a value that they can set per-route and advertise to all iBGP routers inside the autonomous system, so that all routers in the autonomous system agree about which routers is the best exit point for packet destined for that prefix. Local preference (Local_Pref) is the second BGP attribute. We can use the local preference to choose the outbound external BGP path. Local preference is sent to all internal BGP (iBGP) routers in our autonomous system. Local preference (Local_Pref) is not exchanged between external BGP routers. It’s a well-known and discretionary BGP attribute. Default value is 100. The path with the highest local preference is desirable  Topology:- TASK: To reach 50.1.1.1, 15.0.0.1 network router 2 and router 3 using 3.1.1.2 path ( AS 65144) because it has less numbers of au...