From 77b2d02e6631b0d785ecedad1eafc343a33c4c59 Mon Sep 17 00:00:00 2001 From: Sophie Schiller Date: Sat, 7 Dec 2024 22:41:10 +0100 Subject: [PATCH] sophie.unbound: new node --- nodes/sophie/unbound.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 nodes/sophie/unbound.py diff --git a/nodes/sophie/unbound.py b/nodes/sophie/unbound.py new file mode 100644 index 0000000..e0cb10d --- /dev/null +++ b/nodes/sophie/unbound.py @@ -0,0 +1,32 @@ +nodes["sophie.unbound"] = { + "hostname": "172.19.164.4", + "bundles": { + "unbound", + }, + "groups": { + "debian-bookworm", + }, + "metadata": { + "interfaces": { + "enp1s0": { + "ips": { + "172.19.164.4/24", + "fe80::4/64", + }, + "gateway4": "172.19.164.1", + "ipv6_accept_ra": True, + }, + }, + "vm": { + "cpu": 2, + "ram": 2, + }, + "unbound": { + "dns64": False, + "restrict-to": { + "172.19.164.0/24", + "fe80::/64", + }, + }, + }, +} -- 2.39.5