https://github.com/scotchoaf/ping-test
check URL ping response times
https://github.com/scotchoaf/ping-test
Last synced: 3 months ago
JSON representation
check URL ping response times
- Host: GitHub
- URL: https://github.com/scotchoaf/ping-test
- Owner: scotchoaf
- License: mit
- Created: 2020-04-16T17:14:20.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-17T16:32:51.000Z (almost 5 years ago)
- Last Synced: 2025-01-12T01:13:30.273Z (5 months ago)
- Language: Python
- Size: 44.9 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ping Test
Requires root access to run
Two options for the URL list:
First is specifying the URL list as an input argument
```angular2
sudo python3 ping-test.py --url url1.com,url2.com
```Second is adding entries to url_list.txt. This will will be read
if no URLs are specified.```angular2
sudo python3 ping-test.py
```The output will show each URL along with min/avs/max rtt in ms.
```
www.paloaltonetworks.com
min rtt is: 37.97 ms
avg rtt is: 39.56 ms
max rtt is: 40.5 mswww.google.com
min rtt is: 28.38 ms
avg rtt is: 30.94 ms
max rtt is: 34.5 ms
```