Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- acl trusted {
- 10.0.0.0/8;
- };
- acl my_addresses {
- 127.0.0.1/32; // IPv4 loopback (typically)
- ::1/128; // IPv6 loopback
- 10.27.0.50; // One of the IPv4 addresses that *this* particular server will listen on.
- fd5c:c68a:de70:c0d8:4a21:bff:fe52:1ddb/128; // One of the IPv6 addresses that named would listen on.
- };
- acl secondary_zones {
- 10.27.0.65;
- 10.27.0.40;
- };
- include "/etc/bind/named.conf.options";
- include "/etc/bind/named.conf.local";
- include "/etc/bind/named.conf.default-zones";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement