diff options
author | mail_redacted_for_web | 2022-07-16 11:13:52 +0200 |
---|---|---|
committer | mail_redacted_for_web | 2022-07-16 11:13:52 +0200 |
commit | d83a51722f5779626ca68dbaa831cbd1bde319d8 (patch) | |
tree | b94dda9c603becdcb8ef9c372bec4d4a39de4acd /.ssh/config.d/all.conf | |
parent | bb718a1fbb4f8729bc03f9b2866191fed177860c (diff) | |
download | dotfiles-d83a51722f5779626ca68dbaa831cbd1bde319d8.tar.bz2 |
+ssh control master
Diffstat (limited to '.ssh/config.d/all.conf')
-rw-r--r-- | .ssh/config.d/all.conf | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.ssh/config.d/all.conf b/.ssh/config.d/all.conf new file mode 100644 index 0000000..54a6137 --- /dev/null +++ b/.ssh/config.d/all.conf @@ -0,0 +1,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 |