summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-01-16 08:30:29 +0200
committerPaul Buetow <paul@buetow.org>2026-01-16 08:30:29 +0200
commit9f3789a2d307dcbc15eb210b939b9db4506cddeb (patch)
treec37b51c0754b67182d5a86ebb43e5216dc2fee31
parent7bcc729bb3169837099129d15d9f4e9c5ab3e859 (diff)
Add IPv6 monitoring and fix syntax in gogios config
- Add IPv6 (proto 6) ping monitoring for all WireGuard mesh hosts - Fix syntax error in protocol list (4 6 -> 4, 6) - Update AGENTS.md path format to file:// URL Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
-rw-r--r--f3s/AGENTS.md2
-rw-r--r--frontends/etc/gogios.json.tpl2
2 files changed, 2 insertions, 2 deletions
diff --git a/f3s/AGENTS.md b/f3s/AGENTS.md
index 05843840..5637ce3c 100644
--- a/f3s/AGENTS.md
+++ b/f3s/AGENTS.md
@@ -1 +1 @@
-Follow /home/paul/Notes/snippets/f3s/f3s.md
+Follow file:///home/paul/Notes/snippets/f3s/f3s.md
diff --git a/frontends/etc/gogios.json.tpl b/frontends/etc/gogios.json.tpl
index db463856..49221c58 100644
--- a/frontends/etc/gogios.json.tpl
+++ b/frontends/etc/gogios.json.tpl
@@ -20,7 +20,7 @@
<% } -%>
<% } -%>
<% for my $host (qw(blowfish fishfinger f0 f1 f2 r0 r1 r2)) { -%>
- <% for my $proto (4 6) { -%>
+ <% for my $proto (4, 6) { -%>
"Check Ping<%= $proto %> <%= $host %>.wg0.wan.buetow.org": {
"Plugin": "<%= $plugin_dir %>/check_ping",
"Args": ["-H", "<%= $host %>.wg0.wan.buetow.org", "-<%= $proto %>", "-w", "100,10%", "-c", "200,15%"],