Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions ssh/config
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,17 @@ Include ~/.ssh/config.private

# Global settings
Host *
ServerAliveInterval 10
ServerAliveCountMax 4
# Connection resilience
ConnectionAttempts 6
ConnectTimeout 10
ServerAliveInterval 15
ServerAliveCountMax 6
TCPKeepAlive no
ControlMaster auto
ControlPersist 15m
ControlPath ~/.ssh/cm-%C

# Security defaults
ForwardAgent no
StrictHostKeyChecking=accept-new

Expand Down