mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-06 03:43:30 +01:00
Add precise, move 14.04 to specific configuration
This commit is contained in:
parent
4465a0b0ec
commit
bb3e36a914
2 changed files with 36 additions and 0 deletions
35
vars/Ubuntu_12.yml
Normal file
35
vars/Ubuntu_12.yml
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
---
|
||||||
|
sshd_service: ssh
|
||||||
|
sshd_packages:
|
||||||
|
- openssh-server
|
||||||
|
sshd_config_mode: "0644"
|
||||||
|
sshd_defaults:
|
||||||
|
Port: 22
|
||||||
|
Protocol: 2
|
||||||
|
HostKey:
|
||||||
|
- /etc/ssh/ssh_host_rsa_key
|
||||||
|
- /etc/ssh/ssh_host_dsa_key
|
||||||
|
- /etc/ssh/ssh_host_ecdsa_key
|
||||||
|
UsePrivilegeSeparation: yes
|
||||||
|
KeyRegenerationInterval: 3600
|
||||||
|
ServerKeyBits: 768
|
||||||
|
SyslogFacility: AUTH
|
||||||
|
LogLevel: INFO
|
||||||
|
LoginGraceTime: 120
|
||||||
|
PermitRootLogin: yes
|
||||||
|
StrictModes: yes
|
||||||
|
RSAAuthentication: yes
|
||||||
|
PubkeyAuthentication: yes
|
||||||
|
IgnoreRhosts: yes
|
||||||
|
RhostsRSAAuthentication: no
|
||||||
|
HostbaseAuthentication: no
|
||||||
|
PermitEmptyPasswords: no
|
||||||
|
ChallengeResponseAuthentication: no
|
||||||
|
X11Forwarding: yes
|
||||||
|
X11DisplayOffset: 10
|
||||||
|
PrintMotd: no
|
||||||
|
PrintLastLog: yes
|
||||||
|
TCPKeepAlive: yes
|
||||||
|
AcceptEnv: LANG LC_*
|
||||||
|
Subsystem: "sftp {{ sshd_sftp_server }}"
|
||||||
|
UsePAM: yes
|
|
@ -5,6 +5,7 @@ sshd_packages:
|
||||||
- openssh-blacklist
|
- openssh-blacklist
|
||||||
- openssh-blacklist-extra
|
- openssh-blacklist-extra
|
||||||
- openssh-sftp-server
|
- openssh-sftp-server
|
||||||
|
sshd_config_mode: "0644"
|
||||||
sshd_defaults:
|
sshd_defaults:
|
||||||
Port: 22
|
Port: 22
|
||||||
Protocol: 2
|
Protocol: 2
|
Loading…
Reference in a new issue