From BIND 9.x Security Technical Implementation Guide
Part of SRG-APP-000158-DNS-000015
Associated with: CCI-000778 CCI-001958 CCI-001967 CCI-002039 CCI-002418 CCI-002421
Server-to-server (zone transfer) transactions are provided by TSIG, which enforces mutual server authentication using a key that is unique to each server pair (TSIG), thus uniquely identifying the other server. DNS does perform server authentication when TSIG is used, but this authentication is transactional in nature (each transaction has its own authentication performed).
If zone transfers are disabled with the "allow-transfer { none; };" directive, this is Not Applicable.
Verify that the BIND 9.x server is configured to uniquely identify a name server before responding to a zone transfer.
Inspect the "named.conf" file for the presence of TSIG key statements:
On the master name server, this is an example of a configured key statement:
key tsig_example. {
algorithm hmac-SHA1;
include "tsig-example.key";
};
zone "disa.mil" {
type master;
file "db.disa.mil";
allow-transfer { key tsig_example.; };
};
On the slave name server, this is an example of a configured key statement:
key tsig_example. {
algorithm hmac-SHA1;
include "tsig-example.key";
};
server
Configure the BIND 9.x server to use TSIG keys.
Add a key statement to the "named.conf" file for TSIG that is being used:
key tsig_example. {
algorithm hmac-SHA1;
include "tsig-example.key";
};
Add key statements to the allow-transfer statements on a master name server:
allow-transfer { key tsig_example.; };
Add key statements to the server statements on a secondary name server:
server
Lavender hyperlinks in small type off to the right (of CSS
class id
, if you view the page source) point to
globally unique URIs for each document and item. Copy the
link location and paste anywhere you need to talk
unambiguously about these things.
You can obtain data about documents and items in other
formats. Simply provide an HTTP header Accept:
text/turtle
or
Accept: application/rdf+xml
.
Powered by sagemincer