diff options
author | EuAndreh <eu@euandre.org> | 2023-02-21 20:47:17 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-02-21 20:47:17 -0300 |
commit | 1f048c6ac7c3b2d958bf89fea0343f2fb6ed221a (patch) | |
tree | 5bd952f33831846380b445101f1258a3c8f9b201 /etc/ssh | |
parent | Fix f() and g() functions, with help of remembering(1) and highlight(1) (diff) | |
download | dotfiles-1f048c6ac7c3b2d958bf89fea0343f2fb6ed221a.tar.gz dotfiles-1f048c6ac7c3b2d958bf89fea0343f2fb6ed221a.tar.xz |
etc/ssh/config.tmpl: Inline content from ~/dev/libre/servers/
Diffstat (limited to 'etc/ssh')
-rw-r--r-- | etc/ssh/config.tmpl | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/etc/ssh/config.tmpl b/etc/ssh/config.tmpl index 0e06483..2f57519 100644 --- a/etc/ssh/config.tmpl +++ b/etc/ssh/config.tmpl @@ -1,3 +1,12 @@ -Include ~/dev/libre/servers/src/infrastructure/ssh.conf -Include ~/dev/others/lawtech/src/infrastructure/ssh.conf +Host * + ServerAliveInterval 30 + ServerAliveCountMax 20 + ControlMaster auto + ControlPath ${XDG_STATE_HOME}/ssh/conn/%r@%h:%p + ControlPersist 1h + +Host suyin + HostName ch-s010.rsync.net + User 16686 + Include ${XDG_DATA_HOME}/vm/ssh.conf |