Configures PIM Anycast rendezvous points (RPs) in IPv4 multicast domains.
By default, PIM Anycast RPs are not configured.
PIM router configuration mode
PIM Anycast RP provides load balancing and fast convergence to PIM RPs in an IPv4 multicast domain. The RP address of the Anycast RP is a shared address used among multiple PIM routers, known as PIM RP. The PIM RP routers create an Anycast RP set. Each router in the Anycast RP set is configured using two IP addresses: a shared RP address in their loopback address and a separate, unique IP address. The loopback address must be reachable by all PIM routers in the multicast domain. The separate, unique IP address is configured to establish static peering with other PIM routers and communication with the peers.
When the source is activated in a PIM Anycast RP domain, the PIM first hop (FH) registers the source to the closest PIM RP. The PIM RP decapsulates the packet and creates the (s,g) state. If there are external peers in the Anycast RP set, the router re-encapsulates the packet with the local peering address as the source address of the encapsulation. The router distributes the packet to all Anycast RP peers. This re-encapsulation ensures source state distribution to all RPs in a multicast domain.
The no anycast-rp form of this command removes the Anycast RP configuration.
The following example shows how to configure IPv4 PIM Anycast RP.
device # configure terminal device(config)#router-pim device(config-pim-router)# anycast-rp 101.101.101.101 my-anycast-rps device(config-pim-router)# exit device(config)# ip prefix-list my-anycast-rpspermit 1.1.1.1/32 device(config)# ip prefix-list my-anycast-rpspermit 2.2.2.2/32 device(config)# interface loopback 1 device(config-Loopback-1)# ip address 1.1.1.1/32 device(config-Loopback-1)# ip pim-sparse device(config)#interface loopback 2 device(config-Loopback-2)# ip address 2.2.2.2/32 device(config-Loopback-2)# ip pim-sparse device(config-Loopback-11)# ip address 101.101.101.101/32 device(config-Loopback-11# ip pim-sparse