From bd3e8b4ae86ebc6c9436f7d76dc83cf64b0a3a79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20H=C3=A4ll?= Date: Fri, 28 Nov 2025 00:00:22 +0100 Subject: [PATCH] Update bind.py --- modules/bind.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/bind.py b/modules/bind.py index 9303d06b..3b08eda1 100644 --- a/modules/bind.py +++ b/modules/bind.py @@ -15,7 +15,12 @@ def generate(host, *args): '192.168.0.0/16', ] + rfc6598_nets = [ + '100.64.0.0/10' + ] + networks.extend(rfc1918_nets) + networks.extend(rfc6598_nets) role = filter(lambda x: x.startswith('role='), args)[0].split('=')[1]