-
Notifications
You must be signed in to change notification settings - Fork 0
GeoDNS
matveynator edited this page Apr 29, 2023
·
5 revisions
gurl https://geoip.site/download/IP2Location/GeoIP.acl > /etc/bind/GeoIP.acl
include "/etc/bind/GeoIP.acl";
view "russia" {
match-clients { RU; };
zone "matveynator.ru" {
type master;
file "/var/lib/bind/matveynator.ru.hosts-russia";
};
include "/etc/bind/named.conf.local";
};
view "world" {
match-clients { any; };
zone "matveynator.ru" {
type master;
file "/var/lib/bind/matveynator.ru.hosts-world";
};
include "/etc/bind/named.conf.local";
};
dig +short test.matveynator.ru
получаем ответ 127.0.0.1 или 127.0.0.2 в зависимости от региона запроса (из России или из другой страны)