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:54:39 +0100 |
commit | 59ad580cdea2e66e24470ee3d84f29a8619b7bf9 (patch) | |
tree | c66f98ef886f51f6ab6bebbf3fcaef13b5114b35 /interface-definitions/include/accel-ppp/auth-protocols.xml.i | |
parent | b331f6e7ba6e26d5e375121df675d97d2abfd3ac (diff) | |
download | vyos-1x-59ad580cdea2e66e24470ee3d84f29a8619b7bf9.tar.gz vyos-1x-59ad580cdea2e66e24470ee3d84f29a8619b7bf9.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-protocols.xml.i')
-rw-r--r-- | interface-definitions/include/accel-ppp/auth-protocols.xml.i | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/interface-definitions/include/accel-ppp/auth-protocols.xml.i b/interface-definitions/include/accel-ppp/auth-protocols.xml.i new file mode 100644 index 000000000..d43266152 --- /dev/null +++ b/interface-definitions/include/accel-ppp/auth-protocols.xml.i @@ -0,0 +1,31 @@ +<!-- include start from accel-ppp/auth-protocols.xml.i --> +<leafNode name="protocols"> + <properties> + <help>Authentication protocol for remote access peer SSTP VPN</help> + <completionHelp> + <list>pap chap mschap mschap-v2</list> + </completionHelp> + <valueHelp> + <format>pap</format> + <description>Authentication via PAP (Password Authentication Protocol)</description> + </valueHelp> + <valueHelp> + <format>chap</format> + <description>Authentication via CHAP (Challenge Handshake Authentication Protocol)</description> + </valueHelp> + <valueHelp> + <format>mschap</format> + <description>Authentication via MS-CHAP (Microsoft Challenge Handshake Authentication Protocol)</description> + </valueHelp> + <valueHelp> + <format>mschap-v2</format> + <description>Authentication via MS-CHAPv2 (Microsoft Challenge Handshake Authentication Protocol, version 2)</description> + </valueHelp> + <constraint> + <regex>(pap|chap|mschap|mschap-v2)</regex> + </constraint> + <multi/> + </properties> + <defaultValue>pap chap mschap mschap-v2</defaultValue> +</leafNode> +<!-- include end --> |