Wireshark Lab: IP
|
By Niklas Carlsson and Anna Vapen, January 2012
(This lab manual is based on "Wireshark Lab: IP", version 2.0 (September 2009) by J.F. Kurose, K.W. Ross, available here.) |
Contents
In this lab, we’ll investigate the IP protocol, focusing on the IP datagram. We’ll do so by analyzing a trace of IP datagrams sent and received by an execution of the traceroute program. We’ll investigate the various fields in the IP datagram, and study IP fragmentation in detail.
Before beginning this lab, you’ll probably want to review sections 1.4.3 in the course text book and section 3.4 of RFC 2151 to update yourself on the operation of the traceroute program. You’ll also want to read Section 4.4 in the book, and probably also have RFC 791 on hand as well, for a discussion of the IP protocol.
In this assignment, you will be asked to answer and/or discuss a number of questions. To save time, it is important that you carefully read the instructions such that you provide answers in the desired format(s).
Capturing packets from an execution of traceroute
In order to generate a trace of IP datagrams for this lab, we’ll use the traceroute program to send datagrams of different sizes towards some destination, X. Recall that traceroute operates by first sending one or more datagrams with the time-to-live (TTL) field in the IP header set to 1; it then sends a series of one or more datagrams towards the same destination with a TTL value of 2; it then sends a series of datagrams towards the same destination with a TTL value of 3; and so on. Recall that a router must decrement the TTL in each received datagram by 1 (actually, RFC 791 says that the router must decrement the TTL by at least one). If the TTL reaches 0, the router returns an ICMP message (type 11 – TTL-exceeded) to the sending host. As a result of this behavior, a datagram with a TTL of 1 (sent by the host executing traceroute) will cause the router one hop away from the sender to send an ICMP TTL-exceeded message back to the sender; the datagram sent with a TTL of 2 will cause the router two hops away to send an ICMP message back to the sender; the datagram sent with a TTL of 3 will cause the router three hops away to send an ICMP message back to the sender; and so on. In this manner, the host executing traceroute can learn the identities of the routers between itself and destination X by looking at the source IP addresses in the datagrams containing the ICMP TTL-exceeded messages.
We’ll want to run traceroute and have it send datagrams of various lengths.
Note: In this lab you will analyze an already captured trace. However, you are free to capture a live trace from your own computer at home.
Figure 1: Pingplotter |
Next, send a set of datagrams with a longer length, by selecting Edit -> Advanced Options -> Packet Options and enter a value of 2000 in the Packet Size field and then press OK. Then press the Resume button.
Finally, send a set of datagrams with a longer length, by selecting Edit -> Advanced Options -> Packet Options and enter a value of 3500 in the Packet Size field and then press OK. Then press the Resume button.
Stop Wireshark tracing.
Stop Wireshark tracing.
In your trace, you should be able to see the series of ICMP Echo Request (in the case of Windows machine) or the UDP segment (in the case of Unix) sent by your computer and the ICMP TTL-exceeded messages returned to your computer by the intermediate routers. In the questions below, we’ll assume you are using a Windows machine (or using the already captured trace); the corresponding questions for the case of a Unix machine should be clear. Whenever possible, when answering a question you should hand in a printout of the packet(s) within the trace that you used to answer the question asked. Annotate the printout to explain your answer and support your discussion. To print a packet, use File -> Print, choose Selected packet only, choose Packet summary line, and select the minimum amount of packet detail that you need to answer the question.
Figure 2: Wireshark |
Next, sort the traced packets according to IP source address by clicking on the Source column header; a small downward pointing arrow should appear next to the word Source. If the arrow points up, click on the Source column header again. Select the first ICMP Echo Request message sent by your computer, and expand the Internet Protocol portion in the Details of selected packet header window. In the Listing of captured packets window, you should see all of the subsequent ICMP messages (perhaps with additional interspersed packets sent my other protocols running on your computer) below this first ICMP. Use the down arrow to move through the ICMP messages sent by your computer.
Next (with the packets still sorted by source address) find the series of ICMP TTL-exceeded replies sent to your computer by the nearest (first hop) router.
Sort the packet listing according to time again by clicking on the Time column.
Now find the first ICMP Echo Request message that was sent by your computer after you changed the Packet Size in pingplotter to be 3500.
For this assignment you will need to write a report that carefully address each of the following three tasks:
Please structure your report such that your answers are clearly indicated for each question (and section of the assignment). It is not the TA's task to search for the answers. Both the questions themselves and the corresponding answers should be clearly stated (and indicated) in your report. Structure your report accordingly. Furthermore, your answers should be explained and supported using additional evidence, when applicable. During the demonstration the TA may ask similar questions to assess your understanding of the lab. You are expected to clearly explain and motivate your answers. As the assignments are done in groups of two, both members of the group will be asked to answer questions.
Additional instructions and information about the reports can be found here. Please take this chance to read the guidelines carefully.