Include the saved data in your lab report.

What will be an ideal response?


```
tcpdump: listening on eth0
17:11:58.209112 arp who-has 10.0.1.12 tell 10.0.1.11
17:11:58.209206 arp reply 10.0.1.12 is-at 0:50:bf:75:16:94
17:11:58.209225 10.0.1.11 > 10.0.1.12: icmp: echo request (DF)
17:11:58.209684 10.0.1.12 > 10.0.1.11: icmp: echo reply
17:11:59.217799 10.0.1.11 > 10.0.1.12: icmp: echo request (DF)
17:11:59.218161 10.0.1.12 > 10.0.1.11: icmp: echo reply
17:12:00.227796 10.0.1.11 > 10.0.1.12: icmp: echo request (DF)
17:12:00.228161 10.0.1.12 > 10.0.1.11: icmp: echo reply
17:12:01.237846 10.0.1.11 > 10.0.1.12: icmp: echo request (DF)
17:12:01.238209 10.0.1.12 > 10.0.1.11: icmp: echo reply
17:12:02.247797 10.0.1.11 > 10.0.1.12: icmp: echo request (DF)
17:12:02.248164 10.0.1.12 > 10.0.1.11: icmp: echo reply
17:12:02.248203 arp who-has 10.0.1.11 tell 10.0.1.12
17:12:02.248233 arp reply 10.0.1.11 is-at 0:50:bf:75:16:95
17:23:06.240338 10.0.1.12 > 10.0.1.11: icmp: echo reply
17:23:07.247803 10.0.1.11 > 10.0.1.12: icmp: echo request (DF)
17:23:07.248196 10.0.1.12 > 10.0.1.11: icmp: echo reply
17:23:08.257795 10.0.1.11 > 10.0.1.12: icmp: echo request (DF)
17:23:08.258207 10.0.1.12 > 10.0.1.11: icmp: echo reply
17:23:09.268091 10.0.1.11 > 10.0.1.12: icmp: echo request (DF)
17:23:09.268497 10.0.1.12 > 10.0.1.11: icmp: echo reply
17:23:10.267784 10.0.1.11 > 10.0.1.12: icmp: echo request (DF)
17:23:10.268263 10.0.1.12 > 10.0.1.11: icmp: echo reply
```

Computer Science & Information Technology

You might also like to view...

Given that the variable days has a value of 14, the following expression would evaluate to what value? days / 7 + 1

a. 1.75 b. 2 c. 3 d. 4 e. None of these

Computer Science & Information Technology

Show two equivalent ways to set the count member in the ListNode variable to which head points.

Given the structure definition: ``` const int STRING_SIZE = 20; struct ListNode { char item[STRING_SIZE]; int count; ListNode * link; }; ListNode *head = new ListNode; ```

Computer Science & Information Technology

The Access database object, ________, displays a subset of the data in response to a specific question

A) query B) macro C) table D) form

Computer Science & Information Technology

A password is a unique combination of characters, such as letters of the alphabet or numbers, that identifies one specific user.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology