Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

: Use Python Script to explore your network The following Python script pings each host on a given network twice, modify the script to output

: Use Python Script to explore your network

The following Python script pings each host on a given network twice, modify the script to output only those hosts that are active.

# Script to ping all IP addresses in a /24 subnet

import os

network = input ("Enter first 3 numbers of IP network, e.g. 1.2.3: ")

print(network)

# Iterate over all usable IPs in this subnet

for host in range (1, 254):

print("Pinging " + network + "." + str(host))

os.system("ping -c 2 " + network + "." + str(host))

Writ another Python script to list all of the ports that are open on a given host. Test your script and paste both the script and the output in the space below:

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_2

Step: 3

blur-text-image_3

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

Modern Dental Assisting

Authors: Doni Bird, Debbie Robinson

13th Edition

978-0323624855, 0323624855

Students also viewed these Programming questions

Question

What is the extent of global water scarcity?

Answered: 1 week ago