Exercise - Loopback interface

Now that you have learned how to use tcpdump and Wireshark, you will use these software tools to observe how processes on the same host communicate with each other using the loopback interface. The loopback interface does not send packets or receive packets from an actual network link. When a packet is “sent” to the loopback interface, it is simply placed on the loopback interface’s input queue, and “received” from there.

For example: Suppose you have a database server and a web server installed on the same host, and the web server is supposed to display dynamic information from the database on its web pages.

In the ifconfig output on each host, you’ll see an interface named lo, which is the loopback interface. This interface will typically be assigned the IPv4 address 127.0.0.1. However, any “local” address - an address assigned to any interface on the host - is treated like a loopback address, and packets sent to a local address from the host itself will be delivered by the loopback interface.

On the “romeo” host, run

sudo tcpdump -n -i eth1 icmp

and leave it running. Open a second terminal window on “romeo”. Run

ping -c 3 127.0.0.1

from the second window to send three ICMP requests to the address 127.0.0.1.

When the ping finishes, use Ctrl+C to stop the tcpdump, then save the output for your lab report.

Next, run

sudo tcpdump -n -i eth1 icmp

again, and leave it running. On the second terminal window on “romeo”, run

ping -c 3 10.10.0.100

When the ping finishes, use Ctrl+C to stop the tcpdump, then save the output for your lab report.

Now, we will repeat these steps, but with the tcpdump running on the loopback interface. Run

sudo tcpdump -n -i lo icmp

on “romeo”, and leave it running. On the second terminal window on “romeo”, run

ping -c 3 127.0.0.1

When the ping finishes, use Ctrl+C to stop the tcpdump, then save the output for your lab report.

Finally, run

sudo tcpdump -n -i lo icmp

again, and leave it running, and on the second terminal window on “romeo”, run

ping -c 3 10.10.0.100

When the ping finishes, use Ctrl+C to stop the tcpdump, then save the output for your lab report.

Lab report: Show the output of the tcpdump in each case. Which network interface carries traffic from the host to itself when that traffic is sent to the 127.0.0.1 address? Which network interface carries traffic from the host to itself when that traffic is sent to the 10.10.0.100 address? Explain how the evidence from the tcpdump output supports your answer.