diff options
| author | Anton Bobov <abobov@gmail.com> | 2020-08-10 20:04:18 +0500 |
|---|---|---|
| committer | Anton Bobov <abobov@gmail.com> | 2020-08-12 10:52:49 +0500 |
| commit | 2854706db1c583c629e2f88f641b8506e5164618 (patch) | |
| tree | 63f6103968f1fbc20659442aa3d1ef2c0a4c0597 /files/.ssh/config | |
| parent | b0c338c877a243cf5dbf04174bbe045b4d42d5a0 (diff) | |
Add ssh config.
Diffstat (limited to 'files/.ssh/config')
| -rw-r--r-- | files/.ssh/config | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/files/.ssh/config b/files/.ssh/config new file mode 100644 index 0000000..2c1fa2e --- /dev/null +++ b/files/.ssh/config @@ -0,0 +1,17 @@ +HashKnownHosts no +# Enable automatic connection multiplexing by default. +ControlMaster auto +ControlPath ~/.ssh/.control.%n.%p.%r +ServerAliveInterval 60 +TCPKeepAlive yes +Compression yes + +Host 192.168.*.* + StrictHostKeyChecking no + UserKnownHostsFile /dev/null + ForwardAgent yes + +Host riga.bobov.name + CheckHostIp no + +Include ~/.ssh/*.conf |
