├── README.md ├── assets └── mp-bgp-and-extend-next-hop.png ├── bgp ├── Dockerfile ├── bird.conf ├── bird2-peers │ └── dn42-template.conf.temp ├── crontab.txt ├── enterpoint.sh ├── wg-peers │ └── wg-template.conf.temp └── wg-reresolve-dns.sh ├── bind9 ├── Dockerfile ├── dnssec_keys │ └── .gitignore ├── named.conf └── zones │ ├── 0%2F26.96.22.172.in-addr.arpa.zone │ ├── e.0.a.8.a.a.2.d.2.4.d.f.ip6.arpa.zone │ └── imlk.dn42.zone └── docker-compose.yml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/README.md -------------------------------------------------------------------------------- /assets/mp-bgp-and-extend-next-hop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/assets/mp-bgp-and-extend-next-hop.png -------------------------------------------------------------------------------- /bgp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/bgp/Dockerfile -------------------------------------------------------------------------------- /bgp/bird.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/bgp/bird.conf -------------------------------------------------------------------------------- /bgp/bird2-peers/dn42-template.conf.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/bgp/bird2-peers/dn42-template.conf.temp -------------------------------------------------------------------------------- /bgp/crontab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/bgp/crontab.txt -------------------------------------------------------------------------------- /bgp/enterpoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/bgp/enterpoint.sh -------------------------------------------------------------------------------- /bgp/wg-peers/wg-template.conf.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/bgp/wg-peers/wg-template.conf.temp -------------------------------------------------------------------------------- /bgp/wg-reresolve-dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/bgp/wg-reresolve-dns.sh -------------------------------------------------------------------------------- /bind9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/bind9/Dockerfile -------------------------------------------------------------------------------- /bind9/dnssec_keys/.gitignore: -------------------------------------------------------------------------------- 1 | *.key 2 | *.private -------------------------------------------------------------------------------- /bind9/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/bind9/named.conf -------------------------------------------------------------------------------- /bind9/zones/0%2F26.96.22.172.in-addr.arpa.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/bind9/zones/0%2F26.96.22.172.in-addr.arpa.zone -------------------------------------------------------------------------------- /bind9/zones/e.0.a.8.a.a.2.d.2.4.d.f.ip6.arpa.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/bind9/zones/e.0.a.8.a.a.2.d.2.4.d.f.ip6.arpa.zone -------------------------------------------------------------------------------- /bind9/zones/imlk.dn42.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/bind9/zones/imlk.dn42.zone -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imlk0/dn42-stuffs/HEAD/docker-compose.yml --------------------------------------------------------------------------------