At first glance, this looks like a lot of information.
Let's examine it line by line.
The command we ran is:
sudo tcpdump -i any -v -c 1.
We're using sudo because the Linux account we're logged in on doesn't have the permission to run tcpdump.
Then, we specify tcpdump to start tcpdump and -i to specify which interface we want to sniff traffic on.
The -v stands for verbose, which displays detailed packet information.
The -c stands for count, which specifies how many packets tcpdump will capture.
Here we've specified one.
Now let's examine the output.