A BIND server should be upgraded to use TSIG. Which configuration parameters should be added if the server should use the algorithm hmac-md5 and the key skrKc4DoTzi/takIlPi7JZA==?
A.

B.

C.

D.

E.
A BIND server should be upgraded to use TSIG. Which configuration parameters should be added if the server should use the algorithm hmac-md5 and the key skrKc4DoTzi/takIlPi7JZA==?
A.
B.
C.
D.
E.
The correct configuration for adding TSIG with the specified algorithm and key should be in the following format: ``` key <key_name> { algorithm <algorithm_name>; secret "<secret_key>"; }; ``` Based on this, the correct choice is C: ``` key.server.example.com. { algorithm hmac-md5; secret "skrKc4DoTzi/takIlPi7JZA=="; }; ``` This matches the required parameters: the key name, the algorithm (hmac-md5), and the secret key enclosed in quotes.
deberia tener un espacio despues del "key", no un "."
C is correct! algorithm hmac-md5; secret "0jnu3SdsMvzzlmTDPYRceA=="; https://www.cyberciti.biz/faq/unix-linux-bind-named-configuring-tsig/