Advertisement
Typhoon

OS-X SSH Tweaks

Nov 15th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.40 KB | None | 0 0
  1. # cat ~/.ssh/config
  2.  
  3. Compression yes
  4. CompressionLevel 6
  5.  
  6. Host 10.10.0.*
  7.    StrictHostKeyChecking no
  8.       UserKnownHostsFile=/dev/null
  9.  
  10. Host 10.10.1.*
  11.    StrictHostKeyChecking no
  12.       UserKnownHostsFile=/dev/null
  13.  
  14. Host *.env1.domain.local
  15.    StrictHostKeyChecking no
  16.       UserKnownHostsFile=/dev/null
  17.  
  18. Host *.env2.domain.local
  19.    StrictHostKeyChecking no
  20.       UserKnownHostsFile=/dev/null
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement