summaryrefslogtreecommitdiff
path: root/interface-definitions
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2018-05-24 21:18:24 +0200
committerDaniil Baturin <daniil@baturin.org>2018-05-24 21:18:24 +0200
commit24333f2867356e87275bf3a988a1a7611059ff2f (patch)
treef2007e25775f0a585054cc398365353296dbff75 /interface-definitions
parent8e26cb731b36e8fb0ec48c40be5670c3f77cf346 (diff)
downloadvyos-1x-24333f2867356e87275bf3a988a1a7611059ff2f.tar.gz
vyos-1x-24333f2867356e87275bf3a988a1a7611059ff2f.zip
Shorter and clearer help strings for SSH.
Diffstat (limited to 'interface-definitions')
-rw-r--r--interface-definitions/ssh.xml20
1 files changed, 10 insertions, 10 deletions
diff --git a/interface-definitions/ssh.xml b/interface-definitions/ssh.xml
index bd6ebf24a..9b3a2fddc 100644
--- a/interface-definitions/ssh.xml
+++ b/interface-definitions/ssh.xml
@@ -13,20 +13,20 @@
<children>
<node name="access-control">
<properties>
- <help>SSH user/group access controls. Directives are processed in this: deny-users, allow-users, deny-groups and allow-groups</help>
+ <help>SSH user/group access controls. Directives are processed in this order: deny-users, allow-users, deny-groups and allow-groups</help>
</properties>
<children>
<node name="allow">
<children>
<leafNode name="group">
<properties>
- <help>Login is allowed for users whose primary or supplementary group matches</help>
+ <help>Allow members of a group to login</help>
<multi/>
</properties>
</leafNode>
<leafNode name="user">
<properties>
- <help>Login is allowed only for user names that match</help>
+ <help>Allow specific users to login</help>
<multi/>
</properties>
</leafNode>
@@ -36,13 +36,13 @@
<children>
<leafNode name="group">
<properties>
- <help>Login is disallowed for users whose primary or supplementary group matches</help>
+ <help>Disallow members of a group to login</help>
<multi/>
</properties>
</leafNode>
<leafNode name="user">
<properties>
- <help>Login is disallowed for user names that match</help>
+ <help>Disallow specific users to login</help>
<multi/>
</properties>
</leafNode>
@@ -52,13 +52,13 @@
</node>
<leafNode name="allow-root">
<properties>
- <help>Enable root login over ssh</help>
+ <help>Allow the root user to login</help>
<valueless/>
</properties>
</leafNode>
<leafNode name="ciphers">
<properties>
- <help>Specifies allowed Ciphers</help>
+ <help>Allowed ciphers</help>
<completionHelp>
<script>ssh -Q cipher | tr '\n' ' '</script>
</completionHelp>
@@ -73,13 +73,13 @@
</leafNode>
<leafNode name="disable-password-authentication">
<properties>
- <help>Don't allow unknown user to login with password</help>
+ <help>Disable password-based authentication</help>
<valueless/>
</properties>
</leafNode>
<leafNode name="key-exchange">
<properties>
- <help>Specifies available KEX (Key Exchange) algorithms</help>
+ <help>Allowed key exchange (KEX) algorithms</help>
<completionHelp>
<script>ssh -Q kex | tr '\n' ' '</script>
</completionHelp>
@@ -131,7 +131,7 @@
</leafNode>
<leafNode name="mac">
<properties>
- <help>Specifies available MAC (message authentication code) algorithms</help>
+ <help>Allowed message authentication code (MAC) algorithms</help>
<completionHelp>
<script>ssh -Q mac | tr '\n' ' '</script>
</completionHelp>