Puppet Class: secure_windows::stig::v73505

Defined in:
manifests/stig/v73505.pp

Overview

V-73505 Windows Server 2016 must be configured to ignore NetBIOS name release requests except from WINS servers.

Parameters:

  • enforced (Boolean) (defaults to: false)


3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'manifests/stig/v73505.pp', line 3

class secure_windows::stig::v73505 (
  Boolean $enforced = false,
) {

  if $enforced {

    # This policy setting requires the installation of the MSS-Legacy
    # custom templates included with the STIG package.
    # "MSS-Legacy.admx" and "MSS-Legacy.adml" must be copied to the
    # \Windows\PolicyDefinitions and \Windows\PolicyDefinitions\en-US directories respectively.

    include ::secure_windows::administrative_template_msslegacy_installer

    registry::value { 'v73505':
      key   => 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Netbt\Parameters',
      value => 'NoNameReleaseOnDemand',
      type  => 'dword',
      data  => '0x00000001',
    }

  }

}