This command deletes all or the specified IP multicast route entries.
This command only clears dynamic mroute entries. It does not clear static mroutes.
| Format | clear ip mroute {*|group-address[source-address]} |
| Mode | Privileged EXEC |
| Parameter | Description |
|---|---|
| * | Deletes all IPv4 entries from the IP multicast routing table. |
| group-address | IP address of the multicast group. |
| source-address | The IP address of a multicast source that is sending multicast traffic to the group. |
Example: The following deletes all entries from the IP multicast routing table:
(Routing) # clear ip mroute *
Example: The following deletes all entries from the IP multicast routing table that match the given multicast group address (224.1.2.1), irrespective of which source is sending for this group:
(Routing) # clear ip mroute 224.1.2.1
Example: The following deletes all entries from the IP multicast routing table that match the given multicast group address (224.1.2.1) and the multicast source address (192.168.10.10):
(Routing) # clear ip mroute 224.1.2.1 192.168.10.10