]> git.proxmox.com Git - pve-docs.git/blame_incremental - pveum.adoc
totp: fix copy/paste mistake
[pve-docs.git] / pveum.adoc
... / ...
CommitLineData
1[[chapter_user_management]]
2
3[[user_mgmt]]
4
5ifdef::manvolnum[]
6pveum(1)
7========
8:pve-toplevel:
9
10NAME
11----
12
13pveum - Proxmox VE User Manager
14
15
16SYNOPSIS
17--------
18
19include::pveum.1-synopsis.adoc[]
20
21
22DESCRIPTION
23-----------
24endif::manvolnum[]
25ifndef::manvolnum[]
26User Management
27===============
28:pve-toplevel:
29endif::manvolnum[]
30
31// Copied from pve wiki: Revision as of 16:10, 27 October 2015
32
33{pve} supports multiple authentication sources, for example Linux PAM,
34an integrated Proxmox VE authentication server, LDAP, Microsoft Active
35Directory and OpenID Connect.
36
37By using role-based user and permission management for all objects (VMs,
38Storage, nodes, etc.), granular access can be defined.
39
40
41[[pveum_users]]
42Users
43-----
44
45{pve} stores user attributes in `/etc/pve/user.cfg`.
46Passwords are not stored here; users are instead associated with the
47<<pveum_authentication_realms,authentication realms>> described below.
48Therefore, a user is often internally identified by their username and
49realm in the form `<userid>@<realm>`.
50
51Each user entry in this file contains the following information:
52
53* First name
54* Last name
55* E-mail address
56* Group memberships
57* An optional expiration date
58* A comment or note about this user
59* Whether this user is enabled or disabled
60* Optional two-factor authentication keys
61
62CAUTION: When you disable or delete a user, or if the expiry date set is
63in the past, this user will not be able to log in to new sessions or start new
64tasks. All tasks which have already been started by this user (for example,
65terminal sessions) will **not** be terminated automatically by any such event.
66
67
68System administrator
69~~~~~~~~~~~~~~~~~~~~
70
71The system's root user can always log in via the Linux PAM realm and is an
72unconfined administrator. This user cannot be deleted, but attributes can
73still be changed. System mails will be sent to the email address
74assigned to this user.
75
76
77[[pveum_groups]]
78Groups
79------
80
81Each user can be a member of several groups. Groups are the preferred
82way to organize access permissions. You should always grant permissions
83to groups instead of individual users. That way you will get a
84much more maintainable access control list.
85
86[[pveum_tokens]]
87API Tokens
88----------
89
90API tokens allow stateless access to most parts of the REST API from another
91system, software or API client. Tokens can be generated for individual users
92and can be given separate permissions and expiration dates to limit the scope
93and duration of the access. Should the API token get compromised, it can be
94revoked without disabling the user itself.
95
96API tokens come in two basic types:
97
98* Separated privileges: The token needs to be given explicit access with ACLs.
99 Its effective permissions are calculated by intersecting user and token
100 permissions.
101* Full privileges: The token's permissions are identical to that of the
102 associated user.
103
104CAUTION: The token value is only displayed/returned once when the token is
105generated. It cannot be retrieved again over the API at a later time!
106
107To use an API token, set the HTTP header 'Authorization' to the displayed value
108of the form `PVEAPIToken=USER@REALM!TOKENID=UUID` when making API requests, or
109refer to your API client's documentation.
110
111[[pveum_resource_pools]]
112Resource Pools
113--------------
114
115[thumbnail="screenshot/gui-datacenter-pool-window.png"]
116
117A resource pool is a set of virtual machines, containers, and storage
118devices. It is useful for permission handling in cases where certain users
119should have controlled access to a specific set of resources, as it allows for a
120single permission to be applied to a set of elements, rather than having to
121manage this on a per-resource basis. Resource pools are often used in tandem
122with groups, so that the members of a group have permissions on a set of
123machines and storage.
124
125[[pveum_authentication_realms]]
126Authentication Realms
127---------------------
128
129As {pve} users are just counterparts for users existing on some external
130realm, the realms have to be configured in `/etc/pve/domains.cfg`.
131The following realms (authentication methods) are available:
132
133Linux PAM Standard Authentication::
134
135Linux PAM is a framework for system-wide user authentication. These users are
136created on the host system with commands such as `adduser`. If PAM users exist
137on the {pve} host system, corresponding entries can be added to {pve}, to allow
138these users to log in via their system username and password.
139
140{pve} Authentication Server::
141
142This is a Unix-like password store, which stores hashed passwords in
143`/etc/pve/priv/shadow.cfg`. Passwords are hashed using the SHA-256 hashing
144algorithm. This is the most convenient realm for small-scale (or even
145mid-scale) installations, where users do not need access to anything outside of
146{pve}. In this case, users are fully managed by {pve} and are able to change
147their own passwords via the GUI.
148
149LDAP::
150
151LDAP (Lightweight Directory Access Protocol) is an open, cross-platform protocol
152for authentication using directory services. OpenLDAP is a popular open-source
153implementations of the LDAP protocol.
154
155Microsoft Active Directory (AD)::
156
157Microsoft Active Directory (AD) is a directory service for Windows domain
158networks and is supported as an authentication realm for {pve}. It supports LDAP
159as an authentication protocol.
160
161OpenID Connect::
162
163OpenID Connect is implemented as an identity layer on top of the OATH 2.0
164protocol. It allows clients to verify the identity of the user, based on
165authentication performed by an external authorization server.
166
167[[user-realms-pam]]
168Linux PAM Standard Authentication
169~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
170
171As Linux PAM corresponds to host system users, a system user must exist on each
172node which the user is allowed to log in on. The user authenticates with their
173usual system password. This realm is added by default and can't be removed. In
174terms of configurability, an administrator can choose to require two-factor
175authentication with logins from the realm and to set the realm as the default
176authentication realm.
177
178
179[[user-realms-pve]]
180{pve} Authentication Server
181~~~~~~~~~~~~~~~~~~~~~~~~~~~
182
183The {pve} authentication server realm is a simple Unix-like password store.
184The realm is created by default, and as with Linux PAM, the only configuration
185items available are the ability to require two-factor authentication for users
186of the realm, and to set it as the default realm for login.
187
188Unlike the other {pve} realm types, users are created and authenticated entirely
189through {pve}, rather than authenticating against another system. Hence, you are
190required to set a password for this type of user upon creation.
191
192
193[[user-realms-ldap]]
194LDAP
195~~~~
196
197You can also use an external LDAP server for user authentication (for examle,
198OpenLDAP). In this realm type, users are searched under a 'Base Domain Name'
199(`base_dn`), using the username attribute specified in the 'User Attribute Name'
200(`user_attr`) field.
201
202A server and optional fallback server can be configured, and the connection can
203be encrypted via SSL. Furthermore, filters can be configured for directories and
204groups. Filters allow you to further limit the scope of the realm.
205
206For instance, if a user is represented via the following LDIF dataset:
207
208----
209# user1 of People at ldap-test.com
210dn: uid=user1,ou=People,dc=ldap-test,dc=com
211objectClass: top
212objectClass: person
213objectClass: organizationalPerson
214objectClass: inetOrgPerson
215uid: user1
216cn: Test User 1
217sn: Testers
218description: This is the first test user.
219----
220
221The 'Base Domain Name' would be `ou=People,dc=ldap-test,dc=com` and the user
222attribute would be `uid`.
223
224If {pve} needs to authenticate (bind) to the LDAP server before being
225able to query and authenticate users, a bind domain name can be
226configured via the `bind_dn` property in `/etc/pve/domains.cfg`. Its
227password then has to be stored in `/etc/pve/priv/ldap/<realmname>.pw`
228(for example, `/etc/pve/priv/ldap/my-ldap.pw`). This file should contain a
229single line with the raw password.
230
231To verify certificates, you need to set `capath`. You can set it either
232directly to the CA certificate of your LDAP server, or to the system path
233containing all trusted CA certificates (`/etc/ssl/certs`).
234Additionally, you need to set the `verify` option, which can also be done over
235the web interface.
236
237The main configuration options for an LDAP server realm are as follows:
238
239* `Realm` (`realm`): The realm identifier for {pve} users
240
241* `Base Domain Name` (`base_dn`): The directory which users are searched under
242
243* `User Attribute Name` (`user_attr`): The LDAP attribute containing the
244 username that users will log in with
245
246* `Server` (`server1`): The server hosting the LDAP directory
247
248* `Fallback Server` (`server2`): An optional fallback server address, in case
249 the primary server is unreachable
250
251* `Port` (`port`): The port that the LDAP server listens on
252
253NOTE: In order to allow a particular user to authenticate using the LDAP server,
254you must also add them as a user of that realm from the {pve} server. This can
255be carried out automatically with <<pveum_ldap_sync, syncing>>.
256
257
258[[user-realms-ad]]
259Microsoft Active Directory (AD)
260~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
261
262To set up Microsoft AD as a realm, a server address and authentication domain
263need to be specified. Active Directory supports most of the same properties as
264LDAP, such as an optional fallback server, port, and SSL encryption.
265Furthermore, users can be added to {pve} automatically via
266<<pveum_ldap_sync, sync>> operations, after configuration.
267
268As with LDAP, if {pve} needs to authenticate before it binds to the AD server,
269you must configure the 'Bind User' (`bind_dn`) property. This property is
270typically required by default for Microsoft AD.
271
272The main configuration settings for Microsoft Active Directory are:
273
274* `Realm` (`realm`): The realm identifier for {pve} users
275
276* `Domain` (`domain`): The AD domain of the server
277
278* `Server` (`server1`): The FQDN or IP address of the server
279
280* `Fallback Server` (`server2`): An optional fallback server address, in case
281 the primary server is unreachable
282
283* `Port` (`port`): The port that the Microsoft AD server listens on
284
285
286NOTE: Microsoft AD normally checks values like usernames without case
287sensitivity. To make {pve} do the same, you can disable the default
288`case-sensitive` option by editing the realm in the web UI, or using the CLI
289(change the `ID` with the realm ID):
290`pveum realm modify ID --case-sensitive 0`
291
292[[pveum_ldap_sync]]
293Syncing LDAP-Based Realms
294~~~~~~~~~~~~~~~~~~~~~~~~~
295
296[thumbnail="screenshot/gui-datacenter-realm-add-ldap.png"]
297
298It's possible to automatically sync users and groups for LDAP-based realms (LDAP
299& Microsoft Active Directory), rather than having to add them to {pve} manually.
300You can access the sync options from the Add/Edit window of the web interface's
301`Authentication` panel or via the `pveum realm add/modify` commands. You can
302then carry out the sync operation from the `Authentication` panel of the GUI or
303using the following command:
304
305----
306pveum realm sync <realm>
307----
308
309Users and groups are synced to the cluster-wide configuration file,
310`/etc/pve/user.cfg`.
311
312
313Attributes to Properties
314^^^^^^^^^^^^^^^^^^^^^^^^
315
316If the sync response includes user attributes, they will be synced into the
317matching user property in the `user.cfg`. For example: `firstname` or
318`lastname`.
319
320If the names of the attributes are not matching the {pve} properties, you can
321set a custom field-to-field map in the config by using the `sync_attributes`
322option.
323
324How such properties are handled if anything vanishes can be controlled via the
325sync options, see below.
326
327Sync Configuration
328^^^^^^^^^^^^^^^^^^
329
330The configuration options for syncing LDAP-based realms can be found in the
331`Sync Options` tab of the Add/Edit window.
332
333The configuration options are as follows:
334
335* `Bind User` (`bind_dn`): Refers to the LDAP account used to query users
336 and groups. This account needs access to all desired entries. If it's set, the
337 search will be carried out via binding; otherwise, the search will be carried
338 out anonymously. The user must be a complete LDAP formatted distinguished name
339 (DN), for example, `cn=admin,dc=example,dc=com`.
340
341* Groupname attr. (group_name_attr): Represents the
342 users' groups. Only entries which adhere to the usual character limitations of
343 the `user.cfg` are synced. Groups are synced with `-$realm` attached to the
344 name, in order to avoid naming conflicts. Please ensure that a sync does not
345 overwrite manually created groups.
346
347* `User classes` (`user_classes`): Objects classes associated with users.
348
349* `Group classes` (`group_classes`): Objects classes associated with groups.
350
351* `E-Mail attribute`: If the LDAP-based server specifies user email addresses,
352 these can also be included in the sync by setting the associated attribute
353 here. From the command line, this is achievable through the
354 `--sync_attributes` parameter.
355
356* `User Filter` (`filter`): For further filter options to target specific users.
357
358* `Group Filter` (`group_filter`): For further filter options to target specific
359 groups.
360
361NOTE: Filters allow you to create a set of additional match criteria, to narrow
362down the scope of a sync. Information on available LDAP filter types and their
363usage can be found at https://ldap.com/ldap-filters/[ldap.com].
364
365[[pveum_ldap_sync_options]]
366Sync Options
367^^^^^^^^^^^^
368
369[thumbnail="screenshot/gui-datacenter-realm-add-ldap-sync-options.png"]
370
371In addition to the options specified in the previous section, you can also
372configure further options that describe the behavior of the sync operation.
373
374These options are either set as parameters before the sync, or as defaults via
375the realm option `sync-defaults-options`.
376
377The main options for syncing are:
378
379* `Scope` (`scope`): The scope of what to sync. It can be either `users`,
380 `groups` or `both`.
381
382* `Enable new` (`enable-new`): If set, the newly synced users are enabled and
383 can log in. The default is `true`.
384
385* `Remove Vanished` (`remove-vanished`): This is a list of options which, when
386 activated, determine if they are removed when they are not returned from
387 the sync response. The options are:
388
389 - `ACL` (`acl)`: Remove ACLs of users and groups which were not returned
390 returned in the sync response. This most often makes sense together with
391 `Entry`.
392
393 - `Entry` (`entry`): Removes entries (i.e. users and groups) when they are
394 not returned in the sync response.
395
396 - `Properties` (`properties`): Removes properties of entries where the user
397 in the sync response did not contain those attributes. This includes
398 all properties, even those never set by a sync. Exceptions are tokens
399 and the enable flag, these will be retained even with this option enabled.
400
401* `Preview` (`dry-run`): No data is written to the config. This is useful if you
402 want to see which users and groups would get synced to the `user.cfg`.
403
404[[pveum_ldap_reserved_characters]]
405Reserved characters
406^^^^^^^^^^^^^^^^^^^
407
408Certain characters are reserved (see https://www.ietf.org/rfc/rfc2253.txt[RFC2253]) and cannot be
409easily used in attribute values in DNs without being escaped properly.
410
411Following characters need escaping:
412
413* Space ( ) at the beginning or end
414* Number sign (`#`) at the beginning
415* Comma (`,`)
416* Plus sign (`+`)
417* Double quote (`"`)
418* Forward slashes (`/`)
419* Angle brackets (`<>`)
420* Semicolon (`;`)
421* Equals sign (`=`)
422
423To use such characters in DNs, surround the attribute value in double quotes.
424For example, to bind with a user with the CN (Common Name) `Example, User`, use
425`CN="Example, User",OU=people,DC=example,DC=com` as value for `bind_dn`.
426
427This applies to the `base_dn`, `bind_dn`, and `group_dn` attributes.
428
429NOTE: Users with colons and forward slashes cannot be synced since these are
430reserved characters in usernames.
431
432[[pveum_openid]]
433OpenID Connect
434~~~~~~~~~~~~~~
435
436The main OpenID Connect configuration options are:
437
438* `Issuer URL` (`issuer-url`): This is the URL of the authorization server.
439Proxmox uses the OpenID Connect Discovery protocol to automatically configure
440further details.
441+
442While it is possible to use unencrypted `http://` URLs, we strongly recommend to
443use encrypted `https://` connections.
444
445* `Realm` (`realm`): The realm identifier for {pve} users
446
447* `Client ID` (`client-id`): OpenID Client ID.
448
449* `Client Key` (`client-key`): Optional OpenID Client Key.
450
451* `Autocreate Users` (`autocreate`): Automatically create users if they do not
452exist. While authentication is done at the OpenID server, all users still need
453an entry in the {pve} user configuration. You can either add them manually, or
454use the `autocreate` option to automatically add new users.
455
456* `Username Claim` (`username-claim`): OpenID claim used to generate the unique
457username (`subject`, `username` or `email`).
458
459Username mapping
460^^^^^^^^^^^^^^^^
461
462The OpenID Connect specification defines a single unique attribute
463('claim' in OpenID terms) named `subject`. By default, we use the
464value of this attribute to generate {pve} usernames, by simple adding
465`@` and the realm name: `${subject}@${realm}`.
466
467Unfortunately, most OpenID servers use random strings for `subject`, like
468`DGH76OKH34BNG3245SB`, so a typical username would look like
469`DGH76OKH34BNG3245SB@yourrealm`. While unique, it is difficult for
470humans to remember such random strings, making it quite impossible to
471associate real users with this.
472
473The `username-claim` setting allows you to use other attributes for
474the username mapping. Setting it to `username` is preferred if the
475OpenID Connect server provides that attribute and guarantees its
476uniqueness.
477
478Another option is to use `email`, which also yields human readable
479usernames. Again, only use this setting if the server guarantees the
480uniqueness of this attribute.
481
482Examples
483^^^^^^^^
484
485Here is an example of creating an OpenID realm using Google. You need to
486replace `--client-id` and `--client-key` with the values
487from your Google OpenID settings.
488
489----
490pveum realm add myrealm1 --type openid --issuer-url https://accounts.google.com --client-id XXXX --client-key YYYY --username-claim email
491----
492
493The above command uses `--username-claim email`, so that the usernames on the
494{pve} side look like `example.user@google.com@myrealm1`.
495
496Keycloak (https://www.keycloak.org/) is a popular open source Identity
497and Access Management tool, which supports OpenID Connect. In the following
498example, you need to replace the `--issuer-url` and `--client-id` with
499your information:
500
501----
502pveum realm add myrealm2 --type openid --issuer-url https://your.server:8080/realms/your-realm --client-id XXX --username-claim username
503----
504
505Using `--username-claim username` enables simple usernames on the
506{pve} side, like `example.user@myrealm2`.
507
508WARNING: You need to ensure that the user is not allowed to edit
509the username setting themselves (on the Keycloak server).
510
511
512[[pveum_tfa_auth]]
513Two-Factor Authentication
514-------------------------
515
516There are two ways to use two-factor authentication:
517
518It can be required by the authentication realm, either via 'TOTP'
519(Time-based One-Time Password) or 'YubiKey OTP'. In this case, a newly
520created user needs to have their keys added immediately, as there is no way to
521log in without the second factor. In the case of 'TOTP', users can
522also change the 'TOTP' later on, provided they can log in first.
523
524Alternatively, users can choose to opt-in to two-factor authentication
525later on, even if the realm does not enforce it.
526
527Available Second Factors
528~~~~~~~~~~~~~~~~~~~~~~~~
529
530You can set up multiple second factors, in order to avoid a situation in
531which losing your smartphone or security key locks you out of your
532account permanently.
533
534The following two-factor authentication methods are available in
535addition to realm-enforced TOTP and YubiKey OTP:
536
537* User configured TOTP
538 (https://en.wikipedia.org/wiki/Time-based_One-Time_Password[Time-based One-Time Password]).
539 A short code derived from a shared secret and the current time, it changes
540 every 30 seconds.
541* WebAuthn (https://en.wikipedia.org/wiki/WebAuthn[Web Authentication]).
542 A general standard for authentication. It is implemented by various
543 security devices, like hardware keys or trusted platform modules (TPM)
544 from a computer or smart phone.
545* Single use Recovery Keys. A list of keys which should either be
546 printed out and locked in a secure place or saved digitally in an
547 electronic vault. Each key can be used only once. These are perfect for
548 ensuring that you are not locked out, even if all of your other second
549 factors are lost or corrupt.
550
551Before WebAuthn was supported, U2F could be setup by the user. Existing
552U2F factors can still be used, but it is recommended to switch to
553WebAuthn, once it is configured on the server.
554
555Realm Enforced Two-Factor Authentication
556~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
557
558This can be done by selecting one of the available methods via the
559'TFA' dropdown box when adding or editing an Authentication Realm.
560When a realm has TFA enabled, it becomes a requirement, and only users
561with configured TFA will be able to log in.
562
563Currently there are two methods available:
564
565Time-based OATH (TOTP):: This uses the standard HMAC-SHA1 algorithm,
566where the current time is hashed with the user's configured key. The
567time step and password length parameters are configurable.
568+
569A user can have multiple keys configured (separated by spaces), and the keys
570can be specified in Base32 (RFC3548) or hexadecimal notation.
571+
572{pve} provides a key generation tool (`oathkeygen`) which prints out a random
573key in Base32 notation, that can be used directly with various OTP tools, such
574as the `oathtool` command-line tool, or on Android Google Authenticator,
575FreeOTP, andOTP or similar applications.
576
577YubiKey OTP::
578For authenticating via a YubiKey a Yubico API ID, API KEY and validation
579server URL must be configured, and users must have a YubiKey available. In
580order to get the key ID from a YubiKey, you can trigger the YubiKey once
581after connecting it via USB, and copy the first 12 characters of the typed
582password into the user's 'Key IDs' field.
583
584Please refer to the https://developers.yubico.com/OTP/[YubiKey OTP]
585documentation for how to use the
586https://www.yubico.com/products/services-software/yubicloud/[YubiCloud] or
587https://developers.yubico.com/Software_Projects/Yubico_OTP/YubiCloud_Validation_Servers/[host your own verification server].
588
589[[pveum_tfa_lockout]]
590Limits and Lockout of Two-Factor Authentication
591~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
592
593A second factor is meant to protect users if their password is somehow leaked
594or guessed. However, some factors could still be broken by brute force. For
595this reason, users will be locked out after too many failed 2nd factor login
596attempts.
597
598For TOTP, 8 failed attempts will disable the user's TOTP factors. They are
599unlocked when logging in with a recovery key. If TOTP was the only available
600factor, admin intervention is required, and it is highly recommended to require
601the user to change their password immediately.
602
603Since FIDO2/Webauthn and recovery keys are less susceptible to brute force
604attacks, the limit there is higher (100 tries), but all second factors are
605blocked for an hour when exceeded.
606
607An admin can unlock a user's Two-Factor Authentication at any time via the user
608list in the UI or the command line:
609
610[source,bash]
611----
612 pveum user tfa unlock joe@pve
613----
614
615[[pveum_user_configured_totp]]
616User Configured TOTP Authentication
617~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
618
619Users can choose to enable 'TOTP' or 'WebAuthn' as a second factor on login, via
620the 'TFA' button in the user list (unless the realm enforces 'YubiKey OTP').
621
622Users can always add and use one time 'Recovery Keys'.
623
624[thumbnail="screenshot/gui-datacenter-two-factor.png"]
625
626After opening the 'TFA' window, the user is presented with a dialog to set up
627'TOTP' authentication. The 'Secret' field contains the key, which can be
628randomly generated via the 'Randomize' button. An optional 'Issuer Name' can be
629added to provide information to the 'TOTP' app about what the key belongs to.
630Most 'TOTP' apps will show the issuer name together with the corresponding
631'OTP' values. The username is also included in the QR code for the 'TOTP' app.
632
633After generating a key, a QR code will be displayed, which can be used with most
634OTP apps such as FreeOTP. The user then needs to verify the current user
635password (unless logged in as 'root'), as well as the ability to correctly use
636the 'TOTP' key, by typing the current 'OTP' value into the 'Verification Code'
637field and pressing the 'Apply' button.
638
639[[user_tfa_setup_totp]]
640=== TOTP
641
642[thumbnail="screenshot/pve-gui-tfa-add-totp.png"]
643
644There is no server setup required. Simply install a TOTP app on your
645smartphone (for example, https://freeotp.github.io/[FreeOTP]) and use
646the {pve} web interface to add a TOTP factor.
647
648[[user_tfa_setup_webauthn]]
649=== WebAuthn
650
651For WebAuthn to work, you need to have two things:
652
653* A trusted HTTPS certificate (for example, by using
654 https://pve.proxmox.com/wiki/Certificate_Management[Let's Encrypt]).
655 While it probably works with an untrusted certificate, some browsers may
656 warn or refuse WebAuthn operations if it is not trusted.
657* Setup the WebAuthn configuration (see *Datacenter -> Options ->
658 WebAuthn Settings* in the Proxmox VE web interface). This can be
659 auto-filled in most setups.
660
661Once you have fulfilled both of these requirements, you can add a WebAuthn
662configuration in the *Two Factor* panel under *Datacenter -> Permissions -> Two
663Factor*.
664
665[[user_tfa_setup_recovery_keys]]
666=== Recovery Keys
667
668[thumbnail="screenshot/pve-gui-tfa-add-recovery-keys.png"]
669
670Recovery key codes do not need any preparation; you can simply create a
671set of recovery keys in the *Two Factor* panel under *Datacenter -> Permissions
672-> Two Factor*.
673
674NOTE: There can only be one set of single-use recovery keys per user at any
675time.
676
677
678[[pveum_configure_webauthn]]
679Server Side Webauthn Configuration
680~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
681
682[thumbnail="screenshot/gui-datacenter-webauthn-edit.png"]
683
684To allow users to use 'WebAuthn' authentication, it is necessaary to use a valid
685domain with a valid SSL certificate, otherwise some browsers may warn or refuse
686to authenticate altogether.
687
688NOTE: Changing the 'WebAuthn' configuration may render all existing 'WebAuthn'
689registrations unusable!
690
691This is done via `/etc/pve/datacenter.cfg`. For instance:
692
693----
694webauthn: rp=mypve.example.com,origin=https://mypve.example.com:8006,id=mypve.example.com
695----
696
697[[pveum_configure_u2f]]
698Server Side U2F Configuration
699~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
700
701NOTE: It is recommended to use WebAuthn instead.
702
703To allow users to use 'U2F' authentication, it may be necessary to use a valid
704domain with a valid SSL certificate, otherwise, some browsers may print
705a warning or reject U2F usage altogether. Initially, an 'AppId'
706footnote:[AppId https://developers.yubico.com/U2F/App_ID.html]
707needs to be configured.
708
709NOTE: Changing the 'AppId' will render all existing 'U2F' registrations
710unusable!
711
712This is done via `/etc/pve/datacenter.cfg`. For instance:
713
714----
715u2f: appid=https://mypve.example.com:8006
716----
717
718For a single node, the 'AppId' can simply be the address of the web interface,
719exactly as it is used in the browser, including the 'https://' and the port, as
720shown above. Please note that some browsers may be more strict than others when
721matching 'AppIds'.
722
723When using multiple nodes, it is best to have a separate `https` server
724providing an `appid.json`
725footnote:[Multi-facet apps: https://developers.yubico.com/U2F/App_ID.html]
726file, as it seems to be compatible with most
727browsers. If all nodes use subdomains of the same top level domain, it may be
728enough to use the TLD as 'AppId'. It should however be noted that some browsers
729may not accept this.
730
731NOTE: A bad 'AppId' will usually produce an error, but we have encountered
732situations when this does not happen, particularly when using a top level domain
733'AppId' for a node that is accessed via a subdomain in Chromium. For this reason
734it is recommended to test the configuration with multiple browsers, as changing
735the 'AppId' later will render existing 'U2F' registrations unusable.
736
737[[pveum_user_configured_u2f]]
738Activating U2F as a User
739~~~~~~~~~~~~~~~~~~~~~~~~
740
741To enable 'U2F' authentication, open the 'TFA' window's 'U2F' tab, type in the
742current password (unless logged in as root), and press the 'Register' button.
743If the server is set up correctly and the browser accepts the server's provided
744'AppId', a message will appear prompting the user to press the button on the
745'U2F' device (if it is a 'YubiKey', the button light should be toggling on and
746off steadily, roughly twice per second).
747
748Firefox users may need to enable 'security.webauth.u2f' via 'about:config'
749before they can use a 'U2F' token.
750
751[[pveum_permission_management]]
752Permission Management
753---------------------
754
755In order for a user to perform an action (such as listing, modifying or
756deleting parts of a VM's configuration), the user needs to have the
757appropriate permissions.
758
759{pve} uses a role and path based permission management system. An entry in
760the permissions table allows a user, group or token to take on a specific role
761when accessing an 'object' or 'path'. This means that such an access rule can
762be represented as a triple of '(path, user, role)', '(path, group,
763role)' or '(path, token, role)', with the role containing a set of allowed
764actions, and the path representing the target of these actions.
765
766
767[[pveum_roles]]
768Roles
769~~~~~
770
771A role is simply a list of privileges. Proxmox VE comes with a number
772of predefined roles, which satisfy most requirements.
773
774* `Administrator`: has full privileges
775* `NoAccess`: has no privileges (used to forbid access)
776* `PVEAdmin`: can do most tasks, but has no rights to modify system settings
777 (`Sys.PowerMgmt`, `Sys.Modify`, `Realm.Allocate`) or permissions
778 (`Permissions.Modify`)
779* `PVEAuditor`: has read only access
780* `PVEDatastoreAdmin`: create and allocate backup space and templates
781* `PVEDatastoreUser`: allocate backup space and view storage
782* `PVEMappingAdmin`: manage resource mappings
783* `PVEMappingUser`: view and use resource mappings
784* `PVEPoolAdmin`: allocate pools
785* `PVEPoolUser`: view pools
786* `PVESDNAdmin`: manage SDN configuration
787* `PVESDNUser`: access to bridges/vnets
788* `PVESysAdmin`: audit, system console and system logs
789* `PVETemplateUser`: view and clone templates
790* `PVEUserAdmin`: manage users
791* `PVEVMAdmin`: fully administer VMs
792* `PVEVMUser`: view, backup, configure CD-ROM, VM console, VM power management
793
794You can see the whole set of predefined roles in the GUI.
795
796You can add new roles via the GUI or the command line.
797
798[thumbnail="screenshot/gui-datacenter-role-add.png"]
799From the GUI, navigate to the 'Permissions -> Roles' tab from 'Datacenter' and
800click on the 'Create' button. There you can set a role name and select any
801desired privileges from the 'Privileges' drop-down menu.
802
803To add a role through the command line, you can use the 'pveum' CLI tool, for
804example:
805[source,bash]
806----
807pveum role add VM_Power-only --privs "VM.PowerMgmt VM.Console"
808pveum role add Sys_Power-only --privs "Sys.PowerMgmt Sys.Console"
809----
810
811NOTE: Roles starting with `PVE` are always builtin, custom roles are not
812allowed use this reserved prefix.
813
814Privileges
815~~~~~~~~~~
816
817A privilege is the right to perform a specific action. To simplify
818management, lists of privileges are grouped into roles, which can then
819be used in the permission table. Note that privileges cannot be directly
820assigned to users and paths without being part of a role.
821
822We currently support the following privileges:
823
824Node / System related privileges::
825
826* `Group.Allocate`: create/modify/remove groups
827* `Mapping.Audit`: view resource mappings
828* `Mapping.Modify`: manage resource mappings
829* `Mapping.Use`: use resource mappings
830* `Permissions.Modify`: modify access permissions
831* `Pool.Allocate`: create/modify/remove a pool
832* `Pool.Audit`: view a pool
833* `Realm.AllocateUser`: assign user to a realm
834* `Realm.Allocate`: create/modify/remove authentication realms
835* `SDN.Allocate`: manage SDN configuration
836* `SDN.Audit`: view SDN configuration
837* `Sys.Audit`: view node status/config, Corosync cluster config, and HA config
838* `Sys.Console`: console access to node
839* `Sys.Incoming`: allow incoming data streams from other clusters (experimental)
840* `Sys.Modify`: create/modify/remove node network parameters
841* `Sys.PowerMgmt`: node power management (start, stop, reset, shutdown, ...)
842* `Sys.Syslog`: view syslog
843* `User.Modify`: create/modify/remove user access and details.
844
845Virtual machine related privileges::
846
847* `SDN.Use`: access SDN vnets and local network bridges
848* `VM.Allocate`: create/remove VM on a server
849* `VM.Audit`: view VM config
850* `VM.Backup`: backup/restore VMs
851* `VM.Clone`: clone/copy a VM
852* `VM.Config.CDROM`: eject/change CD-ROM
853* `VM.Config.CPU`: modify CPU settings
854* `VM.Config.Cloudinit`: modify Cloud-init parameters
855* `VM.Config.Disk`: add/modify/remove disks
856* `VM.Config.HWType`: modify emulated hardware types
857* `VM.Config.Memory`: modify memory settings
858* `VM.Config.Network`: add/modify/remove network devices
859* `VM.Config.Options`: modify any other VM configuration
860* `VM.Console`: console access to VM
861* `VM.Migrate`: migrate VM to alternate server on cluster
862* `VM.Monitor`: access to VM monitor (kvm)
863* `VM.PowerMgmt`: power management (start, stop, reset, shutdown, ...)
864* `VM.Snapshot.Rollback`: rollback VM to one of its snapshots
865* `VM.Snapshot`: create/delete VM snapshots
866
867Storage related privileges::
868
869* `Datastore.Allocate`: create/modify/remove a datastore and delete volumes
870* `Datastore.AllocateSpace`: allocate space on a datastore
871* `Datastore.AllocateTemplate`: allocate/upload templates and ISO images
872* `Datastore.Audit`: view/browse a datastore
873
874WARNING: Both `Permissions.Modify` and `Sys.Modify` should be handled with
875care, as they allow modifying aspects of the system and its configuration that
876are dangerous or sensitive.
877
878WARNING: Carefully read the section about inheritance below to understand how
879assigned roles (and their privileges) are propagated along the ACL tree.
880
881Objects and Paths
882~~~~~~~~~~~~~~~~~
883
884Access permissions are assigned to objects, such as virtual machines,
885storages or resource pools.
886We use file system like paths to address these objects. These paths form a
887natural tree, and permissions of higher levels (shorter paths) can
888optionally be propagated down within this hierarchy.
889
890[[pveum_templated_paths]]
891Paths can be templated. When an API call requires permissions on a
892templated path, the path may contain references to parameters of the API
893call. These references are specified in curly braces. Some parameters are
894implicitly taken from the API call's URI. For instance, the permission path
895`/nodes/{node}` when calling '/nodes/mynode/status' requires permissions on
896`/nodes/mynode`, while the path `{path}` in a PUT request to `/access/acl`
897refers to the method's `path` parameter.
898
899Some examples are:
900
901* `/nodes/{node}`: Access to {pve} server machines
902* `/vms`: Covers all VMs
903* `/vms/{vmid}`: Access to specific VMs
904* `/storage/{storeid}`: Access to a specific storage
905* `/pool/{poolname}`: Access to resources contained in a specific <<pveum_pools,pool>>
906* `/access/groups`: Group administration
907* `/access/realms/{realmid}`: Administrative access to realms
908
909
910Inheritance
911^^^^^^^^^^^
912
913As mentioned earlier, object paths form a file system like tree, and
914permissions can be inherited by objects down that tree (the propagate flag is
915set by default). We use the following inheritance rules:
916
917* Permissions for individual users always replace group permissions.
918* Permissions for groups apply when the user is member of that group.
919* Permissions on deeper levels replace those inherited from an upper level.
920* `NoAccess` cancels all other roles on a given path.
921
922Additionally, privilege separated tokens can never have permissions on any
923given path that their associated user does not have.
924
925[[pveum_pools]]
926Pools
927~~~~~
928
929Pools can be used to group a set of virtual machines and datastores. You can
930then simply set permissions on pools (`/pool/{poolid}`), which are inherited by
931all pool members. This is a great way to simplify access control.
932
933
934Which Permissions Do I Need?
935~~~~~~~~~~~~~~~~~~~~~~~~~~~~
936
937The required API permissions are documented for each individual
938method, and can be found at https://pve.proxmox.com/pve-docs/api-viewer/.
939
940The permissions are specified as a list, which can be interpreted as a
941tree of logic and access-check functions:
942
943`["and", <subtests>...]` and `["or", <subtests>...]`::
944Each(`and`) or any(`or`) further element in the current list has to be true.
945
946`["perm", <path>, [ <privileges>... ], <options>...]`::
947The `path` is a templated parameter (see
948<<pveum_templated_paths,Objects and Paths>>). All (or, if the `any`
949option is used, any) of the listed
950privileges must be allowed on the specified path. If a `require-param`
951option is specified, then its specified parameter is required even if the
952API call's schema otherwise lists it as being optional.
953
954`["userid-group", [ <privileges>... ], <options>...]`::
955The caller must have any of the listed privileges on `/access/groups`. In
956addition, there are two possible checks, depending on whether the
957`groups_param` option is set:
958+
959* `groups_param` is set: The API call has a non-optional `groups` parameter
960and the caller must have any of the listed privileges on all of the listed
961groups.
962* `groups_param` is not set: The user passed via the `userid` parameter
963must exist and be part of a group on which the caller has any of the listed
964privileges (via the `/access/groups/<group>` path).
965
966`["userid-param", "self"]`::
967The value provided for the API call's `userid` parameter must refer to the
968user performing the action (usually in conjunction with `or`, to allow
969users to perform an action on themselves, even if they don't have elevated
970privileges).
971
972`["userid-param", "Realm.AllocateUser"]`::
973The user needs `Realm.AllocateUser` access to `/access/realm/<realm>`, with
974`<realm>` referring to the realm of the user passed via the `userid`
975parameter. Note that the user does not need to exist in order to be
976associated with a realm, since user IDs are passed in the form of
977`<username>@<realm>`.
978
979`["perm-modify", <path>]`::
980The `path` is a templated parameter (see
981<<pveum_templated_paths,Objects and Paths>>). The user needs either the
982`Permissions.Modify` privilege or,
983depending on the path, the following privileges as a possible substitute:
984+
985* `/storage/...`: requires 'Datastore.Allocate`
986* `/vms/...`: requires 'VM.Allocate`
987* `/pool/...`: requires 'Pool.Allocate`
988+
989If the path is empty, `Permissions.Modify` on `/access` is required.
990+
991If the user does not have the `Permissions.Modify` privilege, they can only
992delegate subsets of their own privileges on the given path (e.g., a user with
993`PVEVMAdmin` could assign `PVEVMUser`, but not `PVEAdmin`).
994
995Command-line Tool
996-----------------
997
998Most users will simply use the GUI to manage users. But there is also
999a fully featured command-line tool called `pveum` (short for ``**P**roxmox
1000**VE** **U**ser **M**anager''). Please note that all Proxmox VE command-line
1001tools are wrappers around the API, so you can also access those
1002functions through the REST API.
1003
1004Here are some simple usage examples. To show help, type:
1005
1006[source,bash]
1007----
1008 pveum
1009----
1010
1011or (to show detailed help about a specific command)
1012
1013[source,bash]
1014----
1015 pveum help user add
1016----
1017
1018Create a new user:
1019
1020[source,bash]
1021----
1022 pveum user add testuser@pve -comment "Just a test"
1023----
1024
1025Set or change the password (not all realms support this):
1026
1027[source,bash]
1028----
1029 pveum passwd testuser@pve
1030----
1031
1032Disable a user:
1033
1034[source,bash]
1035----
1036 pveum user modify testuser@pve -enable 0
1037----
1038
1039Create a new group:
1040
1041[source,bash]
1042----
1043 pveum group add testgroup
1044----
1045
1046Create a new role:
1047
1048[source,bash]
1049----
1050 pveum role add PVE_Power-only -privs "VM.PowerMgmt VM.Console"
1051----
1052
1053
1054Real World Examples
1055-------------------
1056
1057
1058Administrator Group
1059~~~~~~~~~~~~~~~~~~~
1060
1061It is possible that an administrator would want to create a group of users with
1062full administrator rights (without using the root account).
1063
1064To do this, first define the group:
1065
1066[source,bash]
1067----
1068 pveum group add admin -comment "System Administrators"
1069----
1070
1071Then assign the role:
1072
1073[source,bash]
1074----
1075 pveum acl modify / -group admin -role Administrator
1076----
1077
1078Finally, you can add users to the new 'admin' group:
1079
1080[source,bash]
1081----
1082 pveum user modify testuser@pve -group admin
1083----
1084
1085
1086Auditors
1087~~~~~~~~
1088
1089You can give read only access to users by assigning the `PVEAuditor`
1090role to users or groups.
1091
1092Example 1: Allow user `joe@pve` to see everything
1093
1094[source,bash]
1095----
1096 pveum acl modify / -user joe@pve -role PVEAuditor
1097----
1098
1099Example 2: Allow user `joe@pve` to see all virtual machines
1100
1101[source,bash]
1102----
1103 pveum acl modify /vms -user joe@pve -role PVEAuditor
1104----
1105
1106
1107Delegate User Management
1108~~~~~~~~~~~~~~~~~~~~~~~~
1109
1110If you want to delegate user management to user `joe@pve`, you can do
1111that with:
1112
1113[source,bash]
1114----
1115 pveum acl modify /access -user joe@pve -role PVEUserAdmin
1116----
1117
1118User `joe@pve` can now add and remove users, and change other user attributes,
1119such as passwords. This is a very powerful role, and you most
1120likely want to limit it to selected realms and groups. The following
1121example allows `joe@pve` to modify users within the realm `pve`, if they
1122are members of group `customers`:
1123
1124[source,bash]
1125----
1126 pveum acl modify /access/realm/pve -user joe@pve -role PVEUserAdmin
1127 pveum acl modify /access/groups/customers -user joe@pve -role PVEUserAdmin
1128----
1129
1130NOTE: The user is able to add other users, but only if they are
1131members of the group `customers` and within the realm `pve`.
1132
1133Limited API Token for Monitoring
1134~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1135
1136Permissions on API tokens are always a subset of those of their corresponding
1137user, meaning that an API token can't be used to carry out a task that the
1138backing user has no permission to do. This section will demonstrate how you can
1139use an API token with separate privileges, to limit the token owner's
1140permissions further.
1141
1142Give the user `joe@pve` the role PVEVMAdmin on all VMs:
1143
1144[source,bash]
1145----
1146 pveum acl modify /vms -user joe@pve -role PVEVMAdmin
1147----
1148
1149Add a new API token with separate privileges, which is only allowed to view VM
1150information (for example, for monitoring purposes):
1151
1152[source,bash]
1153----
1154 pveum user token add joe@pve monitoring -privsep 1
1155 pveum acl modify /vms -token 'joe@pve!monitoring' -role PVEAuditor
1156----
1157
1158Verify the permissions of the user and token:
1159
1160[source,bash]
1161----
1162 pveum user permissions joe@pve
1163 pveum user token permissions joe@pve monitoring
1164----
1165
1166Resource Pools
1167~~~~~~~~~~~~~~
1168
1169An enterprise is usually structured into several smaller departments, and it is
1170common that you want to assign resources and delegate management tasks to each
1171of these. Let's assume that you want to set up a pool for a software development
1172department. First, create a group:
1173
1174[source,bash]
1175----
1176 pveum group add developers -comment "Our software developers"
1177----
1178
1179Now we create a new user which is a member of that group:
1180
1181[source,bash]
1182----
1183 pveum user add developer1@pve -group developers -password
1184----
1185
1186NOTE: The "-password" parameter will prompt you for a password
1187
1188Then we create a resource pool for our development department to use:
1189
1190[source,bash]
1191----
1192 pveum pool add dev-pool --comment "IT development pool"
1193----
1194
1195Finally, we can assign permissions to that pool:
1196
1197[source,bash]
1198----
1199 pveum acl modify /pool/dev-pool/ -group developers -role PVEAdmin
1200----
1201
1202Our software developers can now administer the resources assigned to
1203that pool.
1204
1205
1206ifdef::manvolnum[]
1207include::pve-copyright.adoc[]
1208endif::manvolnum[]
1209