RIP V2 Multicasting Appears as Broadcasting at IP 224.0.0.9

broadcasteigrpmulticastrip

In RIPv1 the packets are broadcasted out all ports with dest. IP 255.255.255.255. In v2 they are multicasted with dest. IP 224.0.0.9. In Packet Tracer, this v2 packet is transmitted over all interfaces at the same time which looks like broadcasting with an IP of multicasting.

When EIGRP uses multicasting it transmits packets to only one dest. at a time. It also tries to send EIGRP packets to an undesired host (PC, server, etc.) which drops it.

I have tried this only on Cisco Packet Tracer. So can someone please explain me why RIPv2 packet transmission looks like broadcasting with destination IP address as 224.0.0.9?

Thank you.

Best Answer

224.0.0.9 is a protocol standard multicast address, meaning that it is reserved for all RIPv2 speaking routers. This reduces unnecessary overhead, and only speaks to RIPv2 routers, instead of a full broadcast. Here is a portion from the RIPv2 RFC.

https://www.rfc-editor.org/rfc/rfc2453

4.5 Multicasting

In order to reduce unnecessary load on those hosts which are not
listening to RIP-2 messages, an IP multicast address will be used for periodic broadcasts. The IP multicast address is 224.0.0.9. Note
that IGMP is not needed since these are inter-router messages which
are not forwarded.

On NBMA networks, unicast addressing may be used. However, if a
response addressed to the RIP-2 multicast address is received, it
should be accepted.

In order to maintain backwards compatibility, the use of the
multicast address will be configurable, as described in section 5.1.
If multicasting is used, it should be used on all interfaces which
support it.

Related Topic