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