]> mj.ucw.cz Git - subauth.git/blob - client/subauth.1.txt
c0f456d76f39b35cebb489f6fa258129ef15f904
[subauth.git] / client / subauth.1.txt
1 SUBAUTH(1)
2 ==========
3
4 NAME
5 ----
6 subauth - A client to the sub-authentication service
7
8
9 SYNOPSIS
10 --------
11 *subauth* 'options' 'operation'
12
13
14 DESCRIPTION
15 -----------
16 The sub-authentication service lets local users define sub-accounts
17 with different authentication tokens for specific services.
18
19 The system administrator defines one or more authentication zones,
20 each corresponding to a set of system services. You can use *subauth --zones*
21 to list all existing zones.
22
23 Each zone can contain an account for each system user. Depending on the
24 configuration of the zone, accounts can be manager manually by the administrator,
25 or they can be created automatically when the user sets an authentication
26 token for the zone.
27
28 Every account can be endowed with one of more authentication tokens
29 of the following types. Depending on the configuration, all types need
30 not be available in all zones.
31
32 * *Password:* a user-specified string, usually easy to remember, but hard to
33   guess. This is useful when authenticating manually. Please note that the
34   password must not contain a "+-+" (minus) character, because it is used
35   as a separator in other token types. There may be at most one password
36   per account. You can use *subauth --passwd* to set a password
37   and *subauth --delete-passwd* to remove it.
38
39 * *Regular token:* such tokens are generated automatically. They consist
40   of a public identifier (4 hexadecimal digits) and a random secret string.
41   Multiple tokens can be defined for the same account, their public identifiers
42   and optional comments can be listed by the user. This can be useful if you
43   want to let multiple programs remember your credentials: each program can
44   get a unique token and when it ceases to be trusted, the token can be simply
45   removed. Use *subauth --create-token* to have a token generated and *subauth --delete-token*
46   to have it removed.
47
48 * *Temporary token:* this is a randomly generated cryptographically signed string,
49   allowing access to the given user in the given zone for a limited time. Temporary tokens
50   can be useful for services which are used so scarcely that it does not make
51   sense to remember permanent credentials of any kind. Use *subauth --temp-token*
52   to obtain a temporary token. You can set how long will the token be valid
53   up to a limit configured by the administrator for the given zone.
54
55 The sub-accounts are managed by the *subauthd*(8) daemon.
56 The *subauth*(1) command is a front-end to this daemon, through which
57 accounts and tokens can be managed from the shell.
58
59
60 OPERATIONS
61 ----------
62 *User commands*
63
64 *--zones*::
65         List all known authentication zones.
66
67 *-l, --list*::
68         List all accounts of the current user (this can be the user running the
69         command, or a different user given as *--user* if ran by the super-user).
70
71 *--passwd*::
72         Set or replace a password for the given account. Requires *--zone*.
73
74 *--delete-passwd*::
75         Delete password for the given account. Requires *--zone*.
76
77 *--create-token*::
78         Create a new token for the given account. Requires *--zone*.
79         Optionally, a *--comment* can be given.
80
81 *--delete-token*::
82         Delete a given token. Requires *--zone* and *--ident*.
83
84 *--temp-token*::
85         Create a temporary token. Requires *--zone*.
86         Optionally, token validity can be set with *--expire* (otherwise,
87         a default of 5 minutes will be used).
88
89 *--login*::
90         Test if a given password or token (read from standard input) is valid
91         in the given zone. Requires *--zone*. Optionally, you can specify a *--user*
92         to test somebody else's credentials.
93
94 *Administrator commands*
95
96 *--create-acct*::
97         Create an account for the current user in the given zone. Requires *--zone*
98         and *--user*.
99
100 *--delete-acct*::
101         Delete an account for the current user in the given zone. Requires *--zone*
102         and *--user*.
103
104 *--delete-user*::
105         Deletes all accounts of the current user. Requires *--user*.
106
107 OPTIONS
108 -------
109
110 *-u, --user=*'login'::
111         Operate on the given user instead of the user running the command.
112         Only the super-user can operate on somebody else.
113
114 *-z, --zone=*'zone'::
115         Specify authentication zone. This is required by most operations.
116
117 *-i, --ident=*'id'::
118         Specify token identifier. An asterisk can be used for "all tokens".
119
120 *-c, --comment=*'text'::
121         When creating a token, remember this comment with the token. Comments
122         make it easier to recognize the intentions behind different tokens.
123
124 *-x, --expire=*'time'::
125         Set lifetime of a temporary token. The time is followed by a unit,
126         which is either "*h*", "*m*", or "*s*". Maximum lifetime can be limited
127         by zone configuration.
128
129 *--socket=*'path'::
130         Communicate with the subauth daemon through the given socket instead
131         of the default one.
132
133 *--debug*::
134         For wizards: Dump raw communication with the daemon.
135
136
137 SEE ALSO
138 --------
139 *subauthd*(8)