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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!