]> git.proxmox.com Git - pve-docs.git/blame - pveum.adoc
use asciidoc-pve whenever possible
[pve-docs.git] / pveum.adoc
CommitLineData
3c8533f2 1ifdef::manvolnum[]
7e2fdb3d
DM
2PVE(1)
3======
38fd0958 4include::attributes.txt[]
5f09af76
DM
5:pve-toplevel:
6
3c8533f2
DM
7NAME
8----
9
10pveum - Proxmox VE User Manager
11
12
49a5e11c 13SYNOPSIS
3c8533f2
DM
14--------
15
16include::pveum.1-synopsis.adoc[]
17
18
19DESCRIPTION
20-----------
21endif::manvolnum[]
22
23ifndef::manvolnum[]
24User Management
25===============
38fd0958 26include::attributes.txt[]
3c8533f2
DM
27endif::manvolnum[]
28
5f09af76
DM
29ifdef::wiki[]
30:pve-toplevel:
31endif::wiki[]
32
3c8533f2
DM
33// Copied from pve wiki: Revision as of 16:10, 27 October 2015
34
5462c161
WB
35Proxmox VE supports multiple authentication sources, e.g. Linux PAM,
36an integrated Proxmox VE authentication server, LDAP, Microsoft Active
37Directory.
3c8533f2
DM
38
39By using the role based user- and permission management for all
5eba0743
FG
40objects (VMs, storages, nodes, etc.) granular access can be defined.
41
3c8533f2 42
c80b9ee6
WB
43Users
44-----
45
46{pve} stores user attributes in `/etc/pve/user.cfg`.
47Passwords are not stored here, users are instead associated with
48<<authentication-realms,authentication realms>> described below.
49Therefore a user is internally often identified by its name and
50realm in the form `<userid>@<realm>`.
51
52Each user entry in this file contains the following information:
53
54* First name
55* Last name
56* E-mail address
57* Group memberships
58* An optional Expiration date
59* A comment or note about this user
60* Whether this user is enabled or disabled
61* Optional two factor authentication keys
62
63
64System administrator
65~~~~~~~~~~~~~~~~~~~~
66
67The system's root user can always log in via the Linux PAM realm and is an
68unconfined administrator. This user cannot be deleted, but attributes can
69still be changed and system mails will be sent to the email address
70assigned to this user.
71
72
73Groups
74~~~~~~
75
76Each user can be member of several groups. Groups are the preferred
77way to organize access permissions. You should always grant permission
78to groups instead of using individual users. That way you will get a
79much shorter access control list which is easier to handle.
80
81
d6614202 82[[authentication-realms]]
3c8533f2
DM
83Authentication Realms
84---------------------
85
d6614202
WB
86As {pve} users are just counterparts for users existing on some external
87realm, the realms have to be configured in `/etc/pve/domains.cfg`.
88The following realms (authentication methods) are available:
3c8533f2
DM
89
90Linux PAM standard authentication::
d6614202
WB
91In this case a system user has to exist (eg. created via the `adduser`
92command) on all nodes the user is allowed to login, and the user
93authenticates with their usual system password.
94+
3c8533f2
DM
95[source,bash]
96----
97useradd heinz
98passwd heinz
99groupadd watchman
100usermod -a -G watchman heinz
101----
102
103Proxmox VE authentication server::
d6614202
WB
104This is a unix like password store (`/etc/pve/priv/shadow.cfg`).
105Password are encrypted using the SHA-256 hash method.
106This is the most convenient method for for small (or even medium)
107installations where users do not need access to anything outside of
108{pve}. In this case users are fully managed by {pve} and are able to
109change their own passwords via the GUI.
110
111LDAP::
112It is possible to authenticate users via an LDAP server (eq.
113openldap). The server and an optional fallback server can be
114configured and the connection can be encrypted via SSL.
115+
116Users are searched under a 'Base Domain Name' (`base_dn`), with the
117user name found in the attribute specified in the 'User Attribute Name'
118(`user_attr`) field.
119+
120For instance, if a user is represented via the
121following ldif dataset:
122+
123----
124# user1 of People at ldap-test.com
125dn: uid=user1,ou=People,dc=ldap-test,dc=com
126objectClass: top
127objectClass: person
128objectClass: organizationalPerson
129objectClass: inetOrgPerson
130uid: user1
131cn: Test User 1
132sn: Testers
133description: This is the first test user.
134----
135+
136The 'Base Domain Name' would be `ou=People,dc=ldap-test,dc=com` and the user
137attribute would be `uid`.
138+
139If {pve} needs to authenticate (bind) to the ldap server before being
140able to query and authenticate users, a bind domain name can be
141configured via the `bind_dn` property in `/etc/pve/domains.cfg`. Its
142password then has to be stored in `/etc/pve/priv/ldap/<realmname>.pw`
143(eg. `/etc/pve/priv/ldap/my-ldap.pw`). This file should contain a
144single line containing the raw password.
145
146Microsoft Active Directory::
3c8533f2 147
d6614202
WB
148A server and authentication domain need to be specified. Like with
149ldap an optional fallback server, optional port, and SSL
150encryption can be configured.
3c8533f2 151
5eba0743 152
9e8f2770
WB
153Two factor authentication
154-------------------------
155
156Each realm can optionally be secured additionally by two factor
157authentication. This can be done by selecting one of the available methods
158via the 'TFA' dropdown box when adding or editing an Authentication Realm.
159When a realm has TFA enabled it becomes a requirement and only users with
160configured TFA will be able to login.
161
162Currently there are two methods available:
163
164Time based OATH (TOTP)::
165This uses the standard HMAC-SHA1 algorithm where the current time is hashed
166with the user's configured key. The time step and password length
167parameters are configured.
168+
169A user can have multiple keys configured (separated by spaces), and the
170keys can be specified in Base32 (RFC3548) or hexadecimal notation.
171+
172{pve} provides a key generation tool (`oathkeygen`) which prints out a
173random key in Base32 notation which can be used directly with various OTP
174tools, such as the `oathtool` command line tool, the Google authenticator
175or FreeOTP Android apps.
176
177YubiKey OTP::
178For authenticating via a YubiKey a Yubico API ID, API KEY and validation
179server URL must be configured, and users must have a YubiKey available. In
180order to get the key ID from a YubiKey, you can trigger the YubiKey once
181after connecting it to USB and copy the first 12 characters of the typed
182password into the user's 'Key IDs' field.
183+
184Please refer to the
185https://developers.yubico.com/OTP/[YubiKey OTP] documentation for how to use the
186https://www.yubico.com/products/services-software/yubicloud/[YubiCloud] or
187https://developers.yubico.com/Software_Projects/YubiKey_OTP/YubiCloud_Validation_Servers/[
188host your own verification server].
189
190
04f44730 191Permission Management
3c8533f2
DM
192---------------------
193
04f44730
WB
194In order for a user to perform an action (such as listing, modifying or
195deleting a parts of a VM configuration), the user needs to have the
196appropriate permissions.
197
198{pve} uses a role and path based permission management system. An entry in
199the permissions table allows a user or group to take on a specific role
200when accessing an 'object' or 'path'. This means an such an access rule can
201be represented as a triple of '(path, user, role)' or '(path, group,
202role)', with the role containing a set of allowed actions, and the path
203representing the target of these actions.
204
5eba0743 205
853d288b
WB
206Roles
207~~~~~
208
209A role is simply a list of privileges. Proxmox VE comes with a number
210of predefined roles which satisfies most needs.
211
212* `Administrator`: has all privileges
213* `NoAccess`: has no privileges (used to forbid access)
214* `PVEAdmin`: can do most things, but miss rights to modify system settings (`Sys.PowerMgmt`, `Sys.Modify`, `Realm.Allocate`).
215* `PVEAuditor`: read only access
216* `PVEDatastoreAdmin`: create and allocate backup space and templates
217* `PVEDatastoreUser`: allocate backup space and view storage
218* `PVEPoolAdmin`: allocate pools
219* `PVESysAdmin`: User ACLs, audit, system console and system logs
220* `PVETemplateUser`: view and clone templates
221* `PVEUserAdmin`: user administration
222* `PVEVMAdmin`: fully administer VMs
223* `PVEVMUser`: view, backup, config CDROM, VM console, VM power management
224
225You can see the whole set of predefined roles on the GUI.
226
227Adding new roles can currently only be done from the command line, like
228this:
229
230[source,bash]
231----
232pveum roleadd PVE_Power-only -privs "VM.PowerMgmt VM.Console"
233pveum roleadd Sys_Power-only -privs "Sys.PowerMgmt Sys.Console"
234----
235
236
3c8533f2
DM
237Privileges
238~~~~~~~~~~
239
240A privilege is the right to perform a specific action. To simplify
241management, lists of privileges are grouped into roles, which can then
0e1fda70
WB
242be used in the permission table. Note that privileges cannot directly be
243assigned to users and paths without being part of a role.
3c8533f2
DM
244
245We currently use the following privileges:
246
247Node / System related privileges::
248
249* `Permissions.Modify`: modify access permissions
250* `Sys.PowerMgmt`: Node power management (start, stop, reset, shutdown, ...)
251* `Sys.Console`: console access to Node
252* `Sys.Syslog`: view Syslog
253* `Sys.Audit`: view node status/config
254* `Sys.Modify`: create/remove/modify node network parameters
255* `Group.Allocate`: create/remove/modify groups
256* `Pool.Allocate`: create/remove/modify a pool
257* `Realm.Allocate`: create/remove/modify authentication realms
258* `Realm.AllocateUser`: assign user to a realm
259* `User.Modify`: create/remove/modify user access and details.
260
261Virtual machine related privileges::
262
263* `VM.Allocate`: create/remove new VM to server inventory
264* `VM.Migrate`: migrate VM to alternate server on cluster
265* `VM.PowerMgmt`: power management (start, stop, reset, shutdown, ...)
266* `VM.Console`: console access to VM
267* `VM.Monitor`: access to VM monitor (kvm)
268* `VM.Backup`: backup/restore VMs
269* `VM.Audit`: view VM config
270* `VM.Clone`: clone/copy a VM
271* `VM.Config.Disk`: add/modify/delete Disks
272* `VM.Config.CDROM`: eject/change CDROM
273* `VM.Config.CPU`: modify CPU settings
274* `VM.Config.Memory`: modify Memory settings
275* `VM.Config.Network`: add/modify/delete Network devices
276* `VM.Config.HWType`: modify emulated HW type
277* `VM.Config.Options`: modify any other VM configuration
278* `VM.Snapshot`: create/remove VM snapshots
279
280Storage related privileges::
281
282* `Datastore.Allocate`: create/remove/modify a data store, delete volumes
283* `Datastore.AllocateSpace`: allocate space on a datastore
284* `Datastore.AllocateTemplate`: allocate/upload templates and iso images
285* `Datastore.Audit`: view/browse a datastore
286
5eba0743 287
b8eeec52
WB
288Objects and Paths
289~~~~~~~~~~~~~~~~~
290
291Access permissions are assigned to objects, such as a virtual machines,
292storages or pools of resources.
293We use file system like paths to address these objects. These paths form a
294natural tree, and permissions of higher levels (shorter path) can
295optionally be propagated down within this hierarchy.
296
297[[templated-paths]]
298Paths can be templated. When an API call requires permissions on a
299templated path, the path may contain references to parameters of the API
300call. These references are specified in curly braces. Some parameters are
301implicitly taken from the API call's URI. For instance the permission path
302`/nodes/{node}` when calling '/nodes/mynode/status' requires permissions on
303`/nodes/mynode`, while the path `{path}` in a PUT request to `/access/acl`
304refers to the method's `path` parameter.
305
306Some examples are:
307
308* `/nodes/{node}`: Access to {pve} server machines
309* `/vms`: Covers all VMs
310* `/vms/{vmid}`: Access to specific VMs
311* `/storage/{storeid}`: Access to a storages
312* `/pool/{poolname}`: Access to VMs part of a <<resource-pools,pool>
313* `/access/groups`: Group administration
314* `/access/realms/{realmid}`: Administrative access to realms
315
316
3c8533f2
DM
317Inheritance
318^^^^^^^^^^^
319
5eba0743 320As mentioned earlier, object paths form a file system like tree, and
3c8533f2
DM
321permissions can be inherited down that tree (the propagate flag is set
322by default). We use the following inheritance rules:
323
74936daf
WB
324* Permissions for individual users always replace group permissions.
325* Permissions for groups apply when the user is member of that group.
326* Permissions replace the ones inherited from an upper level.
3c8533f2 327
5eba0743 328
3c8533f2
DM
329Pools
330~~~~~
331
332Pools can be used to group a set of virtual machines and data
8c1189b6 333stores. You can then simply set permissions on pools (`/pool/{poolid}`),
3c8533f2
DM
334which are inherited to all pool members. This is a great way simplify
335access control.
336
74936daf
WB
337
338What permission do I need?
339~~~~~~~~~~~~~~~~~~~~~~~~~~
340
341The required API permissions are documented for each individual
342method, and can be found at http://pve.proxmox.com/pve-docs/api-viewer/
343
344The permissions are specified as a list which can be interpreted as a
345tree of logic and access-check functions:
346
347`["and", <subtests>...]` and `["or", <subtests>...]`::
348Each(`and`) or any(`or`) further element in the current list has to be true.
349
350`["perm", <path>, [ <privileges>... ], <options>...]`::
351The `path` is a templated parameter (see <<templated-paths,Objects and
352Paths>>). All (or , if the `any` option is used, any) of the listed
353privileges must be allowed on the specified path. If a `require-param`
354option is specified, then its specified parameter is required even if the
355API call's schema otherwise lists it as being optional.
356
357`["userid-group", [ <privileges>... ], <options>...]`::
358The callermust have any of the listed privileges on `/access/groups`. In
359addition there are two possible checks depending on whether the
360`groups_param` option is set:
361+
362* `groups_param` is set: The API call has a non-optional `groups` parameter
363and the caller must have any of the listed privileges on all of the listed
364groups.
365* `groups_param` is not set: The user passed via the `userid` parameter
366must exist and be part of a group on which the caller has any of the listed
367privileges (via the `/access/groups/<group>` path).
368
369`["userid-param", "self"]`::
370The value provided for the API call's `userid` parameter must refer to the
371user performing the action. (Usually in conjunction with `or`, to allow
372users to perform an action on themselves even if they don't have elevated
373privileges.)
374
375`["userid-param", "Realm.AllocateUser"]`::
376The user needs `Realm.AllocateUser` access to `/access/realm/<realm>`, with
377`<realm>` refering to the realm of the user passed via the `userid`
378parameter. Note that the user does not need to exist in order to be
379associated with a realm, since user IDs are passed in the form of
380`<username>@<realm>`.
381
382`["perm-modify", <path>]`::
383The `path` is a templated parameter (see <<templated-paths,Objects and
384Paths>>). The user needs either the `Permissions.Modify` privilege, or,
385depending on the path, the following privileges as a possible substitute:
386+
387* `/storage/...`: additionally requires 'Datastore.Allocate`
388* `/vms/...`: additionally requires 'VM.Allocate`
389* `/pool/...`: additionally requires 'Pool.Allocate`
390+
391If the path is empty, `Permission.Modify` on `/access` is required.
392
3c8533f2
DM
393Command Line Tool
394-----------------
395
396Most users will simply use the GUI to manage users. But there is also
8c1189b6 397a full featured command line tool called `pveum` (short for ``**P**roxmox
4f6e7e05
WB
398**VE** **U**ser **M**anager''). Please note that all Proxmox VE command
399line tools are wrappers around the API, so you can also access those
400function through the REST API.
3c8533f2
DM
401
402Here are some simple usage examples. To show help type:
403
404[source,bash]
405 pveum
406
407or (to show detailed help about a specific command)
408
409[source,bash]
410 pveum help useradd
411
412Create a new user:
413
414[source,bash]
415 pveum useradd testuser@pve -comment "Just a test"
416
417Set or Change the password (not all realms support that):
418
419[source,bash]
420 pveum passwd testuser@pve
421
422Disable a user:
423
424[source,bash]
425 pveum usermod testuser@pve -enable 0
426
427Create a new group:
428
429[source,bash]
430 pveum groupadd testgroup
431
432Create a new role:
433
434[source,bash]
435 pveum roleadd PVE_Power-only -privs "VM.PowerMgmt VM.Console"
436
437
438Real World Examples
439-------------------
440
5eba0743 441
3c8533f2
DM
442Administrator Group
443~~~~~~~~~~~~~~~~~~~
444
445One of the most wanted features was the ability to define a group of
5eba0743 446users with full administrator rights (without using the root account).
3c8533f2
DM
447
448Define the group:
449
450[source,bash]
451 pveum groupadd admin -comment "System Administrators"
452
453Then add the permission:
454
455[source,bash]
456 pveum aclmod / -group admin -role Administrator
457
458You can finally add users to the new 'admin' group:
459
460[source,bash]
461 pveum usermod testuser@pve -group admin
462
463
464Auditors
465~~~~~~~~
466
467You can give read only access to users by assigning the `PVEAuditor`
468role to users or groups.
469
8c1189b6 470Example1: Allow user `joe@pve` to see everything
3c8533f2
DM
471
472[source,bash]
473 pveum aclmod / -user joe@pve -role PVEAuditor
474
8c1189b6 475Example1: Allow user `joe@pve` to see all virtual machines
3c8533f2
DM
476
477[source,bash]
478 pveum aclmod /vms -user joe@pve -role PVEAuditor
479
5eba0743 480
3c8533f2
DM
481Delegate User Management
482~~~~~~~~~~~~~~~~~~~~~~~~
483
8c1189b6 484If you want to delegate user managenent to user `joe@pve` you can do
3c8533f2
DM
485that with:
486
487[source,bash]
488 pveum aclmod /access -user joe@pve -role PVEUserAdmin
489
8c1189b6 490User `joe@pve` can now add and remove users, change passwords and
3c8533f2
DM
491other user attributes. This is a very powerful role, and you most
492likely want to limit that to selected realms and groups. The following
8c1189b6
FG
493example allows `joe@pve` to modify users within realm `pve` if they
494are members of group `customers`:
3c8533f2
DM
495
496[source,bash]
497 pveum aclmod /access/realm/pve -user joe@pve -role PVEUserAdmin
498 pveum aclmod /access/groups/customers -user joe@pve -role PVEUserAdmin
499
0abc65b0 500NOTE: The user is able to add other users, but only if they are
8c1189b6
FG
501members of group `customers` and within realm `pve`.
502
3c8533f2
DM
503
504Pools
505~~~~~
506
507An enterprise is usually structured into several smaller departments,
508and it is common that you want to assign resources to them and
509delegate management tasks. A pool is simply a set of virtual machines
510and data stores. You can create pools on the GUI. After that you can
511add resources to the pool (VMs, Storage).
512
513You can also assign permissions to the pool. Those permissions are
514inherited to all pool members.
515
516Lets assume you have a software development department, so we first
517create a group
518
519[source,bash]
520 pveum groupadd developers -comment "Our software developers"
521
522Now we create a new user which is a member of that group
523
524[source,bash]
525 pveum useradd developer1@pve -group developers -password
526
0abc65b0 527NOTE: The -password parameter will prompt you for a password
3c8533f2 528
8c1189b6 529I assume we already created a pool called ``dev-pool'' on the GUI. So we can now assign permission to that pool:
3c8533f2
DM
530
531[source,bash]
532 pveum aclmod /pool/dev-pool/ -group developers -role PVEAdmin
533
534Our software developers can now administrate the resources assigned to
535that pool.
536
537
538ifdef::manvolnum[]
539include::pve-copyright.adoc[]
540endif::manvolnum[]
541