summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-05-19 22:44:17 +0200
committerGitHub <noreply@github.com>2020-05-19 22:44:17 +0200
commit1d69f28d80826bdefc44c58b4002db807c5b7079 (patch)
tree962ab928979f703e6c804d87eedfc23fb8ce04d0
parent09bf16262f35ff62e9d75b78a875fa5933cd1c71 (diff)
parentfb9445c547e0cfa9a24e75f0b90dedbc1b0a58d2 (diff)
downloadvyos-documentation-1d69f28d80826bdefc44c58b4002db807c5b7079.tar.gz
vyos-documentation-1d69f28d80826bdefc44c58b4002db807c5b7079.zip
Merge pull request #252 from currite/ssh-workaround
conf.overview/remote archive: workaround to add remote ssh fingerprint
-rw-r--r--docs/configuration-overview.rst17
1 files changed, 13 insertions, 4 deletions
diff --git a/docs/configuration-overview.rst b/docs/configuration-overview.rst
index cbc4ab3b..ee7f63a2 100644
--- a/docs/configuration-overview.rst
+++ b/docs/configuration-overview.rst
@@ -507,10 +507,10 @@ Remote Archive
VyOS can upload the configuration to a remote location after each call
to :cfgcmd:`commit`. You will have to set the commit-archive location.
-TFTP, FTP, and SFTP servers are supported. Every time a :cfgcmd:`commit`
-is successfull the ``config.boot`` file will be copied to the defined
-destination(s). The filename used on the remote host will be
-``config.boot-hostname.YYYYMMDD_HHMMSS``
+TFTP, FTP, SCP and SFTP servers are supported. Every time a
+:cfgcmd:`commit` is successfull the ``config.boot`` file will be copied
+to the defined destination(s). The filename used on the remote host will
+be ``config.boot-hostname.YYYYMMDD_HHMMSS``.
.. cfgcmd:: set system config-management commit-archive location <URI>
@@ -524,6 +524,15 @@ destination(s). The filename used on the remote host will be
.. note:: The number of revisions don't affect the commit-archive.
+.. note:: You may find VyOS not allowing the secure connection because
+ it cannot verify the legitimacy of the remote server. You can use
+ the workaround below to quickly add the remote host's SSH
+ fingerprint to your ``~/.ssh/known_hosts`` file:
+
+ .. code-block:: none
+
+ vyos@vyos# ssh-keyscan <host> >> ~/.ssh/known_hosts
+
Restore Default
---------------