Advertisement
FengShui

named.conf

Jul 18th, 2024
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. acl trusted {
  2. 10.0.0.0/8;
  3. };
  4.  
  5. acl my_addresses {
  6. 127.0.0.1/32; // IPv4 loopback (typically)
  7. ::1/128; // IPv6 loopback
  8. 10.27.0.50; // One of the IPv4 addresses that *this* particular server will listen on.
  9. fd5c:c68a:de70:c0d8:4a21:bff:fe52:1ddb/128; // One of the IPv6 addresses that named would listen on.
  10. };
  11.  
  12. acl secondary_zones {
  13. 10.27.0.65;
  14. 10.27.0.40;
  15. };
  16.  
  17. include "/etc/bind/named.conf.options";
  18. include "/etc/bind/named.conf.local";
  19. include "/etc/bind/named.conf.default-zones";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement