Question
Create a script with a for loop structure named forNetwork.sh. Within the script, run a netstat an command and filter for any line showing port
Create a script with a for loop structure named forNetwork.sh.
Within the script, run a netstat an command and filter for any line showing port 22 :22 connection (ssh) and that shows ESTABLISHED at the end of the line. Use the following command on your netstat line after all of your greps: | awk '{print $5}' | cut -d':' --complement -f 2
The netstat command will be on your for line and will need to be enclosed in back ticks.
For example: for index in `netstat an | someCommand | someCommand | awk '{print $5}' | cut -d':' --complement -f 2`
Awk prints the 5th field and cut removes the 2nd field after the (:) colon delimiter.
Then ping each ip for 5 pings with
ping ac 5
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started