Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases And Information Systems 1 International Baltic Conference Dbandis 2020 Tallinn Estonia June 19 2020 Proceedings

Authors: Tarmo Robal ,Hele-Mai Haav ,Jaan Penjam ,Raimundas Matulevicius

1st Edition

303057671X, 978-3030576714

More Books

Students also viewed these Databases questions

Question

Understand how emergent change occurs.

Answered: 1 week ago