2FA

From VoIPmonitor.org
Revision as of 18:25, 29 June 2018 by Milan (talk | contribs) (Created page with "== Two Factor Authentication (2FA) == It's possible to use 2FA from GUI's version 20. Be sure you have synchronized time on your GUI's server because 2FA pins(codes) are tim...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Two Factor Authentication (2FA)

It's possible to use 2FA from GUI's version 20.

Be sure you have synchronized time on your GUI's server because 2FA pins(codes) are time limited.

Settings in the GUI

  • user with admin permissions can activate 2FA's requirement for concrete user (in GUI->Users & Audit). When this user logs after this setting, then 2fa setup is required.
  • admin user can delete actual 2FA secret from user's account (in GUI->Users & Audit)
  • user can change/setup its 2FA secret in the section GUI->User settings->Change user auth. This option joins the password and the 2FA setting.
    • follow the setup dialog

Setting of the 2FA code generator

you can use various 2FA applications:

Import account setting from QR code into yours application and start to use it.

Problem solving

  • manual disabling of 2FA authentication for concrete user can be done directly in the database
update users set secret = null, req_2fa = 0 where username = 'USER';