Manage ssh client and server.
The module uses exported resources to manage ssh keys and removes ssh keys that are not managed by puppet. This behavior is managed by the parameters ssh_key_ensure and purge_keys.
===
This module has been tested to work on the following systems with Puppet versions v3, v3 with future parser and v4 with Ruby versions 1.8.7 (Puppet v3 only), 1.9.3, 2.0.0 and 2.1.0.
- Debian 7
- EL 5
- EL 6
- EL 7
- SLES 11
- Ubuntu 12.04 LTS
- Solaris 9
- Solaris 10
- Solaris 11
===
A value of 'USE_DEFAULTS'
will use the defaults specified by the module.
Boolean to merges all found instances of ssh::keys in Hiera. This is useful for specifying SSH keys at different levels of the hierarchy and having them all included in the catalog.
This will default to 'true' in future versions.
- Default: false
HashKnownHosts in ssh_config. Indicates that ssh should hash host names and addresses when they are added to ~/.ssh/known_hosts. These hashed names may be used normally by ssh and sshd, but they do not reveal identifying information should the file's contents be disclosed. The default is 'no' on Linux.
Note that existing names and addresses in known hosts files will not be converted automatically, but may be manually hashed using ssh-keygen. Use of this option may break facilities such as tab-completion that rely on being able to read unhashed host names from ~/.ssh/known_hosts.
- Default: 'USE_DEFAULTS'
Path to ssh_config.
- Default: '/etc/ssh/ssh_config'
ssh_config's owner.
- Default: 'root'
ssh_config's group.
- Default: 'root'
ssh_config's mode.
- Default: '0644'
ForwardX11 option in ssh_config. Not set by default.
- Default: undef
ForwardAgent option in ssh_config. Not set by default.
- Default: undef
ServerAliveInterval option in ssh_config. Not set by default.
- Default: undef
Boolean to set 'SendEnv XMODIFIERS' in ssh_config. This option is only valid on Linux.
- Default: false
string The template used to generate ssh_config.
- Default: 'ssh/ssh_config.erb'
Array of ciphers to be used with the Ciphers option in ssh_config.
- Default: undef
Array of ciphers to be used with the MACs option in ssh_config.
- Default: undef
Boolean to enable SendEnv options for specifying environment variables. Default is set to true on Linux.
- Default: 'USE_DEFAULTS'
GSSAPIAuthentication: Enables/disables GSS-API user authentication in ssh_config. Valid values are 'yes' and 'no'.
- Default: 'yes'
string For GSSAPIDelegateCredentials setting in ssh_config. Valid values are 'yes' and 'no' or to leave undef which will ensure the setting is not present in ssh_config.
- Default: undef
Path to sshd_config.
- Default: '/etc/ssh/sshd_config
sshd_config's owner.
- Default: 'root'
sshd_config's group.
- Default: 'root'
LogLevel option in sshd_config. Acceptable values are QUIET, FATAL, ERROR, INFO, VERBOSE.
DEBUG, DEBUG1, DEBUG2, and DEBUG3 are permitted values for sshd, however setting the logging level to DEBUG or higher violates the privacy of users and should not be done unless manually debugging.
- Default: 'INFO'
sshd_config's mode. The default is '0600' on Linux and '0644' on Solaris.
- Default: 'USE_DEFAULTS'
String or Array to specify address(es) for which sshd will bind. Corresponds to ListenAddress in sshd_config.
- Default: undef
String to specify listen port for sshd. Port option in sshd_config.
- Default: '22'
SyslogFacility option in sshd_config.
- Default: 'AUTH'
string The template used to generate sshd_config.
- Default: 'ssh/sshd_config.erb'
LoginGraceTime option in sshd_config.
- Default: '120'
ChallengeResponseAuthentication option in sshd_config.
- Default: 'yes'
PrintMotd option in sshd_config.
- Default: 'yes'
UseDNS option in sshd_config. The default is 'yes' on Linux.
- Default: 'USE_DEFAULTS'
Specify location of authorized_keys file. Default is to not specify.
- Default: undef
Specify an array of server side HostKey files to use. Default is to use only /etc/ssh/ssh_host_rsa_key
- Default: /etc/ssh/ssh_host_rsa_key
Specifies whether sshd should check file modes and ownership of the user's files and home directory before accepting login. Valid values are yes and no.
- Default: undef
Defines the number of bits in the ephemeral protocol version 1 server key. The minimum value is 512, and the default is 1024 except for Solaris default value is 768.
- Default: '1024' except for Solaris which is '768'
Banner option in sshd_config.
- Default: 'none'
content parameter for file specified in sshd_config_banner
- Default: undef
owner parameter for file specified in sshd_config_banner
- Default: 'root'
group parameter for file specified in sshd_config_banner
- Default: 'root'
mode parameter for file specified in sshd_config_banner
- Default: '0644'
XAuthLocation option in sshd_config.
- Default: 'USE_DEFAULTS'
Path to sftp file transfer subsystem in sshd_config.
- Default: 'USE_DEFAULTS'
PasswordAuthentication in sshd_config. Specifies whether password authentication is allowed.
- Default: 'yes'
AllowTcpForwarding in sshd_config. Specifies whether TCP forwarding is permitted.
- Default: 'yes'
Fully qualified path to command for AuthorizedKeysCommand in sshd_config.
- Default: undef
String of user for AuthorizedKeysCommandUser in sshd_config.
- Default: undef
X11Forwarding in sshd_config. Specifies whether X11 forwarding is permitted.
- Default: 'yes'
UsePam in sshd_config. Enables the Pluggable Authentication Module interface. If set to 'yes' this will enable PAM authentication using ChallengeResponseAuthentication and PasswordAuthentication in addition to PAM account and session module processing for all authentication types. This module sets this option to 'yes' on Linux and undef on Solaris.
- Default: 'USE_DEFAULTS'
ClientAliveInterval in sshd_config. Sets a timeout interval in seconds after which if no data has been received from the client, sshd(8) will send a message through the encrypted channel to request a response from the client. The default is 0, indicating that these messages will not be sent to the client. This option applies to protocol version 2 only.
- Default: '0'
ClientAliveCountMax in sshd_config. Sets the number of client alive messages (see below) which may be sent without sshd(8) receiving any messages back from the client. If this threshold is reached while client alive messages are being sent, sshd will disconnect the client, terminating the session. It is important to note that the use of client alive messages is very different from TCPKeepAlive (below). The client alive messages are sent through the encrypted channel and therefore will not be spoofable. The TCP keepalive option enabled by TCPKeepAlive is spoofable. The client alive mechanism is valuable when the client or server depend on knowing when a connection has become inactive. The default value is 3. If ClientAliveInterval (see below) is set to 15, and ClientAliveCountMax is left at the default, unresponsive SSH clients will be disconnected after approximately 45 seconds. This option applies to protocol version 2 only.
- Default: '3'
Array of ciphers for the Ciphers setting in sshd_config.
- Default: undef
Array of macs for the MACs setting in sshd_config.
- Default: undef
Array of users for the DenyUsers setting in sshd_config.
- Default: undef
Array of groups for the DenyGroups setting in sshd_config.
- Default: undef
Array of users for the AllowGroups setting in sshd_config.
- Default: undef
Array of users for the AllowUsers setting in sshd_config.
- Default: undef
Specifies the maximum number of concurrent unauthenticated connections to the SSH daemon.
- Default: undef
Specifies the maximum number of open sessions permitted per network connection.
- Default: undef
String with absolute path for the ChrootDirectory directive for the SSH daemon.
- Default: undef
String with command for the ForceCommand directive for the SSH daemon.
- Default: undef
Hash for matches with nested arrays for options for the Match directive for the SSH daemon. Match directive is supported on SSH >= 5.x.
-
Default: undef
-
Hiera example:
ssh::sshd_config_match: 'User JohnDoe': - 'AllowTcpForwarding yes' 'Address 2.4.2.0': - 'X11Forwarding yes' - 'PasswordAuthentication no'
Hash of keys for user's ~/.ssh/authorized_keys
- Default: undefined
Array of package names used for installation.
- Default: Based on OS
Allow root login. Valid values are 'yes', 'without-password', 'forced-commands-only', and 'no'.
- Default: yes
ForwardX11Trusted. Determine remote X11 client access to the original X11 display. The option is set to 'yes' on Linux. Valid values are 'yes', 'no', and undef.
- Default: 'USE_DEFAULTS' (Not valid on Solaris.)
Source to SSH packages.
- Default: 'USE_DEFAULTS'
Path to admin file for SSH packages.
- Default: 'USE_DEFAULTS'
GSSAPIAuthentication: Enables/disables GSS-API user authentication. Valid values are 'yes' and 'no'.
- Default: 'yes'
GSSAPIKeyExchange: Enables/disables GSS-API-authenticated key exchanges. Valid values are 'yes', 'no', and undef.
- Default: 'USE_DEFAULTS'
PAMAuthenticationViaKBDInt: Use PAM via keyboard interactive method for authentication. Valid values are 'yes', 'no', and undef.
- Default: 'USE_DEFAULTS'
GSSAPICleanupCredentials: Specifies whether to automatically destroy the user's credentials on logout. Default is 'yes' on Linux. Valid values are 'yes', 'no', and undef.
- Default: 'USE_DEFAULTS'
Boolean to enable AcceptEnv options for specifying environment variables. Default is set to true on Linux.
- Default: 'USE_DEFAULTS'
String for HostbasedAuthentication option in sshd_config. Valid values are 'yes' and 'no'. Specifies whether rhosts or /etc/hosts.equiv authentication together with successful public key client host authentication is allowed (host-based authentication). This option is similar to RhostsRSAAuthentication and applies to protocol version 2 only.
- Default: 'no'
String for IgnoreUserKnownHosts option in sshd_config. Valid values are 'yes' and 'no'. Specifies whether sshd(8) should ignore the user's ~/.ssh/known_hosts during RhostsRSAAuthentication or HostbasedAuthentication.
- Default: 'no'
String for IgnoreRhosts option in sshd_config. Valid values are 'yes' and 'no'. Specifies that .rhosts and .shosts files will not be used in RhostsRSAAuthentication or HostbasedAuthentication though /etc/hosts.equiv and /etc/ssh/shosts.equiv are still used.
- Default: 'yes'
Remove keys not managed by puppet.
- Default: 'true'
Open firewall for SSH service. Not used on Solaris.
- Default: false
Ensure SSH service is running. Valid values are 'stopped' and 'running'.
- Default: 'running'
Name of the SSH service.
- Default: Based on OS
Start SSH at boot. Valid values are 'true', 'false' and 'manual'.
- Default: 'true'
Specify that the init script has a restart command. Valid values are 'true' and 'false'.
- Default: 'true'
Boolean to declare whether the service's init script has a functional status command.
- Default: 'USE_DEFAULTS'
Export node SSH key. Valid values are 'present' and 'absent'.
- Default: 'present'
Import all exported node SSH keys. Valid values are 'true' and 'false'.
- Default: 'true'
Encryption type for SSH key. Valid values are 'rsa', 'dsa', 'ssh-dss' and 'ssh-rsa'
- Default: 'ssh-rsa'
File of the global known_hosts file
- Default: '/etc/ssh/ssh_known_hosts'
Owner of the global known_hosts file
- Default: 'root'
Group of the global known_hosts file
- Default: 'root'
File mode of the global known_hosts file
- Default: '0644'
Manage SSH config of root. Valid values are 'true' and 'false'.
- Default: 'false'
Content of root's ~/.ssh/config.
- Default: "# This file is being maintained by Puppet.\n# DO NOT EDIT\n"
===
This works by passing the ssh::keys hash to the ssh_authorized_keys type with create_resources(). Because of this, you may specify any valid parameter for ssh_authorized_key. See the Type Reference for a complete list.
Push authorized key "root_for_userX" and remove key "root_for_userY" through Hiera.
ssh::keys: root_for_userX: ensure: present user: root type: dsa key: AAAA...== apachehup: ensure: present user: apachehup type: rsa key: 'AAAA...==' options: 'command="/sbin/service httpd restart"' root_for_userY: ensure: absent user: root