User Commands NIS](1)
NAME
NIS], nis], nis - a new version of the network information
name service
DESCRIPTION
NIS] is a new version of the network information nameser-
vice. This version differs in several significant ways from
version 2, which is referred to as NIS or YP in earlier
releases. Specific areas of enhancement include the ability
to scale to larger networks, security, and the administra-
tion of the service.
The man pages for NIS] are broken up into three basic
categories. Those in section 1 are the user commands that
are most often executed from a shell script or directly from
the command line. Section 1M man pages describe utility com-
mands that can be used by the network administrator to
administer the service itself. The NIS] programming API is
described by man pages in section 3NSL.
All commands and functions that use NIS version 2 are pre-
fixed by the letters yp as in ypmatch(1), ypcat(1),
ypmatch(3NSL), and ypfirst(3NSL). Commands and functions
that use the new replacement software NIS] are prefixed by
the letters nis as in nismatch(1), nischown(1),
nislist(3NSL), and nisaddentry(3NSL). A complete list of
NIS] commands is in the LIST OF COMANDS section.
This man page introduces the NIS] terminology. It also
describes the NIS] namespace, authentication, and authoriza-
tion policies.
NIS] NAMESPACE
The naming model of NIS] is based upon a tree structure.
Each node in the tree corresponds to an NIS] object. There
are six types of NIS] objects: directory, table, group,
link, entry, and private.
NIS] Directory Object
Each NIS] namespace has at least one NIS] directory object.
An NIS] directory is like a UNIX file system directory which
contains other NIS] objects including NIS] directories. The
NIS] directory that forms the root of the NIS] namespace is
called the root directory. There are two special NIS] direc-
tories: orgdir and groupsdir. The orgdir directory con-
sists of all the system-wide administration tables, such as
passwd, hosts, and mailaliases. The groupsdir directory
consists of NIS] group objects which are used for access
control. The collection of orgdir, groupsdir and their
SunOS 5.11 Last change: 2 Dec 2005 1
User Commands NIS](1)
parent directory is referred to as an NIS] domain. NIS]
directories can be arranged in a tree-like structure so that
the NIS] namespace can match the organizational or adminis-
trative hierarchy.
NIS] Table Object
NIS] tables (not files), contained within NIS] directories,
store the actual information about some particular type. For
example, the hosts system table stores information about the
IP address of the hosts in that domain. NIS] tables are mul-
ticolumn and the tables can be searched through any of the
searchable columns. Each table object defines the schema for
its table. The NIS] tables consist of NIS] entry objects.
For each entry in the NIS] table, there is an NIS] entry
object. NIS] entry objects conform to the schema defined by
the NIS] table object.
NIS] Group Object
NIS] group objects are used for access control at group
granularity. NIS] group objects, contained within the
groupsdir directory of a domain, contain a list of all the
NIS] principals within a certain NIS] group. An NIS] princi-
pal is a user or a machine making NIS] requests.
NIS] Link Object
NIS] link objects are like UNIX symbolic file-system links
and are typically used for shortcuts in the NIS] namespace.
Refer to nisobjects(3NSL) for more information about the
NIS] objects.
NIS] NAMES
The NIS] service defines two forms of names, simple names
and indexed names. Simple names are used by the service to
identify NIS] objects contained within the NIS] namespace.
Indexed names are used to identify NIS] entries contained
within NIS] tables. Furthermore, entries within NIS] tables
are returned to the caller as NIS] objects of type entry.
NIS] objects are implemented as a union structure which is
described in the file . The differences
between the various types and the meanings of the components
of these objects are described in nisobjects(3NSL).
Simple Names
Simple names consist of a series of labels that are
separated by the `.'(dot) character. Each label is composed
of printable characters from the ISO Latin 1 set. Each
label can be of any nonzero length, provided that the fully
qualified name is fewer than NISMAXNAMELEN octets including
the separating dots. (See for the actual
value of NISMAXNAMELEN in the current release.) Labels that
SunOS 5.11 Last change: 2 Dec 2005 2
User Commands NIS](1)
contain special characters (see Grammar) must be quoted.
The NIS] namespace is organized as a singly rooted tree.
Simple names identify nodes within this tree. These names
are constructed such that the leftmost label in a name iden-
tifies the leaf node and all of the labels to the right of
the leaf identify that object's parent node. The parent node
is referred to as the leaf's directory. This is a naming
directory and should not be confused with a file system
directory.
For example, the name example.simple.name. is a simple name
with three labels, where example is the leaf node in this
name, the directory of this leaf is simple.name. which by
itself is a simple name. The leaf of which is simple and its
directory is simply name.
The function nisleafof(3NSL) returns the first label of a
simple name. The function nisdomainof(3NSL) returns the
name of the directory that contains the leaf. Iterative use
of these two functions can break a simple name into each of
its label components.
The name `.' (dot) is reserved to name the global root of
the namespace. For systems that are connected to the Inter-
net, this global root is served by a Domain Name Service.
When an NIS] server is serving a root directory whose name
is not `.'(dot) this directory is referred to as a local
root.
NIS] names are said to be fully qualified when the name
includes all of the labels identifying all of the direc-
tories, up to the global root. Names without the trailing
dot are called partially qualified.
Indexed Names
Indexed names are compound names that are composed of a
search criterion and a simple name. The search criterion
component is used to select entries from a table; the simple
name component is used to identify the NIS] table that is to
be searched. The search criterion is a series of column
names and their desired values enclosed in bracket `[]'
characters. These criteria take the following form:
[columnname=value, columnname =value , ... ]
SunOS 5.11 Last change: 2 Dec 2005 3
User Commands NIS](1)
A search criterion is combined with a simple name to form an
indexed name by concatenating the two parts, separated by a
`,'(comma) character as follows.
[ search-criterion ],table.directory
When multiple column name/value pairs are present in the
search criterion, only those entries in the table that have
the appropriate value in all columns specified are returned.
When no column name/value pairs are specified in the search
criterion, [], all entries in the table are returned.
Grammar
The following text represents a context-free grammar that
defines the set of legal NIS] names. The terminals in this
grammar are the characters `.' (dot), `[' (open bracket),
`]' (close bracket), `,' (comma), `=' (equals) and whi-
tespace. Angle brackets (`<' and `>'), which delineate non-
terminals, are not part of the grammar. The character `'
(vertical bar) is used to separate alternate productions and
should be read as ``this production OR this production''.
name ::= .
simple name ::= . .
indexed name ::= ,
search criterion ::= [ ]
attribute list ::= ,
attribute ::= =
string ::= ISO Latin 1 character set except the
character '/' (slash). The initial
character can not be a terminal char-
acter or the characters '@' (at), ']'
(plus), or (`-') hyphen.
Terminals that appear in strings must be quoted with `"'
(double quote). The `"' character can be quoted by quoting
it with itself `""'.
Name Expansion
The NIS] service only accepts fully qualified names. How-
ever, since such names can be unwieldy, the NIS] commands
in section 1 employ a set of standard expansion rules that
attempt to fully qualify a partially qualified name. This
expansion is actually done by the NIS] library function
nisgetnames(3NSL) which generates a list of names using the
SunOS 5.11 Last change: 2 Dec 2005 4
User Commands NIS](1)
default NIS] directory search path or the NISPATH environ-
ment variable. The default NIS] directory search path
includes all the names in its path. nisgetnames() is
invoked by the functions nislookup(3NSL) and nislist(3NSL)
when the EXPANDNAME flag is used.
The NISPATH environment variable contains an ordered list
of simple names. The names are separated by the `:' (colon)
character. If any name in the list contains colons, the
colon should be quoted as described in the Grammar section.
When the list is exhausted, the resolution function returns
the error NISNOTFOUND. This can mask the fact that the name
existed but a server for it was unreachable. If the name
presented to the list or lookup interface is fully quali-
fied, the EXPANDNAME flag is ignored.
In the list of names from the NISPATH environment variable,
the '$' (dollar sign) character is treated specially. Sim-
ple names that end with the label '$' have this character
replaced by the default directory (see
nislocaldirectory(3NSL)). Using "$" as a name in this list
results in this name being replaced by the list of direc-
tories between the default directory and the global root
that contain at least two labels.
Below is an example of this expansion. Given the default
directory of some.long.domain.name., and the NISPATH vari-
able set to fred.bar.:orgdir.$:$. This path is initially
broken up into the list:
1 fred.bar.
2 orgdir.$
3 $
The dollar sign in the second component is replaced by the
default directory. The dollar sign in the third component is
replaced with the names of the directories between the
default directory and the global root that have at least two
labels in them. The effective path value becomes:
1 fred.bar.
SunOS 5.11 Last change: 2 Dec 2005 5
User Commands NIS](1)
2a orgdir.some.long.domain.name.
3a some.long.domain.name.
3b long.domain.name.
3c domain.name.
Each of these simple names is appended to the partially
qualified name that was passed to the nislookup(3NSL) or
nislist(3NSL) interface. Each is tried in turn until
NISUCES is returned or the list is exhausted.
If the NISPATH variable is not set, the path ``$'' is used.
The library function nisgetnames(3NSL) can be called from
user programs to generate the list of names that would be
attempted. The program nisdefaults(1) with the -s option
can also be used to show the fully expanded path.
Concatenation Path
Normally, all the entries for a certain type of information
are stored within the table itself. However, there are times
when it is desirable for the table to point to other tables
where entries can be found. For example, you might want to
store all the IP addresses in the host table for their own
domain, and yet want to be able to resolve hosts in some
other domain without explicitly specifying the new domain
name. NIS] provides a mechanism for concatenating different
but related tables with a "NIS] Concatenation Path". With a
concatenation path, you can create a sort of flat namespace
from a hierarchical structure. You can also create a table
with no entries and just point the hosts or any other table
to its parent domain. Notice that with such a setup, you are
moving the administrative burden of managing the tables to
the parent domain. The concatenation path slows down the
request response time because more tables and more servers
are searched. It also decreases the availability if all the
servers are incapacitated for a particular directory in the
table path.
The NIS] Concatenation Path is also referred to as the
"table path". This path is set up at table creation time
through nistbladm(1). You can specify more than one table to
SunOS 5.11 Last change: 2 Dec 2005 6
User Commands NIS](1)
be concatenated and they are searched in the given order.
Notice that the NIS] client libraries, by default, do not
follow the concatenation path set in site-specific tables.
Refer to nislist(3NSL) for more details.
Namespaces
The NIS] service defines two additional disjoint namespaces
for its own use. These namespaces are the NIS] Principal
namespace, and the NIS] Group namespace. The names associ-
ated with the group and principal namespaces are syntacti-
cally identical to simple names. However, the information
they represent cannot be obtained by directly presenting
these names to the NIS] interfaces. Instead, special inter-
faces are defined to map these names into NIS] names so that
they can then be resolved.
Principal Names
NIS] principal names are used to uniquely identify users and
machines that are making NIS] requests. These names have the
form:
principal.domain
Here domain is the fully qualified name of an NIS] directory
where the named principal's credentials can be found. See
Directories and Domains for more information on domains.
Notice that in this name, principal, is not a leaf in the
NIS] namespace.
Credentials are used to map the identity of a host or user
from one context such as a process UID into the NIS] con-
text. They are stored as records in an NIS] table named
cred, which always appears in the orgdir subdirectory of
the directory named in the principal name.
This mapping can be expressed as a replacement function:
principal.domain ->[cname=principal.domain ],cred.orgdir.domain
This latter name is an NIS] name that can be presented to
the nislist(3NSL) interface for resolution. NIS] principal
names are administered using the nisaddcred(1M) command.
SunOS 5.11 Last change: 2 Dec 2005 7
User Commands NIS](1)
The cred table contains five columns named cname, authname,
authtype, publicdata, and privatedata. There is one
record in this table for each identity mapping for an NIS]
principal. The current service supports three types of map-
pings:
LOCAL This mapping is used to map from the UID of a
given process to the NIS] principal name associ-
ated with that UID. If no mapping exists, the
name nobody is returned. When the effective UID
of the process is 0 (for example, the
superuser), the NIS] name associated with the
host is returned. Notice that UIDs are sensi-
tive to the context of the machine on which the
process is executing.
DES This mapping is used to map to and from a Secure
RPC ``netname'' into an NIS] principal name. See
securerpc(3NSL) for more information on net-
names. Notice that since netnames contain the
notion of a domain, they span NIS] directories.
DHnnn-m Example: DH640-0, DH1024-0. Analogous to DES
mappings, these are used to map netnames and
NIS] principal names for extended Diffie-Hellman
keys. See nisauthconf(1M) for further informa-
tion.
The NIS] client library function nislocalprincipal(3NSL)
uses the cred.orgdir table to map the UNIX notion of an
identity, a process' UID, into an NIS] principal name.
Shell programs can use the program nisdefaults(1) with the
-p switch to return this information.
Mapping from UIDs to an NIS] principal name is accomplished
by constructing a query of the form:
[authtype=LOCAL, authname=uid],cred.orgdir.default-
domain.
This query returs a record containing the NIS] principal
name associated with this UID, in the machine's default
domain.
SunOS 5.11 Last change: 2 Dec 2005 8
User Commands NIS](1)
The NIS] service uses the DES mapping to map the names
associated with Secure RPC requests into NIS] principal
names. RPC requests that use Secure RPC include the netname
of the client making the request in the RPC header. This
netname has the form:
unix.UID@domain
The service constructs a query using this name of the form:
[authtype=DES, authname=netname],cred.orgdir.domain.
where the domain part is extracted from the netname rather
than using the default domain. This query is used to look up
the mapping of this netname into an NIS] principal name in
the domain where it was created.
This mechanism of mapping UID and netnames into an NIS]
principal name guarantees that a client of the NIS] service
has only one principal name. This principal name is used as
the basis for authorization which is described below. All
objects in the NIS] namespace and all entries in NIS] tables
must have an owner specified for them. This owner field
always contains an NIS] principal name.
Group Names
Like NIS] principal names, NIS] group names take the form:
groupname.domain
All objects in the NIS] namespace and all entries in NIS]
tables can optionally have a group owner specified for them.
This group owner field, when filled in, always contains the
fully qualified NIS] group name.
The NIS] client library defines several interfaces
(nisgroups(3NSL)) for dealing with NIS] groups. These
interfaces internally map NIS] group names into an NIS] sim-
ple name which identifies the NIS] group object associated
with that group name. This mapping can be shown as follows:
group.domain -> group.groupsdir.domain
SunOS 5.11 Last change: 2 Dec 2005 9
User Commands NIS](1)
This mapping eliminates collisions between NIS] group names
and NIS] directory names. For example, without this mapping,
a directory with the name engineering.foo.com., would make
it impossible to have a group named engineering.foo.com..
This is due to the restriction that within the NIS]
namespace, a name unambiguously identifies a single object.
With this mapping, the NIS] group name engineering.foo.com.
maps to the NIS] object name engineering.groupsdir.foo.com.
The contents of a group object is a list of NIS] principal
names, and the names of other NIS] groups. See
nisgroups(3NSL) for a more complete description of their
use.
NIS] SECURITY
NIS] defines a security model to control access to informa-
tion managed by the service. The service defines access
rights that are selectively granted to individual clients or
groups of clients. Principal names and group names are used
to define clients and groups of clients that can be granted
or denied access to NIS] information. These principals and
groups are associated with NIS] domains as defined below.
The security model also uses the notion of a class of prin-
cipals called nobody, which contains all clients, whether or
not they have authenticated themselves to the service. The
class world includes any client who has been authenticated.
Directories and Domains
Some directories within the NIS] namespace are referred to
as NIS] Domains. Domains are those NIS] directories that
contain the subdirectories groupsdir and orgdir. Further,
the subdirectory orgdir should contain the table named
cred. NIS] Group names and NIS] Principal names always
include the NIS] domain name after their first label.
Authentication
The NIS] name service uses Secure RPC for the integrity of
the NIS] service. This requires that users of the service
and their machines must have a Secure RPC key pair associ-
ated with them. This key is initially generated with either
the nisaddcred(1M) or nisclient(1M) commands and modified
with the chkey(1) or nispasswd(1) commands.
The use of Secure RPC allows private information to be
stored in the name service that is not available to
untrusted machines or users on the network.
SunOS 5.11 Last change: 2 Dec 2005 10
User Commands NIS](1)
In addition to the Secure RPC key, users need a mapping of
their UID into an NIS] principal name. This mapping is
created by the system administrator using either the
nisclient(1M) or the nisaddcred(1M) command.
Users that are using machines in several NIS] domains must
insure that they have a local credential entry in each of
those domains. This credential should be created with the
NIS] principal name of the user in the user's ``home''
domain. For the purposes of NIS] and Secure RPC, the home
domain is defined to be the one where the user's Secure RPC
key pair is located.
Although extended Diffie-Hellman keys use an alternative to
Secure RPC, administration is done through the same com-
mands. See nisauthconf(1M).
Authorization
The NIS] service defines four access rights that can be
granted or denied to clients of the service. These rights
are read, modify, create, and destroy. These rights are
specified in the object structure at creation time and can
be modified later with the nischmod(1) command. In general,
the rights granted for an object apply only to that object.
However, for purposes of authorization, rights granted to
clients reading directory and table objects are granted to
those clients for all of the objects ``contained'' by the
parent object. This notion of containment is abstract. The
objects do not actually contain other objects within them.
Notice that group objects do contain the list of principals
within their definition.
Access rights are interpreted as follows:
read This right grants read access to an object. For
directory and table objects, having read access
on the parent object conveys read access to all
of the objects that are direct children of a
directory, or entries within a table.
modify This right grants modification access to an
existing object. Read access is not required for
modification. However, in many applications, one
needs to read an object before modifying it. Such
modify operations fail unless read access is also
granted.
SunOS 5.11 Last change: 2 Dec 2005 11
User Commands NIS](1)
create This right gives a client permission to create
new objects where one had not previously existed.
It is only used in conjunction with directory
and table objects. Having create access for a
table allows a client to add additional entries
to the table. Having create access for a direc-
tory allows a client to add new objects to an
NIS] directory.
destroy This right gives a client permission to destroy
or remove an existing object or entry. When a
client attempts to destroy an entry or object by
removing it, the service first checks to see if
the table or directory containing that object
grants the client destroy access. If it does, the
operation proceeds, if the containing object does
not grant this right then the object itself is
checked to see if it grants this right to the
client. If the object grants the right, then the
operation proceeds; otherwise the request is
rejected.
Each of these rights can be granted to any one of four dif-
ferent categories.
owner A right can be granted to the owner of an
object. The owner is the NIS] principal
identified in the owner field. The owner
can be changed with the nischown(1) command.
Notice that if the owner does not have
modification access rights to the object,
the owner cannot change any access rights to
the object, unless the owner has modifica-
tion access rights to its parent object.
group owner A right can be granted to the group owner
of an object. This grants the right to any
principal that is identified as a member of
the group associated with the object. The
group owner can be changed with the
nischgrp(1) command. The object owner need
not be a member of this group.
world A right can be granted to everyone in the
world. This grants the right to all clients
who have authenticated themselves with the
service.
SunOS 5.11 Last change: 2 Dec 2005 12
User Commands NIS](1)
nobody A right can be granted to the nobody prin-
cipal. This has the effect of granting the
right to any client that makes a request of
the service, regardless of whether they are
authenticated or not.
Notice that for bootstrapping reasons, directory objects
that are NIS] domains, the orgdir subdirectory and the cred
table within that subdirectory must have read access to the
nobody principal. This makes navigation of the namespace
possible when a client is in the process of locating its
credentials. Granting this access does not allow the con-
tents of other tables within orgdir to be read (such as the
entries in the password table) unless the table itself gives
"real" access rights to the nobody principal.
Directory Authorization
Additional capabilities are provided for granting access
rights to clients for directories. These rights are con-
tained within the object access rights (OAR) structure of
the directory. This structure allows the NIS] service to
grant rights that are not granted by the directory object to
be granted for objects contained by the directory of a
specific type.
An example of this capability is a directory object which
does not grant create access to all clients, but does grant
create access in the OAR structure for group type objects to
clients who are members of the NIS] group associated with
the directory. In this example the only objects that could
be created as children of the directory would have to be of
the type group.
Another example is a directory object that grants create
access only to the owner of the directory, and then addi-
tionally grants create access through the OAR structure for
objects of type table, link, group, and private to any
member of the directory's group. This has the effect of giv-
ing nearly complete create access to the group with the
exception of creating subdirectories. This restricts the
creation of new NIS] domains because creating a domain
requires creating both a groupsdir and orgdir subdirec-
tory.
Notice that there is currently no command line interface to
set or change the OAR of the directory object.
SunOS 5.11 Last change: 2 Dec 2005 13
User Commands NIS](1)
Table Authorization
As with directories, additional capabilities are provided
for granting access to entries within tables. Rights
granted to a client by the access rights field in a table
object apply to the table object and all of the entry
objects ``contained'' by that table. If an access right is
not granted by the table object, it can be granted by an
entry within the table. This holds for all rights except
create.
For example, a table can not grant read access to a client
performing a nislist(3NSL) operation on the table. However,
the access rights field of entries within that table can
grant read access to the client. Notice that access rights
in an entry are granted to the owner and group owner of the
entry and not the owner or group of the table. When the list
operation is performed, all entries that the client has read
access to are returned. Those entries that do not grant read
access are not returned. If none of the entries that match
the search criterion grant read access to the client making
the request, no entries are returned and the result status
contains the NISNOTFOUND error code.
Access rights that are granted by the rights field in an
entry are granted for the entire entry. However, in the
table object an additional set of access rights is main-
tained for each column in the table. These rights apply to
the equivalent column in the entry. The rights are used to
grant access when neither the table nor the entry itself
grant access. The access rights in a column specification
apply to the owner and group owner of the entry rather than
the owner and group owner of the table object.
When a read operation is performed, if read access is not
granted by the table and is not granted by the entry but is
granted by the access rights in a column, that entry is
returned with the correct values in all columns that are
readable and the string *NP* (No Permission) in columns
where read access is not granted.
As an example, consider a client that has performed a list
operation on a table that does not grant read access to that
client. Each entry object that satisfied the search cri-
terion specified by the client is examined to see if it
grants read access to the client. If it does, it is included
in the returned result. If it does not, then each column is
checked to see if it grants read access to the client. If
any columns grant read access to the client, data in those
SunOS 5.11 Last change: 2 Dec 2005 14
User Commands NIS](1)
columns is returned. Columns that do not grant read access
have their contents replaced by the string *NP*. If none of
the columns grant read access, then the entry is not
returned.
Protocol Operation Authorization
Most NIS] operations have implied access control through the
permissions on the objects that they manipulate. For exam-
ple, in order to read an entry in a table, you must have
read permission on that entry. However, some NIS] operations
by default perform no access checking at all and so are
allowed for anyone.
Operation Example of commands that use the operation
NISCHECKPOINT nisping -C
NISCPTIME nisping, rpc.nisd
NISMKDIR nismkdir
NISPING nisping, rpc.nisd
NISRMDIR nisrmdir
NISERVSTATE nisbackup, nisrestore
NISTATUS nisstat, rpc.nispasswdd
See nisopaccess(1) for a description of how to enforce
access control to these NIS] operations.
LIST OF COMANDS
The following lists all commands and programming functions
related to NIS]:
NIS] User Commands
nisaddent(1M) add /etc files and NIS maps into
their corresponding NIS] tables
niscat(1) display NIS] tables and objects
SunOS 5.11 Last change: 2 Dec 2005 15
User Commands NIS](1)
nischgrp(1) change the group owner of a NIS] object
nischmod(1) change access rights on a NIS] object
nischown(1) change the owner of a NIS] object
nischttl(1) change the time to live value of a NIS]
object
nisdefaults(1) display NIS] default values
niserror(1) display NIS] error messages
nisgrep(1) utilities for searching NIS] tables
nisgrpadm(1) NIS] group administration command
nisln(1) symbolically link NIS] objects
nisls(1) list the contents of a NIS] directory
nismatch(1) utilities for searching NIS] tables
nismkdir(1) create NIS] directories
nisopaccess(1) access control for protocol operations
nispasswd(1) change NIS] password information
nisrm(1) remove NIS] objects from the namespace
nisrmdir(1) remove NIS] directories
nisshowcache(1M) NIS] utility to print out the contents
of the shared cache file
SunOS 5.11 Last change: 2 Dec 2005 16
User Commands NIS](1)
nistbladm(1) NIS] table administration command
nistest(1) return the state of the NIS] namespace
using a conditional expression
NIS] Administrative Commands
aliasadm(1M) manipulate the NIS] aliases map
niscachemgr(1M) NIS] utility to cache location
information about NIS] servers
nisaddcred(1M) create NIS] credentials
nisaddent(1M) create NIS] tables from correspond-
ing /etc files or NIS] maps
nisauthconf(1M) configure extended Diffie-Hellman
keys
nisbackup(1M) backup NIS] directories
nisclient(1M) initialize NIS] credentials for NIS]
principals
nisd(1M) NIS] service daemon
nisdresolv(1M) NIS] service daemon
nisinit(1M) NIS] client and server initializa-
tion utility
nislog(1M) display the contents of the NIS]
transaction log
nisping(1M) send ping to NIS] servers
nispopulate(1M) populate the NIS] tables in a NIS]
domain
SunOS 5.11 Last change: 2 Dec 2005 17
User Commands NIS](1)
nisprefadm(1M) NIS] utility to set server prefer-
ences for NIS] clients
nisrestore(1M) restore NIS] directory backup
nisserver(1M) set up NIS] servers
nissetup(1M) initialize a NIS] domain
nisshowcache(1M) NIS] utility to print out the con-
tents of the shared cache file
nisstat(1M) report NIS] server statistics
nisupdkeys(1M) update the public keys in a NIS]
directory object
rpc.nisd(1M) NIS] service daemon
rpc.nisdresolv(1M) NIS] service daemon
sysidns(1M) system configuration
NIS] Programming API
nisadd(3NSL)
NIS] namespace functions
nisaddentry(3NSL)
NIS] table functions
nisaddmember(3NSL)
NIS] group manipulation functions
nischeckpoint(3NSL)
misellaneous NIS] log administration functions
SunOS 5.11 Last change: 2 Dec 2005 18
User Commands NIS](1)
niscloneobject(3NSL)
NIS] subroutines
niscreategroup(3NSL)
NIS] group manipulation functions
nisdestroyobject(3NSL)
NIS] subroutines
nisdestroygroup(3NSL)
NIS] group manipulation functions
nisdircmp(3NSL)
NIS] subroutines
nisdomainof(3NSL)
NIS] subroutines
niserror(3NSL)
display NIS] error messages
nisfirstentry(3NSL)
NIS] table functions
nisfreenames(3NSL)
NIS] subroutines
nisfreeresult(3NSL)
NIS] namespace functions
nisfreeservlist(3NSL)
SunOS 5.11 Last change: 2 Dec 2005 19
User Commands NIS](1)
miscellaneous NIS] functions
nisfreetags(3NSL)
miscellaneous NIS] functions
nisgetnames(3NSL)
NIS] subroutines
nisgetservlist(3NSL)
miscellaneous NIS] functions
nisgroups(3NSL)
NIS] group manipulation functions
nisismember(3NSL)
NIS] group manipulation functions
nisleafof(3NSL)
NIS] subroutines
nislerror(3NSL)
display some NIS] error messages
nislist(3NSL)
NIS] table functions
nislocaldirectory(3NSL)
NIS] local names
nislocalgroup(3NSL)
NIS] local names
SunOS 5.11 Last change: 2 Dec 2005 20
User Commands NIS](1)
nislocalhost(3NSL)
NIS] local names
nislocalnames(3NSL)
NIS] local names
nislocalprincipal(3NSL)
NIS] local names
nislookup(3NSL)
NIS] namespace functions
nismkdir(3NSL)
miscellaneous NIS] functions
nismodify(3NSL)
NIS] namespace functions
nismodifyentry(3NSL)
NIS] table functions
nisnameof(3NSL)
NIS] subroutines
nisnames(3NSL)
NIS] namespace functions
nisnextentry(3NSL)
NIS] table functions
nisobjects(3NSL)
SunOS 5.11 Last change: 2 Dec 2005 21
User Commands NIS](1)
NIS] object formats
nisperror(3NSL)
display NIS] error messages
nisping(3NSL)
miscellaneous NIS] log administration functions
nisprintgroupentry(3NSL)
NIS] group manipulation functions
nisprintobject(3NSL)
NIS] subroutines
nisremove(3NSL)
NIS] namespace functions
nisremoveentry(3NSL)
NIS] table functions
nisremovemember(3NSL)
NIS] group manipulation functions
nisrmdir(3NSL)
miscellaneous NIS] functions
nisserver(3NSL)
miscellaneous NIS] functions
nisservstate(3NSL)
miscellaneous NIS] functions
SunOS 5.11 Last change: 2 Dec 2005 22
User Commands NIS](1)
nissperrno(3NSL)
display NIS] error messages
nissperror(3NSL)
display NIS] error messages
nissperrorr(3NSL)
display NIS] error messages
nisstats(3NSL)
miscellaneous NIS] functions
nissubr(3NSL)
NIS] subroutines
nistables(3NSL)
NIS] table functions
nisverifygroup(3NSL)
NIS] group manipulation functions
NIS] Files and Directories
nisfiles(4) NIS] database files and directory structure
FILES
protocol description of an NIS]
object
defines the NIS] protocol using
the RPC language as described in
the ONC] Developer's Guide
should be included by all clients
of the NIS] service
SunOS 5.11 Last change: 2 Dec 2005 23
User Commands NIS](1)
SEE ALSO
nischown(1), nisdefaults(1), nismatch(1), nisopaccess(1),
nispasswd(1), newkey(1M), nisaddcred(1M), nisauthconf(1M),
nisclient(1M), nispopulate(1M), nisserver(1M),
nisaddentry(3NSL), nisdomainof(3NSL),
nisgetnames(3NSL), nisgroups(3NSL), nisleafof(3NSL),
nislist(3NSL), nislocaldirectory(3NSL), nislookup(3NSL),
nisobjects(3NSL)
System Administration Guide: Naming and Directory Services
(DNS, NIS, and LDAP)
Describes how to make the transition from NIS to NIS].
ONC] Developer's Guide
Describes the application programming interfaces for
networks including NIS].
System Administration Guide: Naming and Directory Services
(DNS, NIS, and LDAP)
Describes how to plan for and configure an NIS]
namespace.
System Administration Guide: IP Services
Describes IPv6 extensions to Solaris name services.
NOTES
NIS] might not be supported in future releases of the
Solaris operating system. Tools to aid the migration from
NIS] to LDAP are available in the current Solaris release.
For more information, visit
http:/www.sun.com/directory/nisplus/transition.html.
SunOS 5.11 Last change: 2 Dec 2005 24
|