Add ssh config file
This commit is contained in:
parent
af14cd426f
commit
2ce940c937
|
@ -0,0 +1,140 @@
|
|||
# DO NOT EDIT THIS FILE!
|
||||
# EDIT config.skel INSTEAD AND RUN THE ACTIVATION SCRIPT!
|
||||
#
|
||||
#
|
||||
|
||||
|
||||
##################################################################
|
||||
# Global
|
||||
##################################################################
|
||||
Host *
|
||||
UserKnownHostsFile ~/.ssh/known_hosts
|
||||
GSSAPIAuthentication yes
|
||||
ForwardX11Trusted yes
|
||||
ControlMaster auto
|
||||
ControlPath /tmp/ssh_mux_%h_%p_%r
|
||||
ControlPersist 4h
|
||||
TCPKeepAlive yes
|
||||
ServerAliveInterval 30
|
||||
ServerAliveCountMax 2
|
||||
SendEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
|
||||
SendEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
|
||||
SendEnv LC_IDENTIFICATION LC_ALL LANGUAGE
|
||||
SendEnv XMODIFIERS
|
||||
|
||||
|
||||
##################################################################
|
||||
# Mein Git
|
||||
##################################################################
|
||||
Host git.jpt.lu
|
||||
IdentityFile ~/.ssh/14052020-git.jpt.lu.priv
|
||||
User git
|
||||
Port 3222
|
||||
UserKnownHostsFile known_hosts
|
||||
HostKeyAlgorithms +ssh-rsa
|
||||
PubkeyAcceptedAlgorithms +ssh-rsa
|
||||
|
||||
##################################################################
|
||||
# Github
|
||||
##################################################################
|
||||
Host github.com
|
||||
IdentityFile ~/.ssh/14052020-github.com.priv
|
||||
User git
|
||||
UserKnownHostsFile known_hosts
|
||||
|
||||
|
||||
##################################################################
|
||||
# Andere Kisten
|
||||
##################################################################
|
||||
# Zur Zeit keine. YAY!
|
||||
|
||||
##################################################################
|
||||
# Eigene Kisten
|
||||
##################################################################
|
||||
Host *.srv.jpt.lu
|
||||
IdentityFile ~/.ssh/14052020-jpt.lu.priv
|
||||
User jpt
|
||||
|
||||
##################################################################
|
||||
# DN42
|
||||
##################################################################
|
||||
Host git.dn42.us
|
||||
IdentityFile ~/.ssh/14052020-git.dn42.us.priv
|
||||
User git
|
||||
UserKnownHostsFile known_hosts
|
||||
|
||||
|
||||
##################################################################
|
||||
# HSH-Server
|
||||
##################################################################
|
||||
Host gwdg-jumphost
|
||||
Hostname 141.5.105.97
|
||||
User jpt
|
||||
IdentityFile ~/.ssh/30102023-hsh.priv
|
||||
UserKnownHostsFile known_hosts
|
||||
|
||||
Host gwdg-salt
|
||||
Hostname 10.254.1.4
|
||||
User jpt
|
||||
IdentityFile ~/.ssh/30102023-hsh.priv
|
||||
UserKnownHostsFile known_hosts
|
||||
ProxyJump gwdg-jumphost
|
||||
|
||||
Host gwdg-zoom-sync
|
||||
Hostname 10.254.1.7
|
||||
User jpt
|
||||
IdentityFile ~/.ssh/30102023-hsh.priv
|
||||
UserKnownHostsFile known_hosts
|
||||
ProxyJump gwdg-jumphost
|
||||
|
||||
Host gwdg-hshinfo-db
|
||||
Hostname 10.254.1.10
|
||||
User cloud
|
||||
IdentityFile ~/.ssh/30102023-hsh.priv
|
||||
UserKnownHostsFile known_hosts
|
||||
ProxyJump gwdg-jumphost
|
||||
|
||||
Host gwdg-caribou
|
||||
Hostname 10.254.1.12
|
||||
User jpt
|
||||
IdentityFile ~/.ssh/30102023-hsh.priv
|
||||
UserKnownHostsFile known_hosts
|
||||
ProxyJump gwdg-jumphost
|
||||
|
||||
Host gwdg-azure-sync
|
||||
Hostname 10.254.1.15
|
||||
User jpt
|
||||
IdentityFile ~/.ssh/30102023-hsh.priv
|
||||
UserKnownHostsFile known_hosts
|
||||
ProxyJump gwdg-jumphost
|
||||
|
||||
Host gwdg-sapsync
|
||||
Hostname 10.254.1.22
|
||||
User jpt
|
||||
IdentityFile ~/.ssh/30102023-hsh.priv
|
||||
UserKnownHostsFile known_hosts
|
||||
ProxyJump gwdg-jumphost
|
||||
|
||||
Host gwdg-openldap
|
||||
Hostname 10.254.1.24
|
||||
User jpt
|
||||
IdentityFile ~/.ssh/30102023-hsh.priv
|
||||
UserKnownHostsFile known_hosts
|
||||
ProxyJump gwdg-jumphost
|
||||
|
||||
|
||||
Host salt-fw.it.hs-hannover.de
|
||||
IdentityFile ~/.ssh/hsh-fw.priv
|
||||
User jpt
|
||||
UserKnownHostsFile known_hosts
|
||||
|
||||
Host fwmn1.it.hs-hannover.de
|
||||
IdentityFile ~/.ssh/hsh-fw.priv
|
||||
User jpt
|
||||
UserKnownHostsFile known_hosts
|
||||
|
||||
Host *.hs-hannover.de *.fh-h.de 141.71.*
|
||||
IdentityFile ~/.ssh/03062020-hsh.priv
|
||||
IdentityFile ~/.ssh/hsh.priv
|
||||
User jpt
|
||||
UserKnownHostsFile known_hosts
|
Loading…
Reference in New Issue