fping
fping copied to clipboard
High performance ping tool
Hi, I'm asking for an option to show the source address used when running fping. While it's possible to define a source address/interface, it would be interesting to know which...
Test case for "fping: add option to exit immediately once N hosts have been found" with copied code
Here is the test case for pull request #220 and issue #171 with complete copied code from the pull request. I hope this is enough to take over the function...
In combination with `--reachable=N` it would save time on large networks. E.g. with `fping --retry=5 --timeout=200 --reachable=2 --generate 192.168.1.0/24` if router responds at `192.168.1.1` and any other host at DHCP...
Fixes the following build warning ``` fping.c: In function ‘decode_icmp_ipv4’: fping.c:2078:12: warning: unused parameter ‘response_addr_len’ [-Wunused-parameter] size_t response_addr_len, ~~~~~~~^~~~~~~~~~~~~~~~~ ``` The variable `response_addr_len` in function `decode_icmp_ipv4` has become redundant with...
Fixes the following build warning under ARMv6 CPU Version: fping-5.1 CPU: ARMv6 ``` seqmap.c: In function ‘seqmap_add’: seqmap.c:84:96: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 3...
Fix for https://github.com/schweikert/fping/issues/206. It's a slow linear search, but more simple is more correct.
On FreeBSD, the PIDs are as large as 99999, so if multiple fping processes are running there's a chance ident4 = PID & 0xffff will collide - which happens on...
`http://my-netdata.io/` technically works, but it redirects to `https://netdata.cloud/`. I think it is better to update the website link.
IPv6 support for -g, --generate with open-coded 128-bit arithmetic as needed.
`fping6 -g` surely does not make sense in SLAAC environments or with other larger ranges at the size of /64. But for DHCPv6 managed IPv6 ranges (like the /115 and...