Puppet Class: cis_security_hardening::rules::sshd_max_startups
- Defined in:
- manifests/rules/sshd_max_startups.pp
Summary
Ensure SSH MaxStartups is configuredOverview
The MaxStartups parameter specifies the maximum number of concurrent unauthenticated connections to the SSH daemon.
Rationale: To protect a system from denial of service due to a large number of pending authentication connection attempts, use the rate limiting function of MaxStartups to protect availability of sshd logins and prevent overwhelming the daemon.
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'manifests/rules/sshd_max_startups.pp', line 21
class cis_security_hardening::rules::sshd_max_startups (
Boolean $enforce = false,
) {
if $enforce {
$path = ($facts['os']['name'] == 'SLES' and $facts['os']['release']['major'] == '12') ? {
true => '/usr/etc/ssh/sshd_config',
default => '/etc/ssh/sshd_config',
}
file_line { 'sshd-max-startups':
ensure => present,
path => $path,
line => 'MaxStartups 10:30:60',
match => '^#?MaxStartups.*',
append_on_no_match => true,
notify => Exec['reload-sshd'],
}
}
}
|