Skip to content
Advertisement

Ping command – Check returned value

How can I evaluate the return of ping command used on subprocess.call(), by having a value of True or False like in the last “if” statement ?
Here is the code:

JavaScript

The code is working as it should, by iterating on a range of IP addresses (which it get from a XLSX file) and by pinging the single IP address like so:

JavaScript

As a further attempt, I’ve found different posts about verifying if subprocess.check_output() is True or False, but this didn’t worked for me since it returns the string of ping command in “cmd style”, and that is why I’ve opted for subprocess.call() which returns the state of the command.
Tests:
In the code above, I printed the value of “response” variable by using the 2 different methods:

  • With subprocess.call() the return is ‘0’ in any cases (so return False in the last “if” statement)
    or
  • With subprocess.check_output() the return is the ping command itself in “cmd style” (return “Nothing Good” in the last “if” statement)

Advertisement

Answer

ping will exit with 0 as an exit code if it ran successfully. Given that you seem to want to handle error codes in a generic way, you could keep things simple:

JavaScript

prints:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement