-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use OS-independent ping #10
Comments
I think using scapy will be good solution. But a bit difficult than ping and libpcap must included on system |
I don't know how much seriously it is maintained, but there is a guy who implemented ping using Python. |
Implementing ping uing python is a reasonable way. I will try to integrate it or impelement ping when I have time :-) btw, I tried to use scapy when I started to write deadman. Unfortunately, scapy-based ping involved 'long time' to build, send, and receive icmp packets. It spoils accuracy of RTT, so I gave up on using scapy. |
I'm using Arch Linux and got this error message after running Definitely related to this issue. BTW, This is a great project. Thanks for you guys. |
I found that problem ping6 had been merge into ping. Maybe we had to check ping6 command isn't existed, than change to use |
The current implementation uses
ping
commands on OSes. However, their options are different and sometimes changed (e.g., on ubuntu 18.04). So, we need to use OS-independent ping.Which is a better way for achieving it?
The text was updated successfully, but these errors were encountered: