feat: add option to enable or disable ipv4/ipv6
This commit is contained in:
parent
cf18a2e564
commit
9944b4e2fc
5 changed files with 17 additions and 2 deletions
|
@ -13,6 +13,8 @@ None
|
|||
|
||||
* `bind_role` - the role `master` or `slave`, don't generate dnssec key on `slave`
|
||||
* `bind_zones` - the dns zones
|
||||
* `bind_listen_ipv4` - enable or disable ip v4 support (default: true)
|
||||
* `bind_listen_ipv6` - enable or disable ip v6 support (default: true)
|
||||
|
||||
## How to use
|
||||
|
||||
|
|
3
defaults/main.yml
Normal file
3
defaults/main.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
bind_listen_ipv4: true
|
||||
bind_listen_ipv6: true
|
|
@ -32,6 +32,15 @@ describe file('/etc/bind/named.conf.local') do
|
|||
it { should contain '4.2.2.4' }
|
||||
end
|
||||
|
||||
describe file('/etc/bind/named.conf.options') do
|
||||
it { should be_file }
|
||||
it { should be_mode 644 }
|
||||
it { should be_owned_by 'root' }
|
||||
it { should be_grouped_into 'root' }
|
||||
it { should contain 'listen-on { any; };' }
|
||||
it { should contain 'listen-on-v6 { none; };' }
|
||||
end
|
||||
|
||||
describe port(53) do
|
||||
it { should be_listening.with('tcp') }
|
||||
it { should be_listening.with('udp') }
|
||||
|
|
|
@ -8,8 +8,8 @@ options {
|
|||
dnssec-lookaside auto;
|
||||
|
||||
auth-nxdomain no; # conform to RFC1035
|
||||
listen-on { any; };
|
||||
listen-on-v6 { none; };
|
||||
listen-on { {% if bind_listen_ipv4 %}any{% else %}none{% endif %}; };
|
||||
listen-on-v6 { {% if bind_listen_ipv6 %}any{% else %}none{% endif %}; };
|
||||
|
||||
version none;
|
||||
};
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
- hosts: localhost
|
||||
connection: local
|
||||
vars:
|
||||
bind_listen_ipv6: false
|
||||
bind_role: master
|
||||
bind_zones:
|
||||
test.local:
|
||||
|
|
Loading…
Reference in a new issue