mirror of
https://github.com/anthonyoteri/dotfiles.git
synced 2026-06-05 15:46:54 -04:00
a918bf5a0c
Signed-off-by: Anthony Oteri <4360016+anthonyoteri@users.noreply.github.com>
36 lines
830 B
Plaintext
36 lines
830 B
Plaintext
# Disable strict host key checking for Edgeware hosts
|
|
Host 10.16.*.* 10.19.* orbit-* anthony-* *.edgeware.tv
|
|
StrictHostKeyChecking no
|
|
UserKnownHostsFile=/dev/null
|
|
ForwardAgent yes
|
|
Compression yes
|
|
|
|
# Example for non-standard port
|
|
Host custom-port-host
|
|
HostName custom.example.com
|
|
User anthony
|
|
Port 2222
|
|
ForwardAgent yes
|
|
Compression yes
|
|
|
|
# Specific hosts
|
|
Host srv-nebula-master srv-nebula-master.edgeware.tv
|
|
User oneadmin
|
|
Compression yes
|
|
|
|
# Production host
|
|
Host newenglandsalts.com
|
|
User root
|
|
|
|
# Global SSH options for productivity
|
|
Host *
|
|
ForwardAgent yes
|
|
AddKeysToAgent yes
|
|
ControlMaster auto
|
|
ControlPath ~/.ssh/control-%r@%h:%p
|
|
ControlPersist 10m
|
|
ServerAliveInterval 60
|
|
ServerAliveCountMax 3
|
|
User root
|
|
Compression yes
|
|
StrictHostKeyChecking yes |