Once the machine is up Proceed to the "Workbook.ipynb" Notebook, which can be found on the VM at 4_Capstone.
How many packets were captured (looking at the PacketNumber)?
Code: df.count()
ANSWER
100
What IP address sent the most amount of traffic during the packet capture?
Code: df.groupby(['Source']).size()
ANSWER
10.10.1.4
What was the most frequent protocol?
Code: df.groupby(['Protocol']).size().sort_values
ANSWER
ICMP