Initial import from FreeBSD RELENG_4:
[dragonfly.git] / usr.sbin / ypset / ypset.8
1 .\"
2 .\" Copyright (c) 1994 Jason R. Thorpe
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\" 3. All advertising materials mentioning features or use of this software
14 .\"    must display the following acknowledgement:
15 .\"     This product includes software developed by Jason Thorpe.
16 .\" 4. Neither the name of the author nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\" $FreeBSD: src/usr.sbin/ypset/ypset.8,v 1.7.2.3 2003/03/11 22:31:35 trhodes Exp $
33 .\"
34 .Dd October 25, 1994
35 .Dt YPSET 8
36 .Os
37 .Sh NAME
38 .Nm ypset
39 .Nd tell
40 .Xr ypbind 8
41 which YP server process to use
42 .Sh SYNOPSIS
43 .Nm
44 .Op Fl h Ar host
45 .Op Fl d Ar domain
46 .Ar server
47 .Sh DESCRIPTION
48 The
49 .Nm
50 utility tells the
51 .Xr ypbind 8
52 process on the current machine which YP server process to communicate with.
53 If
54 .Ar server
55 is down or is not running a YP server process, it is not discovered until
56 a YP client process attempts to access a YP map, at which time
57 .Xr ypbind 8
58 tests the binding and takes appropriate action.
59 .Pp
60 The
61 .Nm
62 utility
63 is most useful for binding a YP client that is not on the same broadcast
64 network as the closest YP server, but can also be used for debugging
65 a local network's YP configuration, testing specific YP client
66 programs, or binding to a specific server when there are many servers on
67 the local network supplying YP maps.
68 .Pp
69 The options are as follows:
70 .Bl -tag -width indent
71 .It Fl h Ar host
72 Set the YP binding on
73 .Ar host
74 instead of the local machine.
75 .It Fl d Ar domain
76 Use the YP domain
77 .Ar domain
78 instead of the default domain as returned by
79 .Xr domainname 1 .
80 .El
81 .Sh SEE ALSO
82 .Xr domainname 1 ,
83 .Xr ypcat 1 ,
84 .Xr ypmatch 1 ,
85 .Xr yp 8 ,
86 .Xr ypbind 8
87 .Sh AUTHORS
88 .An Theo De Raadt