diff options
author | Christian Breunig <christian@breunig.cc> | 2023-02-17 15:40:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-17 15:40:27 +0100 |
commit | d9bbea6c3641814881b2217d57be156681fe48f9 (patch) | |
tree | 50c4ef0f0bad26b0198d7fb03c102bda65b8d525 /interface-definitions/include | |
parent | b91956f02d8621b7eecd7f54b42d1b4cb63937e4 (diff) | |
parent | 27928236fcd67a0d710e163d7a3cb381a7f700c1 (diff) | |
download | vyos-1x-d9bbea6c3641814881b2217d57be156681fe48f9.tar.gz vyos-1x-d9bbea6c3641814881b2217d57be156681fe48f9.zip |
Merge pull request #1827 from sever-sever/T5005
T5005: PPPoE server allow any login with option noauth
Diffstat (limited to 'interface-definitions/include')
-rw-r--r-- | interface-definitions/include/accel-ppp/auth-mode.xml.i | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/interface-definitions/include/accel-ppp/auth-mode.xml.i b/interface-definitions/include/accel-ppp/auth-mode.xml.i index c1a87cfe3..ccaed6f04 100644 --- a/interface-definitions/include/accel-ppp/auth-mode.xml.i +++ b/interface-definitions/include/accel-ppp/auth-mode.xml.i @@ -10,11 +10,15 @@ <format>radius</format> <description>Use RADIUS server for user autentication</description> </valueHelp> + <valueHelp> + <format>noauth</format> + <description>Authentication disabled</description> + </valueHelp> <constraint> - <regex>(local|radius)</regex> + <regex>(local|radius|noauth)</regex> </constraint> <completionHelp> - <list>local radius</list> + <list>local radius noauth</list> </completionHelp> </properties> <defaultValue>local</defaultValue> |