-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdot.sshconfig
More file actions
26 lines (22 loc) · 784 Bytes
/
dot.sshconfig
File metadata and controls
26 lines (22 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
##
## dotfiles -- Essential Unix Dot-Files
## Copyright (c) 1995-2026 Dr. Ralf S. Engelschall <rse@engelschall.com>
## Distributed under MIT <https://opensource.org/licenses/MIT> license.
##
## ~/.ssh/config: ssh(1) configuration
##
# include local configuration
# (has to be first, as SSH uses "first match" semantics)
Include ~/.dotfiles/sshconfig
# configure local host
Host localhost 127.0.0.1
Compression no
ForwardAgent yes
CheckHostIP no
# configure foreign hosts
Host *
Compression yes
ForwardAgent no
CheckHostIP yes
ConnectionAttempts 2
NumberOfPasswordPrompts 2