diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/conf/etc/ssh/sshd_config | 3 | ||||
-rw-r--r-- | tools/openssh.html | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/tools/conf/etc/ssh/sshd_config b/tools/conf/etc/ssh/sshd_config index 5e07530..f0619fe 100644 --- a/tools/conf/etc/ssh/sshd_config +++ b/tools/conf/etc/ssh/sshd_config @@ -33,6 +33,7 @@ Protocol 2 # Ciphers and keying #RekeyLimit default none +Ciphers aes256-ctr,aes192-ctr,aes128-ctr # Logging # obsoletes QuietMode and FascistLogging @@ -51,7 +52,7 @@ MaxAuthTries 3 #MaxSessions 10 #RSAAuthentication yes -#PubkeyAuthentication yes +PubkeyAuthentication yes AllowGroups admin users gitolite diff --git a/tools/openssh.html b/tools/openssh.html index 70fe76f..96e1653 100644 --- a/tools/openssh.html +++ b/tools/openssh.html @@ -73,6 +73,12 @@ Protocol 2 </pre> + <pre> + # Ciphers and keying + #RekeyLimit default none + Ciphers aes256-ctr,aes192-ctr,aes128-ctr + </pre> + <p>Authentication settings;</p> <pre> |