- This Ansible module allows to enable or disable some feature of the DNS client of all the network adapters.
Parameter | Choices/Defaults | Comments |
---|---|---|
enable_multi_cast boolean |
Choices:
|
Specifies whether the Multicast Name Resolution (LLMNR) is enabled. If this value is set to true , the host can perform name resolution for hosts on the same local link without the requirement of a DNS server. |
---
- name: test the win_dns_client_feature module
hosts: all
gather_facts: false
roles:
- win_dns_client_feature
tasks:
- name: Turn off Multicast Name Resolution
win_dns_client_feature:
enable_multi_cast: false
- Stéphane Bilqué (@sbilque) Informatique CDC
This project is licensed under the Apache 2.0 License.
See LICENSE to see the full text.