From 8d6b713edc114733ac8f010f40f769d1a6be7837 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Thu, 20 Aug 2015 09:37:43 +0300 Subject: [PATCH] add my ssh config --- .mikaela/ssh/config | 29 +++++++++++++++++++++++++++++ .mikaela_install | 1 + 2 files changed, 30 insertions(+) create mode 100644 .mikaela/ssh/config diff --git a/.mikaela/ssh/config b/.mikaela/ssh/config new file mode 100644 index 00000000..b2273986 --- /dev/null +++ b/.mikaela/ssh/config @@ -0,0 +1,29 @@ +# My SSH config. This does leak existense of some hosts where I have +# access, but they should require SSH key authentication anyway. + +Host * + VerifyHostKeyDNS=ask + Compression yes + CompressionLevel 6 + ControlMaster yes + ControlPath /tmp/SSH_%u-%r.%h.%p + ControlPersist yes + ForwardAgent no + ForwardX11 no + IdentityFile ~/.ssh/Mikaela_Suomalainen + LogLevel VERBOSE + Protocol 2 + PubkeyAuthentication yes + RequestTTY yes + SendEnv * + ServerAliveInterval 60 + +Host hilla + HostName hilla.kapsi.fi + +Host lakka + HostName lakka.kapsi.fi + +Host synvaler + HostName synvaler.mikaela.info + AddressFamily inet6 diff --git a/.mikaela_install b/.mikaela_install index 2ca33708..03947d27 100755 --- a/.mikaela_install +++ b/.mikaela_install @@ -11,6 +11,7 @@ cat .mikaela/environment > ~/.environment cat .mikaela/gitconfig > ~/.gitconfig mkdir -p ~/.ssh cat .mikaela/keys/ssh > ~/.ssh/authorized_keys +cat .mikaela/ssh/config > ~/.ssh/config touch ~/.MIKAELA_GREP set +x # vim : set ft=sh :