diff --git a/bundles/bind/files/db b/bundles/bind/files/db index cc0584d..a5c1703 100644 --- a/bundles/bind/files/db +++ b/bundles/bind/files/db @@ -5,7 +5,7 @@ def column_width(column, table): $TTL 600 @ IN SOA ns.sublimity.de. admin.sublimity.de. ( 2020080302 ;Serial - 600 ;Refresh + 600 ;Refresh 300 ;Retry 1209600 ;Expire 300 ;Negative response caching TTL diff --git a/bundles/bind/files/named.conf.local b/bundles/bind/files/named.conf.local index 3b0cfa3..c3163da 100644 --- a/bundles/bind/files/named.conf.local +++ b/bundles/bind/files/named.conf.local @@ -1,6 +1,7 @@ % for view in views: view "${view['name']}" { match-clients {${' '.join(f'{e}; ' for e in view['acl'])}}; + recursion yes; % for zone in zones: zone "${zone}" { type master; diff --git a/bundles/bind/files/named.conf.options b/bundles/bind/files/named.conf.options index a59bbf2..71c098e 100644 --- a/bundles/bind/files/named.conf.options +++ b/bundles/bind/files/named.conf.options @@ -2,6 +2,6 @@ options { directory "/var/cache/bind"; dnssec-validation auto; listen-on-v6 { any; }; - max-cache-size 20%; + max-cache-size 30%; querylog yes; }; diff --git a/nodes/home.server.py b/nodes/home.server.py index 72664db..de28a26 100644 --- a/nodes/home.server.py +++ b/nodes/home.server.py @@ -23,11 +23,20 @@ 'sha256': '0d11d87ce60d5d98e22fc52f2c8c6ba2b54b14f9c26c767a46bf102c381ad128', 'domain': 'git.sublimity.de', }, + 'users': { + 'root': { + 'shell': '/usr/bin/zsh', + }, + }, 'wireguard': { # iptables -t nat -A POSTROUTING -o enp1s0f0 -j MASQUERADE 'my_ip': '172.19.136.1/22', 'peers': { - 'htz.mails': {}, + 'htz.mails': { + 'route': [ + '10.0.10.0/24', + ], + }, }, }, }, diff --git a/nodes/htz.games.py b/nodes/htz.games.py index fb40ecf..564cd59 100644 --- a/nodes/htz.games.py +++ b/nodes/htz.games.py @@ -1,4 +1,5 @@ { + 'dummy': True, 'groups': [ 'debian-10', ],