summaryrefslogtreecommitdiffstats
path: root/doc/appendix
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2014-03-24 12:37:15 -0500
committerSol Jerome <sol.jerome@gmail.com>2014-03-24 12:37:15 -0500
commit20e9e120c8f565bd31a301b56b85a7652afa1358 (patch)
treed581eb665c4ec373ad8b643b3ecee481218ba205 /doc/appendix
parent562ca69c9dfadb89202661dee317ec31f84cadb7 (diff)
downloadbcfg2-20e9e120c8f565bd31a301b56b85a7652afa1358.tar.gz
bcfg2-20e9e120c8f565bd31a301b56b85a7652afa1358.tar.bz2
bcfg2-20e9e120c8f565bd31a301b56b85a7652afa1358.zip
doc: Add information about ecdsa keys
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'doc/appendix')
-rw-r--r--doc/appendix/guides/import-existing-ssh-keys.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/appendix/guides/import-existing-ssh-keys.txt b/doc/appendix/guides/import-existing-ssh-keys.txt
index 64a1b62cd..a0a628c58 100644
--- a/doc/appendix/guides/import-existing-ssh-keys.txt
+++ b/doc/appendix/guides/import-existing-ssh-keys.txt
@@ -1,4 +1,5 @@
.. -*- mode: rst -*-
+.. vim: ft=rst
.. _appendix-guides-import-existing-ssh-keys:
@@ -25,6 +26,10 @@ appropriate entries.::
cat > /tmp/ssh.xml << EOF
<Bundle name='ssh'>
+ <!-- requires a version of openssh that can generate ecdsa keys -->
+ <Path name="/etc/ssh/ssh_host_ecdsa_key"/>
+ <Path name="/etc/ssh/ssh_host_ecdsa_key.pub"/>
+
<Path name='/etc/ssh/ssh_host_dsa_key'/>
<Path name='/etc/ssh/ssh_host_rsa_key'/>
<Path name='/etc/ssh/ssh_host_dsa_key.pub'/>
@@ -86,7 +91,7 @@ Now, we pull the ssh host key data for the client out of the uploaded
stats and insert it as host-specific copies of these files in
``/var/lib/bcfg2/SSHBase``.::
- for key in ssh_host_rsa_key ssh_host_dsa_key ssh_host_key; do
+ for key in ssh_host_ecdsa_key ssh_host_rsa_key ssh_host_dsa_key ssh_host_key; do
sudo bcfg2-admin pull <clientname> Path /etc/ssh/$key
sudo bcfg2-admin pull <clientname> Path /etc/ssh/$key.pub
done