diff options
author | Mike Beattie <mike@ethernal.org> | 2018-05-29 12:04:38 +1200 |
---|---|---|
committer | Mike Beattie <mike@ethernal.org> | 2018-05-29 12:04:38 +1200 |
commit | 03c02584bf39be8aa4539b39b3ee6524bcbbfc18 (patch) | |
tree | 13128c3e36133f7a8f90b80545b41c1898fdb716 | |
parent | d1759b44906fb6f2f1dca337ff3a61cebe0e9f46 (diff) |
SSH: Add .ssh/config
Signed-off-by: Mike Beattie <mike@ethernal.org>
-rw-r--r-- | .ssh/config | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.ssh/config b/.ssh/config new file mode 100644 index 0000000..505b397 --- /dev/null +++ b/.ssh/config @@ -0,0 +1,13 @@ +Include config.local + +host *.debian.org *.samba.org + ForwardAgent no + +host * + ControlMaster auto + ControlPath ~/.ssh/master-%r@%h:%p + compression yes + ForwardAgent yes + ForwardX11 yes + HashKnownHosts no + |