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 Tunnels Vs Virtual-links

OSPF VIRTUAL LINKS  An Open Shortest Path First (OSPF) autonomous system has all areas physically connected to the backbone area (Area 0). In some cases, if this is not possible, we can use a virtual link to connect to the backbone (Area 0) through a non-backbone area. We can also use the virtual links to connect two parts of a partitioned backbone (Area 0) through a non-backbone area. The area through which we configure the virtual link, known as a transit area, must have full routing information. Remember, the transit area cannot be a stub area. Virtual link must be configuring both sides with the same area ID and the corresponding virtual link OSPF neighbor router ID. Show IP OSPF neighbors command give you the router ID information. OSPF Transit Area from Tunnel When configuring OSPF with tunnel interfaces as transit areas, there are several important considerations to ensure proper routing functionality. Here's what you need to know: Key Concepts Transit Area : In OS...

What is of NBAR (network- based application recognition),classification QOS How to configure NBAR?

 When we implement Quality of Service (QoS ) the first step is classification, by default our router does not care about what kind of IP packets it is. Our router just looks at the routing table to find the correct destination IP address and forwards. When we configure QoS technologies like queuing, policing, or shaping before doing first we have to identify what kind of traffic is running on our routers so we can figure out what kind of application it belongs to. This is classification. What is Quality of Service (QOS)? What is Modular Quality of service CLI (MQC)? What is Classification and marking? What are IP Precedence and DSCP Values? What is AF and EF?     Once we identify our traffic (classify). Now we can mark and apply QoS policy to it. There are a few methods on IOS routers for classification: Header inspection It is a simple classification method and it works really good but has some disadvantages. Let’s say we configure our router all th...