Puppet Class: secure_windows::stig::v73501
- Defined in:
- manifests/stig/v73501.pp
Overview
V-73501 Source routing must be configured to the highest protection level to prevent Internet Protocol (IP) source routing.
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/v73501.pp', line 3
class secure_windows::stig::v73501 (
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 { 'v73501':
key => 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters',
value => 'DisableIPSourceRouting',
type => 'dword',
data => '0x00000002',
}
}
}
|