secubox-openwrt/config-backups/bind/named.conf.zones
CyberMind-FR ff8f4944ea feat(config-backups): Add BIND DNS configuration backups
- Add named.conf and named.conf.zones from router
- Add all zone files (maegia.tv, ganimed.fr, secubox.in, etc.)
- Include README with sync instructions
- Fixed zone path in named.conf.zones for LuCI DNS Master compatibility
- Added ganimed.fr zone declaration to BIND config

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-03-09 11:20:51 +01:00

24 lines
499 B
Plaintext

// SecuBox Mesh local domain
zone "sblocal" {
type master;
file "/etc/bind/zones/sblocal.zone";
allow-update { none; };
};
// maegia.tv - authoritative master zone
zone "maegia.tv" {
type master;
file "/etc/bind/zones/maegia.tv.zone";
allow-query { any; };
allow-transfer { none; };
};
// ganimed.fr - authoritative master zone
zone "ganimed.fr" {
type master;
file "/etc/bind/zones/ganimed.fr.zone";
allow-query { any; };
allow-transfer { none; };
};