bundles/openssh: introduce, add to all nodes
All checks were successful
bundlewrap/pipeline/head This commit looks good
All checks were successful
bundlewrap/pipeline/head This commit looks good
This commit is contained in:
parent
e56e875433
commit
6d58f2387f
7 changed files with 118 additions and 0 deletions
8
bundles/openssh/files/override.conf
Normal file
8
bundles/openssh/files/override.conf
Normal file
|
@ -0,0 +1,8 @@
|
|||
# The default unit already has "Restart=on-failure", but it has set
|
||||
# "RestartPreventExitStatus=255", which prevents a restart on that
|
||||
# specific exit code. I don't think we want that. Please, just restart
|
||||
# ssh.
|
||||
|
||||
[Service]
|
||||
RestartPreventExitStatus=
|
||||
RestartSec=1
|
39
bundles/openssh/files/sshd_config
Normal file
39
bundles/openssh/files/sshd_config
Normal file
|
@ -0,0 +1,39 @@
|
|||
Port 22
|
||||
|
||||
PermitRootLogin No
|
||||
Protocol 2
|
||||
AuthorizedKeysFile .ssh/authorized_keys
|
||||
GSSAPIAuthentication no
|
||||
KerberosAuthentication no
|
||||
ChallengeResponseAuthentication no
|
||||
PasswordAuthentication no
|
||||
PubkeyAuthentication yes
|
||||
UseDNS no
|
||||
|
||||
LogLevel INFO
|
||||
X11Forwarding no
|
||||
IgnoreRhosts yes
|
||||
HostbasedAuthentication no
|
||||
PermitEmptyPasswords no
|
||||
PermitUserEnvironment no
|
||||
Ciphers chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
|
||||
MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-256,hmac-sha2-512
|
||||
KexAlgorithms curve25519-sha256,curve25519-sha256@libssh.org,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512,ecdh-sha2-nistp521,ecdh-sha2-nistp256,ecdh-sha2-nistp384,diffie-hellman-group-exchange-sha256
|
||||
LoginGraceTime 60
|
||||
AllowUsers ${' '.join(sorted(login_users))}
|
||||
UsePAM yes
|
||||
AllowTcpForwarding no
|
||||
PrintMotd no
|
||||
|
||||
MaxSessions 512
|
||||
MaxStartups 512:30:768
|
||||
|
||||
Subsystem sftp internal-sftp
|
||||
|
||||
Match Group sftp
|
||||
ChrootDirectory %h
|
||||
ForceCommand internal-sftp
|
||||
PasswordAuthentication no
|
||||
|
||||
Match User ${','.join(sorted(admin_users))}
|
||||
AllowTcpForwarding yes
|
Loading…
Add table
Add a link
Reference in a new issue