Labels

Monday, July 28, 2014

Useful SSH configs

Put these in ~/.ssh/config

They help with repetitive tasks and such

Host *
     Compression yes
     ForwardX11 yes
     CompressionLevel 7
     Cipher blowfish
     ServerAliveInterval 600
     ControlMaster auto
     ControlPath /tmp/ssh-%r@%h:%p
     StrictHostKeyChecking no

Host 100.7.*
     StrictHostKeyChecking no
     UserKnownHostsFile=/dev/null

No comments: