I already checked: subprocess.check_output() not providing full iwconfig output sadly same result.
Basically this works: subprocess.check_output(["oping", "-c", "5", "1.1.1.1"]) But as soon I try to tell oping to ping multiple ip's at once, it only give me a shorted output.
Like this: subprocess.check_output(["oping", "-c", "5", "1.1.1.1 8.8.8.8 9.9.9.9"])
Anyone got an idea?