123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- //
- // Zone configuration for master name server (Salt managed)
- //
- acl slaves {
- // dns01.srv.rfc2324.org
- 31.172.8.66;
- 2a01:a700:4621:866::10;
- // dns.gnuzifer.de
- 78.46.242.18;
- 2a01:4f8:190:6500::12:1;
- // ns.youngage.eu
- 5.9.142.19;
- 2a01:4f8:190:2105::53;
- };
- acl ffho-ops {
- 10.123.249.0/27;
- };
- //
- // Public forward zones
- //
- zone "paderborn.freifunk.net" {
- type master;
- file "/etc/bind/zones/static/paderborn.freifunk.net.zone";
- allow-transfer { slaves; localhost; ffho-ops; };
- };
- zone "pb.freifunk.net" {
- type master;
- file "/etc/bind/zones/static/pb.freifunk.net.zone";
- allow-transfer { slaves; localhost; ffho-ops; };
- };
- zone "hochstift.freifunk.net" {
- type master;
- file "/etc/bind/zones/static/hochstift.freifunk.net.zone";
- allow-transfer { slaves; localhost; ffho-ops; };
- };
- zone "ffho.net" {
- type master;
- file "/etc/bind/zones/static/ffho.net.zone";
- allow-transfer { slaves; localhost; ffho-ops; };
- };
- //
- // Vega Systems v6 reverse nets
- //
- // 2a02:450:0:6::/64
- zone "6.0.0.0.0.0.0.0.0.5.4.0.2.0.a.2.ip6.arpa" {
- type master;
- file "/etc/bind/zones/static/2a02:450:0:6_64.ip6.arpa.zone";
- allow-transfer { slaves; localhost; ffho-ops; };
- };
- // 2a02:450:1::/60
- zone "0.0.0.1.0.0.0.0.5.4.0.2.0.a.2.ip6.arpa" {
- type master;
- file "/etc/bind/zones/static/2a02:450:1_60.ip6.arpa.zone";
- allow-transfer { slaves; localhost; ffho-ops; };
- };
- //
- // FFRL v6 Assignments
- //
- // 2a03:2260:2342::/48
- zone "2.4.3.2.0.6.2.2.3.0.a.2.ip6.arpa" {
- type master;
- file "/etc/bind/zones/static/2a03:2260:2342::_48.ip6.arpa.zone";
- allow-transfer { slaves; localhost; ffho-ops; };
- };
- //
- // Internal stuff
- //
- // 10.132.0.0/16 reverse
- zone "132.10.in-addr.arpa" {
- type master;
- file "/etc/bind/zones/static/132.10.in-addr.arpa.db";
- allow-transfer { localhost; ffho-ops; };
- };
- // Management reverse
- zone "30.172.in-addr.arpa" {
- type master;
- file "/etc/bind/zones/static/30.172.in-addr.arpa.zone";
- allow-transfer { localhost; ffho-ops; };
- };
- // Legacy .ffpb
- zone "ffpb" {
- type master;
- file "/etc/bind/zones/static/ffpb.db";
- allow-transfer { localhost; ffho-ops; };
- };
- // Legacy fdca:ffee:ff12::/48 reverse
- zone "2.1.f.f.e.e.f.f.a.c.d.f.ip6.arpa" {
- type master;
- file "/etc/bind/zones/static//fdca:ffce:ff12::_48.db";
- allow-transfer { localhost; ffho-ops; };
- };
|