diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-03-14 16:44:55 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-03-14 16:56:11 +0100 |
commit | e7edd9229dd6b870f892e419ffc671d4873a5540 (patch) | |
tree | 8c6f89483ea3a7e7e58d0908724c7fa7d33b0b11 /interface-definitions/include/accel-ppp/auth-mode.xml.i | |
parent | 9d0e8634c79f5347545ec28fffd3612c760e07df (diff) | |
download | vyos-1x-e7edd9229dd6b870f892e419ffc671d4873a5540.tar.gz vyos-1x-e7edd9229dd6b870f892e419ffc671d4873a5540.zip |
xml: accel-ppp: move building blocks to subfolder
As the amount of include files now has reached a certain amount, it is getting
more and more crowsded, thuse introducing "per topic" subdirectories on the
filesystem to keep a clean structure makes sense.
Diffstat (limited to 'interface-definitions/include/accel-ppp/auth-mode.xml.i')
-rw-r--r-- | interface-definitions/include/accel-ppp/auth-mode.xml.i | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/interface-definitions/include/accel-ppp/auth-mode.xml.i b/interface-definitions/include/accel-ppp/auth-mode.xml.i new file mode 100644 index 000000000..c1a87cfe3 --- /dev/null +++ b/interface-definitions/include/accel-ppp/auth-mode.xml.i @@ -0,0 +1,22 @@ +<!-- include start from accel-ppp/auth-mode.xml.i --> +<leafNode name="mode"> + <properties> + <help>Authentication mode used by this server</help> + <valueHelp> + <format>local</format> + <description>Use local username/password configuration</description> + </valueHelp> + <valueHelp> + <format>radius</format> + <description>Use RADIUS server for user autentication</description> + </valueHelp> + <constraint> + <regex>(local|radius)</regex> + </constraint> + <completionHelp> + <list>local radius</list> + </completionHelp> + </properties> + <defaultValue>local</defaultValue> +</leafNode> +<!-- include end --> |