Task 1 The command to use was ifconfig. The IP address and Hardware address can be obtained from the output of ifconfig (from one of the eth interfaces). They will be specific to your computer. The IP will usually be of the form 10.10.6.something. Task 3 The command to send five ICMP Echo Request packets with an interval of 2 seconds to the server 10.10.6.171 is ping -i 2 -c 5 10.10.6.171 The -i option sets the intervale to 2 seconds and the -c option sets the count to 5 packets. The average and maximum round trip times can be obtained from the summary output. The units are in milliseconds. Task 4 The other device should be the hardware address of the server (e.g. computer 10.10.6.171). Task 5 If you look in the packet headers, there are two protocols using checksums: IP and ICMP. Task 6 The data in ICMP packet can be seen in Wireshark. You should notice that data is simply a byte containing an integer, with the integer increasing each byte.