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