-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f2eff75
commit b872a2c
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
Include /etc/ssh/ssh_config.d/*.conf | ||
|
||
Host * | ||
# ForwardAgent no | ||
# ForwardX11 no | ||
# ForwardX11Trusted yes | ||
PasswordAuthentication no | ||
# HostbasedAuthentication no | ||
# GSSAPIAuthentication no | ||
# GSSAPIDelegateCredentials no | ||
# GSSAPIKeyExchange no | ||
# GSSAPITrustDNS no | ||
# BatchMode no | ||
# CheckHostIP yes | ||
# AddressFamily any | ||
# ConnectTimeout 0 | ||
# StrictHostKeyChecking ask | ||
IdentityFile ~/.ssh/school | ||
# IdentityFile ~/.ssh/id_rsa | ||
# IdentityFile ~/.ssh/id_dsa | ||
# IdentityFile ~/.ssh/id_ecdsa | ||
# IdentityFile ~/.ssh/id_ed25519 | ||
# Port 22 | ||
# Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc | ||
# MACs hmac-md5,hmac-sha1,umac-64@openssh.com | ||
# EscapeChar ~ | ||
# Tunnel no | ||
# TunnelDevice any:any | ||
# PermitLocalCommand no | ||
# VisualHostKey no | ||
# ProxyCommand ssh -q -W %h:%p gateway.example.com | ||
# RekeyLimit 1G 1h | ||
SendEnv LANG LC_* | ||
HashKnownHosts yes | ||
GSSAPIAuthentication yes | ||
|