Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLazar Kirchev2012-04-10 14:03:25 +0000
committerThomas Watson2012-04-10 14:03:25 +0000
commita98ae21883ced8728a00619dfba38a0c89599543 (patch)
treedbe5261060a460578d7382ae62231e1bf10ec396
parent2702ece2e48cde6625eba59acb0ea13e10b91afa (diff)
downloadeclipse.platform.common-a98ae21883ced8728a00619dfba38a0c89599543.tar.gz
eclipse.platform.common-a98ae21883ced8728a00619dfba38a0c89599543.tar.xz
eclipse.platform.common-a98ae21883ced8728a00619dfba38a0c89599543.zip
Bug 366188 - Add support for 'authorized_keys' file to SSH consolev20120410-1403
-rw-r--r--bundles/org.eclipse.platform.doc.isv/guide/console_shell.htm6
1 files changed, 5 insertions, 1 deletions
diff --git a/bundles/org.eclipse.platform.doc.isv/guide/console_shell.htm b/bundles/org.eclipse.platform.doc.isv/guide/console_shell.htm
index 916cec8b5..edabbee3f 100644
--- a/bundles/org.eclipse.platform.doc.isv/guide/console_shell.htm
+++ b/bundles/org.eclipse.platform.doc.isv/guide/console_shell.htm
@@ -184,8 +184,12 @@
Instead of using JAAS authentication, the console can use key-based user authentication with ssh. It is possible to provide a file containing a list
of keys that are allowed to connect to the SSH console. The file will be read every time a connection is made so that it can be modified dynamically
at runtime. The file is specified with the property <code>ssh.server.authorized_keys</code>. If you use key-based authentication you do not need
- to specify the JAAS-related properties <code>java.security.auth.login.config</code>, <code>java.security.auth.login.config</code> and
+ to specify the JAAS-related properties <code>java.security.auth.login.config</code> and
<code>osgi.console.ssh.useDefaultSecureStorage</code>.
+
+ <p>The console supports also custom public keys authentication. If no specific authorized_keys file is configured (via system property) the OSGi service
+ registry will be searched for available authenticators. To enable this feature you have to set the property
+ <code>ssh.custom.publickeys.auth</code> to <code>true</code>.
<h2>Configuring of telnet and ssh host and port through Configuration Admin service</h2>

Back to the top