2
0
mirror of https://github.com/inventree/inventree-docs.git synced 2025-04-27 21:26:43 +00:00

added MFA section

This commit is contained in:
Matthias Mair 2021-11-03 22:05:05 +01:00
parent 29f344b98d
commit b903dfb725
2 changed files with 19 additions and 0 deletions

18
docs/settings/MFA.md Normal file
View File

@ -0,0 +1,18 @@
---
title: InvenTree Multi Factor Authentication
---
## Multi Factor Authentication
InvenTree gives the option to use TOTP or staticly generated backup tokens as an additional factor to password or SSO authentication. This is a widely adopted security feature on enterprise web services. We highly encourage to enable it if you expose your instance to the public internet.
As TOTP is an [open standard](https://datatracker.ietf.org/doc/html/rfc6238) there are a lot of different ways to hold your key and generate the time based tokens needed for authentication. That ranges from physical devices to password managers and mobile apps. We do not advertise any method but reccomend to keep password and token generator seperate from each other.
### Configuration
To make MFA mandatory for all users
1. Enable it in the [global settings](../settings/global.md).
### Security Consideration
A user can lock themself out if they loose access to both the device with their TOTP app and their backup tokens. An admin can delete their tokens from the admin pages (they exsist under the 'TOTP devices' / 'static devices' models) . This should be a last resort and only done by people knowledgeable about the [admin pages](../settings/admin.md) as changes there might circumvent InvneTrees buisness and security logic.

View File

@ -100,6 +100,7 @@ nav:
- Admin Interface: settings/admin.md
- User Permissions: settings/permissions.md
- Single Sign on: settings/SSO.md
- Multi Factor Authentication: settings/MFA.md
- Export Data: settings/export.md
- Import Data: settings/import.md
- Python Shell: settings/shell.md