From d0859d4c5ca158d1335ad64988ee506fe7f4d8a3 Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Mon, 27 Jul 2026 09:46:13 +0100 Subject: [PATCH] nixos/home: Add wave AP DNS records, renumber vibe to .15 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New Cudy AX3000 AP `wave` takes host `.14` on core (backup) and lo (primary); replaces the decommissioned AP of the same name. It's managed on `lo`, not `hi`, because its 2.5GbE (`mtk_eth_soc` eth0) caps at MTU 2026 and so can't join `hi`'s jumbo (9000) fabric — and `hi`/`lo` are both trusted client VLANs differing only by MTU. Renumber the MikroTik AP `vibe` from `.13` to `.15` and give it the same core/hi/lo records as `jim`/`dave` (was `hi`-only), matching its on-device reconfiguration. `vibe` stays on `hi` since it can do jumbo. Co-Authored-By: Claude Opus 4.8 --- nixos/boxes/home/routing-common/dns.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/nixos/boxes/home/routing-common/dns.nix b/nixos/boxes/home/routing-common/dns.nix index 3bb3b60..f08b03f 100644 --- a/nixos/boxes/home/routing-common/dns.nix +++ b/nixos/boxes/home/routing-common/dns.nix @@ -242,10 +242,14 @@ in shytzel IN A ${net.cidr.host 12 prefixes.core.v4} brian IN A ${net.cidr.host 13 prefixes.core.v4} - wave IN A ${net.cidr.host 12 prefixes.hi.v4} - ; wave IN AAAA ${net.cidr.host (65536+3) prefixes.hi.v6} - vibe IN A ${net.cidr.host 13 prefixes.hi.v4} - vibe IN AAAA ${net.cidr.host (65536+4) prefixes.hi.v6} + vibe-core IN A ${net.cidr.host 15 prefixes.core.v4} + vibe IN A ${net.cidr.host 15 prefixes.hi.v4} + vibe IN AAAA ${net.cidr.host (65536+6) prefixes.hi.v6} + vibe-lo IN A ${net.cidr.host 15 prefixes.lo.v4} + vibe-lo IN AAAA ${net.cidr.host (65536+6) prefixes.lo.v6} + wave-core IN A ${net.cidr.host 14 prefixes.core.v4} + wave IN A ${net.cidr.host 14 prefixes.lo.v4} + wave IN AAAA ${net.cidr.host (65536+5) prefixes.lo.v6} ups IN A ${net.cidr.host 20 prefixes.lo.v4} palace-kvm IN A ${net.cidr.host 21 prefixes.lo.v4}