Browse Source

adds support to harden sshd_config (KeyExchange, Ciphers, MACs)

master
Ingo Bente 9 years ago
parent
commit
83bb5ac5a0
2 changed files with 14 additions and 1 deletions
  1. +10
    -1
      openssh/files/sshd_config
  2. +4
    -0
      pillar.example

+ 10
- 1
openssh/files/sshd_config View File



# Restricting Users and Hosts # Restricting Users and Hosts
# example: # example:
# AllowUsers vader@10.0.0.1 maul@sproing.evil.com luke
# AllowUsers vader@10.0.0.1 maul@sproing.evil.com luke
# AllowGroups wheel staff # AllowGroups wheel staff
# #
# Keep in mind that using AllowUsers or AllowGroups means that anyone # Keep in mind that using AllowUsers or AllowGroups means that anyone
# AllowGroups # AllowGroups
{{ option('AllowGroups', '') }} {{ option('AllowGroups', '') }}


# Specifies the available KEX (Key Exchange) algorithms.
{{ option('KexAlgorithms', 'ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1') }}

# Specifies the ciphers allowed for protocol version 2.
{{ option('Ciphers', 'aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,aes256-cbc,arcfour,rijndael-cbc@lysator.liu.se') }}

# Specifies the available MAC (message authentication code) algorithms.
{{ option('MACs', 'hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-sha2-256,hmac-sha2-256-96,hmac-sha2-512,hmac-sha2-512-96,hmac-ripemd160,hmac-ripemd160@openssh.com,hmac-sha1-96,hmac-md5-96') }}

{# Handling unknown in salt template options #} {# Handling unknown in salt template options #}
{%- for keyword in sshd_config.keys() %} {%- for keyword in sshd_config.keys() %}
{#- Matches have to be at the bottem and should be handled differently -#} {#- Matches have to be at the bottem and should be handled differently -#}

+ 4
- 0
pillar.example View File

X11Forwarding: no X11Forwarding: no
AllowTcpForwarding: no AllowTcpForwarding: no
ForceCommand: internal-sftp ForceCommand: internal-sftp
# Check `man sshd_config` for supported KexAlgorithms, Ciphers and MACs first.
KexAlgorithms: 'diffie-hellman-group14-sha1,diffie-hellman-group1-sha1'
Ciphers: 'aes128-ctr,aes256-ctr'
MACs: 'hmac-sha1'


openssh: openssh:
auth: auth:

Loading…
Cancel
Save