diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2022-05-25 16:46:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-25 16:46:37 +0300 |
commit | ec3a05d3dfda497910d42ad99d28d977312ea7a4 (patch) | |
tree | 27e65d3410bc6597367ed9122282e34a436a215e /op-mode-definitions | |
parent | a943c7f36ffdd1e92070f5fcc94854b6b00f25b3 (diff) | |
parent | ea83ba23b998408f14d7ac8d32c99de23768bb78 (diff) | |
download | vyos-1x-ec3a05d3dfda497910d42ad99d28d977312ea7a4.tar.gz vyos-1x-ec3a05d3dfda497910d42ad99d28d977312ea7a4.zip |
Merge pull request #1319 from goodNETnick/ocserv_sh_otp_key
ocserv: T4420: show configured 2FA OTP key
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/openconnect.xml.in | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/op-mode-definitions/openconnect.xml.in b/op-mode-definitions/openconnect.xml.in index 6b0082b4c..9343637c0 100644 --- a/op-mode-definitions/openconnect.xml.in +++ b/op-mode-definitions/openconnect.xml.in @@ -13,6 +13,53 @@ </properties> <command>${vyos_op_scripts_dir}/openconnect-control.py --action="show_sessions"</command> </leafNode> + <tagNode name="user"> + <properties> + <help>Show OpenConnect configured user settings</help> + <completionHelp> + <script>sudo ${vyos_completion_dir}/list_openconnect_users.py</script> + </completionHelp> + </properties> + <children> + <node name="otp"> + <properties> + <help>Show OTP key information</help> + </properties> + <children> + <leafNode name="full"> + <properties> + <help>Show full settings, including QR code and commands for VyOS</help> + </properties> + <command>${vyos_op_scripts_dir}/show_openconnect_otp.py --user="$4" --info="full"</command> + </leafNode> + <leafNode name="key-hex"> + <properties> + <help>Show OTP authentication secret in Hex (used in VyOS config)</help> + </properties> + <command>${vyos_op_scripts_dir}/show_openconnect_otp.py --user="$4" --info="key-hex"</command> + </leafNode> + <leafNode name="key-b32"> + <properties> + <help>Show OTP authentication secret in Base32 (used in mobile apps)</help> + </properties> + <command>${vyos_op_scripts_dir}/show_openconnect_otp.py --user="$4" --info="key-b32"</command> + </leafNode> + <leafNode name="qrcode"> + <properties> + <help>Show OTP authentication QR code</help> + </properties> + <command>${vyos_op_scripts_dir}/show_openconnect_otp.py --user="$4" --info="qrcode"</command> + </leafNode> + <leafNode name="uri"> + <properties> + <help>Show OTP authentication otpauth URI</help> + </properties> + <command>${vyos_op_scripts_dir}/show_openconnect_otp.py --user="$4" --info="uri"</command> + </leafNode> + </children> + </node> + </children> + </tagNode> </children> </node> </children> |