From ee5dd0818155f130a13974168b97039f1face7aa Mon Sep 17 00:00:00 2001 From: Tony Goetheyn <13643294+tgoetheyn@users.noreply.github.com> Date: Fri, 22 Nov 2024 09:27:54 +0100 Subject: [PATCH] Rule 18.5.4.1 - EnableMulticast needs to be set to 1 The regkey "EnableMulticast" toggles the rule that disables multicast name resolution. therefore this setting needs to be set to 1 to disable multicast Signed-off-by: Tony Goetheyn <13643294+tgoetheyn@users.noreply.github.com> --- tasks/section18.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/section18.yml b/tasks/section18.yml index 6105b2c..4a08655 100644 --- a/tasks/section18.yml +++ b/tasks/section18.yml @@ -424,7 +424,7 @@ ansible.windows.win_regedit: path: HKLM:\Software\Policies\Microsoft\Windows NT\DNSClient name: EnableMulticast - data: 0 + data: 1 type: dword when: - win16cis_rule_18_5_4_1