From 8ad488a866f5fbce364bad98935d58028662fcf2 Mon Sep 17 00:00:00 2001 From: Dmitry Shulyak Date: Thu, 10 Dec 2015 14:46:34 +0200 Subject: [PATCH] Add doc about StrictHostKeyChecking --- doc/source/transports.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/doc/source/transports.rst b/doc/source/transports.rst index 950a681e..f5ead257 100644 --- a/doc/source/transports.rst +++ b/doc/source/transports.rst @@ -31,6 +31,16 @@ Currently there are following sync transports available: * solar_agent * torrent +Ssh host key checking +--------------------- +Solar wont disable strict host key checking by default, so before working +with solar ensure that strict host key checking is disabled, or all target hosts added to .ssh/known_hosts file. + +Example of .ssh/config :: + + Host 10.0.0.* + StrictHostKeyChecking no + Run transport -------------