diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-23 21:56:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-23 21:56:19 +0200 |
commit | 4ff1bc23d40c53fc27e0b1f4c33cda0c18783d12 (patch) | |
tree | d765789f75b74b190067fc65666cab24f58b1f1e /interface-definitions | |
parent | bbac02cf9a93dc33c5a4d5ae6db57319780d5579 (diff) | |
parent | e342e013b22ea1fa348618d0cfbc4ba0bbb545c6 (diff) | |
download | vyos-1x-4ff1bc23d40c53fc27e0b1f4c33cda0c18783d12.tar.gz vyos-1x-4ff1bc23d40c53fc27e0b1f4c33cda0c18783d12.zip |
Merge pull request #374 from DmitriyEshenko/pppoe-impl-auth-proto
pppoe-server: T2373: Implement CLI commands for auth protocols
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/service_pppoe-server.xml.in | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/interface-definitions/service_pppoe-server.xml.in b/interface-definitions/service_pppoe-server.xml.in index 6b09b3db4..c7ba2617a 100644 --- a/interface-definitions/service_pppoe-server.xml.in +++ b/interface-definitions/service_pppoe-server.xml.in @@ -137,6 +137,34 @@ </node> </children> </node> + <leafNode name="protocols"> + <properties> + <help>Authentication protocol</help> + <valueHelp> + <format>pap</format> + <description>Allow PAP authentication [Password Authentication Protocol]</description> + </valueHelp> + <valueHelp> + <format>chap</format> + <description>Allow CHAP authentication [Challenge Handshake Authentication Protocol]</description> + </valueHelp> + <valueHelp> + <format>mschap</format> + <description>Allow MS-CHAP authentication [Microsoft Challenge Handshake Authentication Protocol, Version 1]</description> + </valueHelp> + <valueHelp> + <format>mschap-v2</format> + <description>Allow MS-CHAPv2 authentication [Microsoft Challenge Handshake Authentication Protocol, Version 2]</description> + </valueHelp> + <constraint> + <regex>(pap|chap|mschap|mschap-v2)</regex> + </constraint> + <completionHelp> + <list>pap chap mschap mschap-v2</list> + </completionHelp> + <multi /> + </properties> + </leafNode> </children> </node> <node name="client-ip-pool"> |