LX0-104 · Question #385
What are the steps which must be followed to enable serverwide zone transfers between two BIND 9 servers securely using TSIG?
The correct answer is B. Generate a key, specify the private key in the named configuration on both servers, create a server. To enable secure BIND 9 zone transfers using TSIG, a shared secret key must be generated and then specified in the named configuration on both the primary and secondary DNS servers.
Question
Options
- AGenerate a key, specify the public key in the named configuration on both servers, create a server
- BGenerate a key, specify the private key in the named configuration on both servers, create a server
- CGenerate a key, specify the private key in the named configuration on one server and the public key
- DGenerate a key, specify the private key in the named configuration on one server and the public key
How the community answered
(32 responses)- A9% (3)
- B75% (24)
- C3% (1)
- D13% (4)
Why each option
To enable secure BIND 9 zone transfers using TSIG, a shared secret key must be generated and then specified in the named configuration on both the primary and secondary DNS servers.
TSIG relies on a shared secret (private) key, not a public key; public keys are used in asymmetric cryptography like DNSSEC, but not for TSIG's symmetric shared secret model.
Secure zone transfers using TSIG (Transaction Signature) in BIND require both the primary and secondary DNS servers to share the *same* secret key. This key, often generated using `dnssec-keygen`, acts as a shared private key that allows both servers to cryptographically sign and verify messages, ensuring authenticity and integrity of zone transfer requests and responses.
TSIG uses a single shared secret key, not a combination of private and public keys distributed differently across servers.
TSIG uses a single shared secret key, not a combination of private and public keys distributed differently across servers.
Concept tested: BIND 9 TSIG secure zone transfers
Source: https://www.isc.org/docs/bind9-admin-reference-guide.pdf
Topics
Community Discussion
No community discussion yet for this question.