diff --git a/.ssh/conf.d/hosts.conf.secret b/.ssh/conf.d/hosts.conf.secret new file mode 100644 index 0000000..289b905 Binary files /dev/null and b/.ssh/conf.d/hosts.conf.secret differ diff --git a/.ssh/config b/.ssh/config new file mode 100644 index 0000000..0e3bcb4 --- /dev/null +++ b/.ssh/config @@ -0,0 +1,19 @@ +## Multiplex connections +ControlMaster auto +ControlPath ~/.ssh/master/control-%h-%p-%r +ControlPersist 600 + +## Disbale GSSAPI authentication to speedup connecting +GSSAPIAuthentication=no + +## Hash hostnames in known_hosts +HashKnownHosts yes + +## Add hosts to known_hosts and check keys at connecting +## Disable temporary for connecting to unknown hosts +StrictHostKeyChecking no + +## Accept additional keys from hosts to enable key rotation +UpdateHostKeys yes + +include conf.d/*.conf \ No newline at end of file