EIGRP packet how is it packaged for network distribution?

Hello Andrew

First of all way to go for getting started with learning networking in the past 6 weeks! That’s quite a feat! We wish you the best in your studies, and if we can help along the way, that will make us happy!

The best thing you can probably do to “see” how these EIGRP messages are exchanged between routers is to use Wireshark to capture some and look at them. If you haven’t used it or if you’re not sure what it is, then take a look at this section of this lesson about the OSI model, and you’ll see that it is extremely useful for what you need.

Getting back to your question, let’s take a look at a Wireshark capture of some EIGRP packets. You can view this in an online environment (which is called Cloudshark) as well, by clicking the following link:
https://www.cloudshark.org/captures/bdcc74327b71
You can see some hello packets, some hello acknowledgment packets, and some update packets. Clicking on the hello packet, I see that we have an IPv4 header, which is encapsulating an EIGRP header.


Taking a look at the update message, we see something similar.

Now going back to what you said, yes, Reliable Transport Protocol (not Real-time Transport Protocol) is actually used to transport these packets. But why don’t we see it in Wireshark? Well, the RTP is actually a “Cisco proprietary protocol” that is used solely for EIGRP, so what we are actually seeing is the RTP header even though Wireshark doesn’t call it that. The section called “Cisco EIGRP” is actually composed of two parts: the RTP header, and the EIGRP payload. Here it is again:


Highlighted are the portions that pertain to RTP. Notice that we have flags, as well as sequence numbers and acknowledgment numbers, something that we often see in transport layer protocols such as TCP.

From these Wireshark/Cloudshark outputs, you can clearly see the Cisco EIGRP layer (RTP/Layer 4) encapsulated in the IPv4 header, which in turn is encapsulated in the Ethernet frame and so on, much as you described. So I think you’ve got it clear in your head. I hope this information helped you to fill in those gaps that may have been missing.

I hope this has been helpful!

Laz

1 Like