Module for configuring DNS Client on Windows systems
Add the DNS server to the network interface (index starts from 1)
Note: if the interface DNS is configured by DHCP, all the DNS servers will be removed from the interface and the requested DNS will be the only one
CLI Example:
salt '*' win_dns_client.add_dns <interface> <index>
Configure the interface to get its DNS servers from the DHCP server
CLI Example:
salt '*' win_dns_client.dns_dhcp <interface>
Get the type of DNS configuration (dhcp / static)
CLI Example:
salt '*' win_dns_client.get_dns_config 'Local Area Connection'
Return a list of the configured DNS servers of the specified interface
CLI Example:
salt '*' win_dns_client.get_dns_servers 'Local Area Connection'
Remove the DNS server to the network interface
CLI Example:
salt '*' win_dns_client.rm_dns <interface>
Current Salt release: 2014.1.6
Docs for previous releases on salt.rtfd.org.