1 .\" $NetBSD: nsswitch.conf.5,v 1.14 1999/03/17 20:19:47 garbled Exp $
3 .\" Copyright (c) 1997, 1998, 1999 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
6 .\" This code is derived from software contributed to The NetBSD Foundation
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\" notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\" notice, this list of conditions and the following disclaimer in the
16 .\" documentation and/or other materials provided with the distribution.
17 .\" 3. All advertising materials mentioning features or use of this software
18 .\" must display the following acknowledgement:
19 .\" This product includes software developed by Luke Mewburn.
20 .\" 4. The name of the author may not be used to endorse or promote products
21 .\" derived from this software without specific prior written permission.
23 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28 .\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
29 .\" OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
30 .\" ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
31 .\" TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
32 .\" USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41 .Nd name-service switch configuration file
45 file specifies how the
47 (name-service switch dispatcher) routines in the C library should operate.
49 The configuration file controls how a process looks up various databases
50 containing information regarding hosts, users (passwords), groups, etc.
51 Each database comes from a source (such as local files, DNS,
53 and cache), and the order to look up the sources is specified in
58 consists of a database name, and a space separated list of sources.
59 Each source can have an optional trailing criterion that determines
60 whether the next listed source is used, or the search terminates at
62 Each criterion consists of one or more status codes, and actions to
63 take if that status code occurs.
65 The following sources are implemented:
67 .Bl -tag -width Source -compact
76 Internet Domain Name System.
82 class entries, all other databases use
84 class (Hesiod) entries.
95 If this is present, it must be the only source for that entry.
102 The following databases are used by the following C library functions:
104 .Bl -tag -width networks -compact
116 .Xr gethostbyaddr 3 ,
117 .Xr gethostbyaddr_r 3 ,
118 .Xr gethostbyname 3 ,
119 .Xr gethostbyname2 3 ,
120 .Xr gethostbyname_r 3 ,
121 .Xr getipnodebyaddr 3 ,
122 .Xr getipnodebyname 3
125 .Xr getnetbyaddr_r 3 ,
141 .Xr getrpcbynumber 3 ,
145 .Xr getprotobynumber 3 ,
149 The following status codes are available:
151 .Bl -tag -width tryagain -compact
155 The requested entry was found.
157 The entry is not present at this source.
159 The source is busy, and may respond to retries.
161 The source is not responding, or entry is corrupt.
164 For each of the status codes, one of two actions is possible:
166 .Bl -tag -width continue -compact
172 Return with the current result
177 description of the syntax of
181 .Bl -tag -width <criterion> -compact
184 <database> ":" [<source> [<criteria>]]*
190 <status> "=" <action>
193 "success" | "notfound" | "unavail" | "tryagain"
196 "return" | "continue"
199 Each entry starts on a new line in the file.
202 delimits a comment to end of line.
203 Blank lines are ignored.
206 at the end of a line escapes the newline, and causes the next line to
207 be a continuation of the current line.
208 All entries are case-insensitive.
210 The default criteria is to return on
212 and continue on anything else (i.e,
213 .Li "[success=return notfound=continue unavail=continue tryagain=continue]" ) .
215 You can enable caching for the particular database by specifying
217 as the first source in the
220 You should also enable caching for this database in
222 If for the particular query
224 source returns success, no further sources are queried.
225 On the other hand, if there are no previously cached data, the
226 query result will be placed into the cache right after
227 all other sources are processed.
232 daemon to be running.
233 .Ss Compat mode: +/- syntax
234 In historical multi-source implementations, the
238 characters are used to specify the importing of user password and
239 group information from
243 provides alternative methods of accessing distributed sources such as
245 specifying a sole source of
247 will provide the historical behaviour.
249 An alternative source for the information accessed via
251 can be used by specifying
252 .Dq passwd_compat: source .
258 any other source except for
263 Historically, many of the databases had enumeration functions, often of
266 These made sense when the databases were in local files, but do not make
267 sense or have lesser relevance when there are possibly multiple sources,
268 each of an unknown size.
269 The interfaces are still provided for compatibility, but the source
270 may not be able to provide complete entries, or duplicate entries may
271 be retrieved if multiple sources that contain similar information are
274 To ensure compatibility with previous and current implementations, the
276 source must appear alone for a given database.
277 .Ss Default source lists
280 does not exist, or it has missing or corrupt entries,
282 will default to an entry of
284 for the requested database.
287 .Bl -tag -width services_compat -compact
289 .Sy "Default source list"
306 .Bl -tag -width /etc/nsswitch.conf -compact
307 .It Pa /etc/nsswitch.conf
314 To lookup hosts in cache, then in
316 and then from the DNS, and lookup user information from
320 .Bl -tag -width passwd: -compact
324 nis [notfound=return] files
326 nis [notfound=return] files
330 .Dq [notfound=return]
331 sets a policy of "if the user is notfound in nis, do not try files."
332 This treats nis as the authoritative source of information, except
333 when the server is down.
335 If system got compiled with
343 provides stubs for compatibility with NSS modules
349 However, these stubs only support the use of the
364 file format first appeared in
366 It was imported from the
368 Project, where it appeared first in
373 wrote this freely distributable name-service switch implementation,