diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-28 14:39:40 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-28 14:39:40 -0300 |
commit | 54c68a0572fcf356ad561f4784889299b1283d34 (patch) | |
tree | 25fd0c9642bc0fbed0b3b8e60a0384dfeceba5e8 /config | |
parent | 56e4beac363b424f833ef58d82bf7176952e8a4e (diff) | |
download | puppet-bootstrap-54c68a0572fcf356ad561f4784889299b1283d34.tar.gz puppet-bootstrap-54c68a0572fcf356ad561f4784889299b1283d34.tar.bz2 |
Default SSH config
Diffstat (limited to 'config')
-rw-r--r-- | config/common.yaml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config/common.yaml b/config/common.yaml index 006c5a8..3c6fe7b 100644 --- a/config/common.yaml +++ b/config/common.yaml @@ -43,3 +43,18 @@ ntp::servers: nodo::subsystem::resolver::nameservers: - '208.67.222.222' - '208.67.220.220' + +# +# OpenSSH +# +sshd::use_storedconfigs : false +sshd::manage_nagios : false +sshd::listen_address : [ "%{::ipaddress}", '127.0.0.1' ] +sshd::password_authentication : 'yes' +sshd::shared_ip : 'yes' +sshd::tcp_forwarding : 'yes' +sshd::x11_forwarding : 'no' +sshd::hardened : 'yes' +sshd::print_motd : 'no' +sshd::ports : [ 22 ] +sshd::use_pam : 'no' |