Reinitialize Repository

This commit is contained in:
IntenseWebs 2023-11-20 17:23:01 +00:00
commit cf376a97e8
35 changed files with 576 additions and 0 deletions

30
db.1.168.192 Normal file
View File

@ -0,0 +1,30 @@
;
; Internal Split-DNS Bind9 Reverse Lookup Data for IntenseWebs.com NuKVM.org and Iweb.City zones
;
$TTL 604800
@ IN SOA ns1.intensewebs.com. dns.intensewebs.com. (
47 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
IN NS ns1.intensewebs.com.
IN NS ns2.intensewebs.com.
ns1.intensewebs.com. IN A 192.168.1.140
ns2.intensewebs.com. IN A 192.168.1.141
3 IN PTR giti.iweb.city
121 IN PTR alma1.intensewebs.com
123 IN PTR git.intensewebs.com
124 IN PTR ipa1.intensewebs.com
125 IN PTR ipa2.intensewebs.com
126 IN PTR pg.intensewebs.com
66 IN PTR gitea.nukvm.org
160 IN PTR gource.intensewebs.com
140 IN PTR ns1.intensewebs.com
141 IN PTR ns2.intensewebs.com
151 IN PTR deb1.intensewebs.com
222 IN PTR sd.intensewebs.com
22l IN PTR superdog.intensewebs.com
220 IN PTR dev1.intensewebs.com

34
db.intensewebs.com Normal file
View File

@ -0,0 +1,34 @@
$ORIGIN intensewebs.com.
$TTL 604800
;
@ IN SOA ns1.intensewebs.com. dns.intensewebs.com. (
47 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
IN NS ns1.intensewebs.com.
IN NS ns2.intensewebs.com.
;
IN MX 10 mail.intensewebs.com.
;
alma1 IN A 192.168.1.121
ftp IN A 74.63.233.135
git IN A 192.168.1.123
ipa1 IN A 192.168.1.124
ipa2 IN A 192.168.1.125
pg IN A 192.168.1.126
mail IN A 74.63.233.135
ns1 IN A 192.168.1.140
ns2 IN A 192.168.1.141
deb1 IN A 192.168.1.151
sd IN A 192.168.1.222
superdog IN A 192.168.1.221
www IN A 74.63.233.135
ftp IN A 74.63.233.135
webmail IN A 74.63.233.135
dev1 IN A 192.168.1.220
t IN A 129.146.170.34
u IN A 129.153.118.150
lab IN A 129.146.170.34

22
db.iweb.city Normal file
View File

@ -0,0 +1,22 @@
$ORIGIN iweb.city.
$TTL 604800
;
@ IN SOA ns1.intensewebs.com. dns.intensewebs.com. (
47 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
IN NS ns1.intensewebs.com.
IN NS ns2.intensewebs.com.
;
IN MX 10 mail.iweb.city.
;
lab IN A 129.146.170.34
mail IN A 74.63.233.135
ftp IN A 74.63.233.135
www IN A 74.63.233.135
;
giti IN A 192.168.1.3
* IN A 129.146.170.34

22
db.nukvm.org Normal file
View File

@ -0,0 +1,22 @@
$ORIGIN nukvm.org.
$TTL 604800
;
@ IN SOA ns1.intensewebs.com. dns.intensewebs.com. (
47 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
IN NS ns1.intensewebs.com.
IN NS ns2.intensewebs.com.
;
IN MX 10 mail.nukvm.org.
;
lab IN A 129.153.118.150
mail IN A 74.63.233.135
ftp IN A 74.63.233.135
www IN A 74.63.233.135
;
gitea IN A 192.168.1.66
* IN A 129.153.118.150

10
dnsbackup.sh Executable file
View File

@ -0,0 +1,10 @@
#! /bin/bash
cd ~/bind-backups
sudo cp -f /etc/bind/named.* .
sudo cp -f /var/lib/bind/* .
sudo cp -f /etc/resolv.conf .
sudo cp -f /etc/hosts .
sudo cp -f /etc/hostname .
sudo cp -f /etc/network/interfaces .
# scp -f * privacy@sd:/home/privacy/Repos/dns-backups/

1
hostname Normal file
View File

@ -0,0 +1 @@
ns1

7
hosts Normal file
View File

@ -0,0 +1,7 @@
127.0.0.1 localhost
192.168.1.140 ns1.intensewebs.com ns1
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

11
interfaces Normal file
View File

@ -0,0 +1,11 @@
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
allow-hotplug enp1s0
iface enp1s0 inet static
address 192.168.1.140
netmask 255.255.255.0
gateway 192.168.1.131
dns-domain intensewebs.com
dns-nameservers 192.168.1.140 192.168.1.141

11
named.conf Normal file
View File

@ -0,0 +1,11 @@
// This is the primary configuration file for the BIND DNS server named.
//
// Please read /usr/share/doc/bind9/README.Debian.gz for information on the
// structure of BIND configuration files in Debian, *BEFORE* you customize
// this configuration file.
//
// If you are just adding zones, please do that in /etc/bind/named.conf.local
include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";

30
named.conf.default-zones Normal file
View File

@ -0,0 +1,30 @@
// prime the server with knowledge of the root servers
zone "." {
type hint;
file "/usr/share/dns/root.hints";
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
zone "localhost" {
type master;
file "/etc/bind/db.local";
};
zone "127.in-addr.arpa" {
type master;
file "/etc/bind/db.127";
};
zone "0.in-addr.arpa" {
type master;
file "/etc/bind/db.0";
};
zone "255.in-addr.arpa" {
type master;
file "/etc/bind/db.255";
};

27
named.conf.local Normal file
View File

@ -0,0 +1,27 @@
zone "intensewebs.com" {
type master;
file "/var/lib/bind/db.intensewebs.com";
allow-transfer { 192.168.1.141; };
also-notify { 192.168.1.141; };
};
zone "nukvm.org" {
type master;
file "/var/lib/bind/db.nukvm.org";
allow-transfer { 192.168.1.141; };
also-notify { 192.168.1.141; };
};
zone "iweb.city" {
type master;
file "/var/lib/bind/db.iweb.city";
allow-transfer { 192.168.1.141; };
also-notify { 192.168.1.141; };
};
zone "1.168.192.in-addr.arpa" {
type master;
file "/var/lib/bind/db.1.168.192";
allow-transfer { 192.168.1.141; };
also-notify { 192.168.1.141; };
};

28
named.conf.options Normal file
View File

@ -0,0 +1,28 @@
acl trustedclients {
localhost;
localnets;
192.168.1.140; #ns1.intensewebs.com
192.168.1.141; #ns2.intensewebs.com
192.168.1.142; #ns3.intensewebs.com
192.168.1.143; #ns4.intensewebs.com
192.168.1.0/24;
192.168.2.0/24;
};
options {
directory "/var/cache/bind";
recursion yes;
allow-query { trustedclients; };
allow-query-cache { trustedclients; };
allow-recursion { trustedclients; };
forwarders {
9.9.9.9;
149.112.112.112;
};
dnssec-validation no;
listen-on-v6 { any; };
};

30
ns1-db.1.168.192 Normal file
View File

@ -0,0 +1,30 @@
;
; Internal Split-DNS Bind9 Reverse Lookup Data for IntenseWebs.com NuKVM.org and Iweb.City zones
;
$TTL 604800
@ IN SOA ns1.intensewebs.com. dns.intensewebs.com. (
47 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
IN NS ns1.intensewebs.com.
IN NS ns2.intensewebs.com.
ns1.intensewebs.com. IN A 192.168.1.140
ns2.intensewebs.com. IN A 192.168.1.141
3 IN PTR giti.iweb.city
121 IN PTR alma1.intensewebs.com
123 IN PTR git.intensewebs.com
124 IN PTR ipa1.intensewebs.com
125 IN PTR ipa2.intensewebs.com
126 IN PTR pg.intensewebs.com
66 IN PTR gitea.nukvm.org
160 IN PTR gource.intensewebs.com
140 IN PTR ns1.intensewebs.com
141 IN PTR ns2.intensewebs.com
151 IN PTR deb1.intensewebs.com
222 IN PTR sd.intensewebs.com
22l IN PTR superdog.intensewebs.com
220 IN PTR dev1.intensewebs.com

34
ns1-db.intensewebs.com Normal file
View File

@ -0,0 +1,34 @@
$ORIGIN intensewebs.com.
$TTL 604800
;
@ IN SOA ns1.intensewebs.com. dns.intensewebs.com. (
47 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
IN NS ns1.intensewebs.com.
IN NS ns2.intensewebs.com.
;
IN MX 10 mail.intensewebs.com.
;
alma1 IN A 192.168.1.121
ftp IN A 74.63.233.135
git IN A 192.168.1.123
ipa1 IN A 192.168.1.124
ipa2 IN A 192.168.1.125
pg IN A 192.168.1.126
mail IN A 74.63.233.135
ns1 IN A 192.168.1.140
ns2 IN A 192.168.1.141
deb1 IN A 192.168.1.151
sd IN A 192.168.1.222
superdog IN A 192.168.1.221
www IN A 74.63.233.135
ftp IN A 74.63.233.135
webmail IN A 74.63.233.135
dev1 IN A 192.168.1.220
t IN A 129.146.170.34
u IN A 129.153.118.150
lab IN A 129.146.170.34

22
ns1-db.iweb.city Normal file
View File

@ -0,0 +1,22 @@
$ORIGIN iweb.city.
$TTL 604800
;
@ IN SOA ns1.intensewebs.com. dns.intensewebs.com. (
47 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
IN NS ns1.intensewebs.com.
IN NS ns2.intensewebs.com.
;
IN MX 10 mail.iweb.city.
;
lab IN A 129.146.170.34
mail IN A 74.63.233.135
ftp IN A 74.63.233.135
www IN A 74.63.233.135
;
giti IN A 192.168.1.3
* IN A 129.146.170.34

22
ns1-db.nukvm.org Normal file
View File

@ -0,0 +1,22 @@
$ORIGIN nukvm.org.
$TTL 604800
;
@ IN SOA ns1.intensewebs.com. dns.intensewebs.com. (
47 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
IN NS ns1.intensewebs.com.
IN NS ns2.intensewebs.com.
;
IN MX 10 mail.nukvm.org.
;
lab IN A 129.153.118.150
mail IN A 74.63.233.135
ftp IN A 74.63.233.135
www IN A 74.63.233.135
;
gitea IN A 192.168.1.66
* IN A 129.153.118.150

1
ns1-hostname Normal file
View File

@ -0,0 +1 @@
ns1

7
ns1-hosts Normal file
View File

@ -0,0 +1,7 @@
127.0.0.1 localhost
192.168.1.140 ns1.intensewebs.com ns1
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

11
ns1-interfaces Normal file
View File

@ -0,0 +1,11 @@
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
allow-hotplug enp1s0
iface enp1s0 inet static
address 192.168.1.140
netmask 255.255.255.0
gateway 192.168.1.131
dns-domain intensewebs.com
dns-nameservers 192.168.1.140 192.168.1.141

11
ns1-named.conf Normal file
View File

@ -0,0 +1,11 @@
// This is the primary configuration file for the BIND DNS server named.
//
// Please read /usr/share/doc/bind9/README.Debian.gz for information on the
// structure of BIND configuration files in Debian, *BEFORE* you customize
// this configuration file.
//
// If you are just adding zones, please do that in /etc/bind/named.conf.local
include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";

View File

@ -0,0 +1,30 @@
// prime the server with knowledge of the root servers
zone "." {
type hint;
file "/usr/share/dns/root.hints";
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
zone "localhost" {
type master;
file "/etc/bind/db.local";
};
zone "127.in-addr.arpa" {
type master;
file "/etc/bind/db.127";
};
zone "0.in-addr.arpa" {
type master;
file "/etc/bind/db.0";
};
zone "255.in-addr.arpa" {
type master;
file "/etc/bind/db.255";
};

27
ns1-named.conf.local Normal file
View File

@ -0,0 +1,27 @@
zone "intensewebs.com" {
type master;
file "/var/lib/bind/db.intensewebs.com";
allow-transfer { 192.168.1.141; };
also-notify { 192.168.1.141; };
};
zone "nukvm.org" {
type master;
file "/var/lib/bind/db.nukvm.org";
allow-transfer { 192.168.1.141; };
also-notify { 192.168.1.141; };
};
zone "iweb.city" {
type master;
file "/var/lib/bind/db.iweb.city";
allow-transfer { 192.168.1.141; };
also-notify { 192.168.1.141; };
};
zone "1.168.192.in-addr.arpa" {
type master;
file "/var/lib/bind/db.1.168.192";
allow-transfer { 192.168.1.141; };
also-notify { 192.168.1.141; };
};

28
ns1-named.conf.options Normal file
View File

@ -0,0 +1,28 @@
acl trustedclients {
localhost;
localnets;
192.168.1.140; #ns1.intensewebs.com
192.168.1.141; #ns2.intensewebs.com
192.168.1.142; #ns3.intensewebs.com
192.168.1.143; #ns4.intensewebs.com
192.168.1.0/24;
192.168.2.0/24;
};
options {
directory "/var/cache/bind";
recursion yes;
allow-query { trustedclients; };
allow-query-cache { trustedclients; };
allow-recursion { trustedclients; };
forwarders {
9.9.9.9;
149.112.112.112;
};
dnssec-validation no;
listen-on-v6 { any; };
};

4
ns1-resolv.conf Normal file
View File

@ -0,0 +1,4 @@
domain intensewebs.com
search intensewebs.com
nameserver 192.168.1.140
nameserver 192.168.1.141

BIN
ns2-db.1.168.192 Normal file

Binary file not shown.

BIN
ns2-db.intensewebs.com Normal file

Binary file not shown.

1
ns2-hostname Normal file
View File

@ -0,0 +1 @@
ns2.intensewebs.com

8
ns2-hosts Normal file
View File

@ -0,0 +1,8 @@
127.0.0.1 localhost
127.0.1.1 ns2.intensewebs.com ns2
192.168.1.141 ns2.intensewebs.com ns2
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

18
ns2-interfaces Normal file
View File

@ -0,0 +1,18 @@
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug enp1s0
iface enp1s0 inet static
address 192.168.1.141
netmask 255.255.255.0
gateway 192.168.1.131
dns-domain intensewebs.com
dns-nameservers 192.168.1.140 192.168.1.141

11
ns2-named.conf Normal file
View File

@ -0,0 +1,11 @@
// This is the primary configuration file for the BIND DNS server named.
//
// Please read /usr/share/doc/bind9/README.Debian.gz for information on the
// structure of BIND configuration files in Debian, *BEFORE* you customize
// this configuration file.
//
// If you are just adding zones, please do that in /etc/bind/named.conf.local
include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";

View File

@ -0,0 +1,30 @@
// prime the server with knowledge of the root servers
zone "." {
type hint;
file "/usr/share/dns/root.hints";
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
zone "localhost" {
type master;
file "/etc/bind/db.local";
};
zone "127.in-addr.arpa" {
type master;
file "/etc/bind/db.127";
};
zone "0.in-addr.arpa" {
type master;
file "/etc/bind/db.0";
};
zone "255.in-addr.arpa" {
type master;
file "/etc/bind/db.255";
};

12
ns2-named.conf.local Normal file
View File

@ -0,0 +1,12 @@
zone "intensewebs.com" {
type slave;
file "/var/lib/bind/db.intensewebs.com";
masters { 192.168.1.140; };
};
zone "1.168.192.in-addr.arpa" {
type slave;
file "/var/lib/bind/db.1.168.192";
masters { 192.168.1.140; };
};

28
ns2-named.conf.options Normal file
View File

@ -0,0 +1,28 @@
acl trustedclients {
localhost;
localnets;
192.168.1.140; #ns1.intensewebs.com
192.168.1.141; #ns2.intensewebs.com
192.168.1.142; #ns3.intensewebs.com
192.168.1.143; #ns4.intensewebs.com
192.168.1.0/24;
192.168.2.0/24;
};
options {
directory "/var/cache/bind";
recursion yes;
allow-query { trustedclients; };
allow-query-cache { trustedclients; };
allow-recursion { trustedclients; };
forwarders {
9.9.9.9;
149.112.112.112;
};
dnssec-validation no;
listen-on-v6 { any; };
};

4
ns2-resolv.conf Normal file
View File

@ -0,0 +1,4 @@
domain intensewebs.com
search intensewebs.com
nameserver 192.168.1.140
nameserver 192.168.1.141

4
resolv.conf Normal file
View File

@ -0,0 +1,4 @@
domain intensewebs.com
search intensewebs.com
nameserver 192.168.1.140
nameserver 192.168.1.141