Python Ping Script: Ping a list of hosts/servers from a file in python ?

Lets start with python programming and see how to ping a list of servers from a hosts file.

First lets start with program.

I. Program

import os

hostsfile=open("hosts", "r")

lines=hostsfile.readlines()

for line in lines:
    response=os.system("ping -c 1 " + line)
    if (response == 0):
        status = line.rstrip() + " is Reachable"
    else:
        status = line + " is Not reachable"
    print(status)

a. Here we have opened a file named “hosts” read only and taken its content in a variable named “lines”
b. Now we read this content line by line and pinged each host.
c. In the end, printed the ping response on screen.

 

II. Hosts file with name “hosts”

localhost
google.com
ngelinux.com

 

III. Output

/Users/saket/PycharmProjects/programs/venv/bin/python /Users/saket/PycharmProjects/programs/ping_program.py
PING localhost (127.0.0.1): 56 data bytes
64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.054 ms

--- localhost ping statistics ---
1 packets transmitted, 1 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 0.054/0.054/0.054/0.000 ms
localhost is Reachable
PING google.com (216.58.196.78): 56 data bytes
64 bytes from 216.58.196.78: icmp_seq=0 ttl=46 time=525.641 ms

--- google.com ping statistics ---
1 packets transmitted, 1 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 525.641/525.641/525.641/0.000 ms
google.com is Reachable
PING ngelinux.com (104.152.168.40): 56 data bytes

--- ngelinux.com ping statistics ---
1 packets transmitted, 0 packets received, 100.0% packet loss
ngelinux.com is Not reachable

Process finished with exit code 0

 

IV. Nice program with subprocess library supressing ping output

import subprocess

hostsfile=open("hosts", "r")

lines=hostsfile.readlines()

for line in lines:
    response=subprocess.Popen(["ping", "-c", "1", line.strip()],
    stdout=subprocess.PIPE,
    stderr=subprocess.STDOUT)
    stdout, stderr = response.communicate()
    #print(stdout)
    #print(stderr)

    if (response.returncode == 0):
        status = line.rstrip() + " is Reachable"
    else:
        status = line.rstrip() + " is Not reachable"
    print(status)

In above example, we have used subprocess library instead of os, which is recommended.
Here we have not printed the ping output, and simply printed the result.

Hosts File

localhost
google.com
ngelinux.com
ngelinux2.com

 

V. Output

/Users/saket/PycharmProjects/programs/venv/bin/python /Users/saket/PycharmProjects/programs/ping_program.py
localhost is Reachable
google.com is Reachable
ngelinux.com is Reachable
ngelinux2.com is Not reachable
0 0 votes
Article Rating
Subscribe
Notify of
guest

3 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments
Leandro
Leandro
2 years ago

Thanks for sharing
I will try to add a while infinite loop so I can use it during network maintenance window to know if everything’s up while the change’s being implemented.

Bruce
Bruce
3 years ago

Not sure if anyone else wanted this to output it to a file, By the way this little code works perfect for me……Makes it comma delimited as the guy above was asking for? import os hostsfile=open(“/home/YOURUSERNAME/Documents/hosts.txt”, “r”) outputfile=open(“/home/YOURUSERNAME/Documents/outputfile.txt”,”w”) lines=hostsfile.readlines() for line in lines: response=os.system(“ping -c 1 ” line) if (response == 0): status = line.rstrip() “,is Reachable” else: status = line.rstrip() “,is Not reachable” print(status) outputfile.write(status “\n”) outputfile.close() Just noticed in this comment, it stripped off the indents…so need to fix those sorry not just cut and paste lol….the last line outputfile.close() has to be far left not indented so… Read more »

Joey
Joey
4 years ago

Hi, in the “IV. Nice program with subprocess library supressing ping output” is there a way I can use a csv file that is , than in the output include the device name? For example
hosts csv would contain
192.168.1.1, firewall
192.168.1.2, dns server

output would look like
192.168.1.1 firewall is reachable
192.168.1.2 dns server is not reachable