git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/.ssh/config.d/0000-all.conf
blob: 54a61370fc2d88d1b913a5dea2078b50869030cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# vim:syntax=sshconfig:ts=4
# in case of no ssh-agent:
#IdentityFile ~/.ssh/id_ed25519
#IdentityFile ~/.ssh/id_rsa
# ...place that inside an extra .conf file.
SendEnv			LANG LC_* MUTTEXEC
HashKnownHosts	yes
ForwardAgent	yes
ControlMaster	auto
ControlPath		/run/user/%i/ssh/cm-%r@%h:%p

# ControlMaster: to use SSH multiplexing with ProxyCommand (e.g. to reach host b through host a)
# Host b
#	Hostname b.example.com
#	ProxyCommand ssh a.example.com -W %h:%p
#	# controlpath, controlmaster are the same as above