Linux Command Line, AWS CLI, and tcpdump.
In this video we used the AWS Learner Lab to play with the Linux Command Line. We ran the following commands in the learner lab console.
uname -a
aws ec2 describe-instances --query 'Reservations[*].Instances[*].{Instance:InstanceId,IP:PublicIpAddress,Name:Tags[?Key==`Name`]|[0].Value,Key:Tags[?Key==`Name`]|[0].Value}' --output table
After logging in we used the following commands
which tcpdump
tcpdump --list-interfaces
sudo tcpdump --interface any
clear
sudo tcpdump --interface any -c1
sudo tcpdump --interface any
history
Consider watching this video next where we bring a TCPdump into wireshark and view it.
• Using AWS to get a tcpdump to view in...
tcpdump examples from sites
https://hackertarget.com/tcpdump-exam...
https://opensource.com/article/18/10/...
https://danielmiessler.com/p/tcpdump/