Advertisement
Guest User

Untitled

a guest
Feb 6th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. ON POOL-MANAGER VM:
  2.  
  3. - /etc/rndc.conf -
  4. key "rndc-key" {
  5. algorithm hmac-md5;
  6. secret "jOX/cTWE4iXLTYJ5cJQYRQ==";
  7. };
  8. options {
  9. default-server 10.2.22.220;
  10. default-key "rndc-key";
  11. };
  12.  
  13. - /etc/designate/rndc.key -
  14. key "rndc-key" {
  15. algorithm hmac-md5;
  16. secret "jOX/cTWE4iXLTYJ5cJQYRQ==";
  17. };
  18.  
  19. - from /etc/designate/pools.yaml about rndc -
  20. rndc_host: 10.2.22.220
  21. rndc_key_file: /etc/rndc.key
  22. rndc_port: 953
  23.  
  24. ON BIND9 BACKEND HOST:
  25.  
  26. - /etc/rndc.key -
  27. key "rndc-key" {
  28. algorithm hmac-md5;
  29. secret "4WEyhZ90o9plRKam2MAS9Q==";
  30. };
  31.  
  32. - from /etc/named.conf about rndc -
  33. include "/etc/rndc.key";
  34.  
  35. controls {
  36. inet * allow { any; } keys { "rndc-key"; };
  37. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement