]> mj.ucw.cz Git - subauth.git/blob - client/subauth.1.txt
8f633b15804aabad5b7fc480153480fcb554a00f
[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 *--change-token*::
85         Change parameters of an existing token. Currently, only the comment
86         can be changed; setting to an empty string removes the comment.
87         Requires *--zone* and *--ident*.
88
89 *--temp-token*::
90         Create a temporary token. Requires *--zone*.
91         Optionally, token validity can be set with *--expire* (otherwise,
92         a default of 5 minutes will be used).
93
94 *--login*::
95         Test if a given password or token (read from standard input) is valid
96         in the given zone. Requires *--zone*. Optionally, you can specify a *--user*
97         to test somebody else's credentials.
98
99 *Administrator commands*
100
101 *--create-acct*::
102         Create an account for the current user in the given zone. Requires *--zone*
103         and *--user*.
104
105 *--delete-acct*::
106         Delete an account for the current user in the given zone. Requires *--zone*
107         and *--user*.
108
109 *--delete-user*::
110         Deletes all accounts of the current user. Requires *--user*.
111
112 OPTIONS
113 -------
114
115 *-u, --user=*'login'::
116         Operate on the given user instead of the user running the command.
117         Only the super-user can operate on somebody else.
118
119 *-z, --zone=*'zone'::
120         Specify authentication zone. This is required by most operations.
121
122 *-i, --ident=*'id'::
123         Specify token identifier. An asterisk can be used for "all tokens".
124
125 *-c, --comment=*'text'::
126         When creating a token, remember this comment with the token. Comments
127         make it easier to recognize the intentions behind different tokens.
128
129 *-x, --expire=*'time'::
130         Set lifetime of a temporary token. The time is followed by a unit,
131         which is either "*h*", "*m*", or "*s*". Maximum lifetime can be limited
132         by zone configuration.
133
134 *--socket=*'path'::
135         Communicate with the subauth daemon through the given socket instead
136         of the default one.
137
138 *--debug*::
139         For wizards: Dump raw communication with the daemon.
140
141
142 SEE ALSO
143 --------
144 *subauthd*(8)