Re: ARP ping instead of ICMP ping for gateway latency check ?

2025-04-30 Thread Robin Roevens
Hi Michael Michael Tremer schreef op di 22-04-2025 om 15:35 [+0100]: > Hello Robin, > > > On 20 Apr 2025, at 23:52, Robin Roevens > > wrote: > > > > Hi All > > > > I recently changed my internet provider and I noticed that both the > > gateway graph on cgi-bin/netother.cgi and my Zabbix gatewa

Re: ARP ping instead of ICMP ping for gateway latency check ?

2025-04-30 Thread Robin Roevens
Hi Tracepath returns a few bogon IP's and then no-reply for the gateway address. And TCP ping is not available on IPFire, I think. tcptracepath of lft comes to mind, but none of those are available on IPFire. Robin fairmont schreef op vr 25-04-2025 om 08:57 [-0600]: > Have you tried tracepath si

Re: [PATCH] core194: Fix cert name and change other check to ! -z

2025-04-30 Thread Adolf Belka
Hi Nick, On 30/04/2025 16:53, Nick Howitt wrote: Can I ask what you are testing here with the "! -z"? Typically you would use "-n" rather than "! -z", but both are tests for strings and not files - https://tldp.org/LDP/abs/html/comparison-ops.html. "! -s" would test for a zero length file and

Re: [PATCH] core194: Fix cert name and change other check to ! -z

2025-04-30 Thread Nick Howitt
Can I ask what you are testing here with the "! -z"? Typically you would use "-n" rather than "! -z", but both are tests for strings and not files - https://tldp.org/LDP/abs/html/comparison-ops.html. "! -s" would test for a zero length file and if the file exists at all. Nick On 30/04/2025 15

[PATCH] core194: Fix cert name and change other check to ! -z

2025-04-30 Thread Adolf Belka
- Error in hostcert extension - -z gives true if not zero and we need true if it is zero so had to add not command. - I thought I had tested the original patch of this change but obviously not because there was missing whitespace and filenames not quoted plus the fixes I have added in this