Skip to content

Instantly share code, notes, and snippets.

@hdemon
Created January 21, 2014 20:27
Show Gist options
  • Select an option

  • Save hdemon/8547713 to your computer and use it in GitHub Desktop.

Select an option

Save hdemon/8547713 to your computer and use it in GitHub Desktop.
setup ssh
#!/bin/sh
sudo bash -c "cat >> /etc/ssh/sshd_config" <<'EOT'
Port 22
Protocol 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
UsePrivilegeSeparation yes
KeyRegenerationInterval 3600
ServerKeyBits 768
SyslogFacility AUTH
LogLevel INFO
LoginGraceTime 120
PermitRootLogin no
StrictModes yes
RSAAuthentication yes
PubkeyAuthentication yes
IgnoreRhosts yes
RhostsRSAAuthentication no
HostbasedAuthentication no
PermitEmptyPasswords no
ChallengeResponseAuthentication no
PasswordAuthentication yes
X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
UsePAM yes
EOT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment