KO
|
EN
gitlite — search
Search
#php
#python
#ruby
#javascript
#java
#hacktoberfest
#vim
#dotfiles
#unmaintained
#bioinformatics
#xquery
#rails
pinger
★ 61
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
oscon-metrics-tutorial
:
OSCON Metrics Tutorial
captcha_break_keras
:
keras theano 验证码破解 字母+数字
CineLog
:
A fork of KinoLog Android app with some extra functionnalities
mask-faster-rcnn
:
Mask R-CNN
WeChatLuckyMoney
:
本开源项目为Xposed练手代码,可以从中深入了解使用Xposed的用法和源码逆向分析能力
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
pinger
?
Download (.md)
[](https://raw.githubusercontent.com/hirose31/pinger/master/LICENSE) [](https://github.com/hirose31/pinger/actions/workflows/test.yml) [](https://goreportcard.com/report/github.com/hirose31/pinger) [](http://godoc.org/github.com/hirose31/pinger) # Pinger Pinger helps you to monitor many hosts using ICMP ECHO_REQUEST. <p align="center"> <img src="./doc/pinger.gif"> </p> # Installation Download from [release page](https://github.com/hirose31/pinger/releases). # Usage ``` pinger HOSTNAME_OR_IPADDR [HOSTNAME_OR_IPADDR ...] ``` `pinger` sends ICMP packets using raw socket, so requires root privileges. - sudo pinger ... - run by root - `chown root pinger; chmod 4755 pinger` and run by normal user - `setcap cap_net_raw=ep pinger` and run by normal user (Linux only) You can write failed history to a file by redirecting stderr to a file. ``` $ sudo pinger example.com example.net 192.0.2.1 192.0.2.2 192.0.2.3 2> pinger.log ``` Two numerical numer are RTT and average of RTT (max latest 10 samples). Push `ESC` or `C-c` to exit.