Добавил файлы

This commit is contained in:
Денис Буторин 2025-07-06 01:49:57 +03:00
commit 2907f691e2
Signed by: dekabu
GPG key ID: 867F0C8041D69B4C
4 changed files with 94 additions and 0 deletions

19
db.debu.su Normal file
View file

@ -0,0 +1,19 @@
$TTL 86400
@ IN SOA dns.debu.su. admin.debu.su. (
2025051601 ; Serial
3600 ; Refresh
1800 ; Retry
604800 ; Expire
86400 ; Minimum TTL
)
@ IN NS dns.debu.su.
dns IN A 185.71.196.60
@ IN A 185.71.196.60
www IN CNAME debu.su.
ftp IN CNAME debu.su.
git IN CNAME debu.su.

13
db.kompoet.ru Normal file
View file

@ -0,0 +1,13 @@
$TTL 86400
@ IN SOA dns.debu.su. admin.kompoet.ru. (
2025051601 ; Serial
3600 ; Refresh
1800 ; Retry
604800 ; Expire
86400 ; Minimum TTL
)
@ IN NS dns.debu.su.
@ IN A 185.71.196.60

20
db.kpfu.su Normal file
View file

@ -0,0 +1,20 @@
$TTL 86400
@ IN SOA dns.debu.su. admin.kpfu.su. (
2025051601 ; Serial
3600 ; Refresh
1800 ; Retry
604800 ; Expire
86400 ; Minimum TTL
)
@ IN NS dns.debu.su.
@ IN A 185.71.196.60
mathgym IN CNAME kpfu.su.
mg IN CNAME mathgym.kpfu.su.
git IN CNAME kpfu.su.
elvero IN CNAME kpfu.su.

42
named.conf Normal file
View file

@ -0,0 +1,42 @@
/*
* Refer to the named.conf(5) and named(8) man pages, and the documentation
* in /usr/share/doc/bind-* for more details.
* Online versions of the documentation can be found here:
* https://kb.isc.org/article/AA-01031
*
* If you are going to set up an authoritative server, make sure you
* understand the hairy details of how DNS works. Even with simple mistakes,
* you can break connectivity for affected parties, or cause huge amounts of
* useless Internet traffic.
*/
options {
directory "/var/bind";
pid-file "/run/named/named.pid";
allow-query { any; };
recursion yes;
listen-on { any; };
listen-on-v6 { none; };
};
zone "debu.su" {
type master;
file "/etc/bind/db.debu.su";
};
zone "dgit.su" {
type master;
file "/etc/bind/db.dgit.su";
};
zone "kpfu.su" {
type master;
file "/etc/bind/db.kpfu.su";
};
zone "kompoet.ru" {
type master;
file "/etc/bind/db.kompoet.ru";
};