Open resolver: Difference between revisions
From ICO wiki
Jump to navigationJump to search
Line 29: | Line 29: | ||
}; | }; | ||
</source> | </source> | ||
acl - access control list, nimekiri võrkudest või ip aadressidest | |||
allow-recursion - kas päringud on lubatud "forwarders" nimeserveritesse | |||
allow-query - kas päringud on lubatud | |||
allow-transafer - kas tsooni transfer on lubatud | |||
=Open resolver test= | =Open resolver test= |
Revision as of 19:09, 12 March 2011
Teema võetud - Peep Binsol, Rene Vahtel
Sissejuhatus
Lingid
konfinäide: [1]
Bind9 konfigureerimine
name.conf.options näitefail
acl me {192.168.7.0/24;};
options {
directory "/var/cache/bind";
forwarders {
8.8.8.8;
8.8.4.4;
};
allow-recursion { me; };
allow-query { me; };
allow-transfer { me; };
auth-nxdomain no; # conform to RFC1035
listen-on-v6 { any; };
};
acl - access control list, nimekiri võrkudest või ip aadressidest
allow-recursion - kas päringud on lubatud "forwarders" nimeserveritesse
allow-query - kas päringud on lubatud
allow-transafer - kas tsooni transfer on lubatud