diff options
author | Christian Pointner <equinox@ffgraz.net> | 2017-05-30 00:16:55 +0200 |
---|---|---|
committer | Christian Pointner <equinox@ffgraz.net> | 2017-05-30 00:16:55 +0200 |
commit | 8cb754dacac0864f6b112e39fd6e7eaf3a339756 (patch) | |
tree | 623278e2d9f0cdfc7bf9efb0b11dfbca015e8cd0 /ssh |
inital commit
Diffstat (limited to 'ssh')
-rw-r--r-- | ssh/config | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/ssh/config b/ssh/config new file mode 100644 index 0000000..c12c550 --- /dev/null +++ b/ssh/config @@ -0,0 +1,82 @@ +Ciphers aes256-ctr,aes128-ctr,aes256-gcm@openssh.com,aes128-gcm@openssh.com,chacha20-poly1305@openssh.com,aes256-cbc,aes128-cbc +Macs hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-ripemd160-etm@openssh.com,hmac-sha2-256,hmac-sha2-512,hmac-ripemd160 + +Host * + ProxyCommand ssh -q pan nc -q0 -w1 %h %p + IdentityFile ~/.ssh/id_ff_rsa + IdentitiesOnly yes + PasswordAuthentication no + Port 22000 + +################################# +## KVM host @ spektral + +Host ffspektral + Hostname spektral.ffgraz.net + + +Host ffoldgw + Hostname oldgw.ffgraz.net + +Host ffgw-cc + Hostname gw-cc.ffgraz.net + +Host ffstats + Hostname stats.ffgraz.net + +Host ffwww + Hostname www.ffgraz.net + +Host ffgit + Hostname git.ffgraz.net + User git + +Host ffbuild + Hostname build.ffgraz.net + User builder + +Host ffbuild2 + Hostname server88.ffgraz.net + +Host fftun + Hostname tun.ffgraz.net + +Host ffconftun + Hostname conftun.ffgraz.net + + +################################# +## KVM host @ mur.at + +Host ffmur + Hostname mur.ffgraz.net + + +Host ffgw-mur + Hostname gw-mur.ffgraz.net + +Host ffdebian + Hostname debian.ffgraz.net + +Host ffspider + Hostname spider.ffgraz.net + + +################################# +## KVM host @ TU Bibliothek + +Host fftub + Hostname tub.ffgraz.net + + +Host ffgw-wien + Hostname gw-wien.ffgraz.net + +Host ffdvb + Hostname dvb.ffgraz.net + +Host ffnodedb + Hostname nodedb.ffgraz.net + +Host ffnodedbstage + Hostname nodedb-staging.ffgraz.net |