1CONSERVER.PASSWD(5) conserver CONSERVER.PASSWD(5)
2
3
4
6 conserver.passwd - user access information for conserver(8)
7
9 username:password
10
12 The conserver.passwd file is the user authentication and authorization
13 file for conserver(8). Upon each incoming client connection, conserver
14 opens and reads the conserver.passwd file, so edits to the file take
15 effect immediately. It reads only until the first username match.
16
17 Blank lines and comment lines (those beginning with a ``#'' and
18 optional leading whitespace) are ignored. Non-ignored lines beginning
19 with whitespace are considered continuations of the previous line.
20 This allows you to span one logical line over many physical lines and
21 insert comments wherever appropriate.
22
23 Each logical line consists of two colon-separated fields. Leading and
24 trailing white space in each field is ignored.
25
26 username
27 the login name of the authorized user, or the string ``*any*''
28 to match any user. This is compared against the name sent by
29 the console client, based either on the user's identity or on
30 the -l option. Since conserver only uses the first username
31 match, a ``*any*'' entry will apply to any user without an entry
32 earlier in the file.
33
34 password
35 the encrypted password, or the string ``*passwd*'' to indicate
36 that conserver should look up the user's password in the system
37 passwd (or shadow) database. If PAM support has been enabled
38 (--with-pam), PAM lookups will be done instead of passwd (or
39 shadow) lookups (you may need to edit /etc/pam.conf or create
40 /etc/pam.d/conserver). If this field is empty, password check‐
41 ing is bypassed for this user.
42
44 mary:r71mXjfALB5Ak Mary uses the password specified above; it does
45 not matter whether she has a login on the con‐
46 server host.
47
48 fred:*passwd* Fred may connect only with his regular login
49 password on the conserver host.
50
51 bozo:* Bozo is only allowed to access a console if his
52 password isn't used (since it's invalid) which
53 means he needs to come from a trusted host.
54
55 *any*:*passwd* Anyone not listed above uses their regular
56 login and password.
57
59 console(1), conserver.cf(5), conserver(8)
60
62 There is currently no way provided by the conserver package to generate
63 the encrypted password strings besides copying them from the system
64 passwd database or running crypt(3) via C or perl or some other lan‐
65 guage that supports it.
66
67
68
69conserver-8.2.2 2018/05/28 CONSERVER.PASSWD(5)