Simple python script for network availability check with Ping Verification

Publicado em: 13 Agosto 2022
no canal de: CP Breeze Tech
302
4

#network availability check script

import os

print ("This is a network availability checker script\n")

ip_check = input("Please enter host IP or URL, sparated by space and press Enter\n").split()

for ip in ip_check:
response = os.popen (f"ping {ip}").read()
if " Received = 4" in response:
print (f"HOST IS UP {ip} Ping was Successful")
else:
print (f"HOST IS DOWN {ip} Ping was Unsuccessful")

print ("\nThank you and have a nice day!")


Nesta página do site você pode assistir ao vídeo on-line Simple python script for network availability check with Ping Verification duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário CP Breeze Tech 13 Agosto 2022, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 302 vezes e gostou 4 espectadores. Boa visualização!