nsd man page on IRIX

Man page or keyword search:  
man Server   31559 pages
apropos Keyword Search (all sections)
Output format
IRIX logo
[printable version]



NSD(1M)								       NSD(1M)

NAME
     nsd - UNS name service daemon

SYNOPSIS
     /usr/etc/nsd [ -nv ] [ -l level ] [ -L facility ] [ -t timeout ] [ -a
     key=value ]

DESCRIPTION
     The Unified Name Service (UNS) provides a generic interface to network
     lookup services.  The daemon provides a filesystem front end to the name
     service namespace, and maintains local cache files.  The services that
     the nsd daemon supports are NIS - the Network Information Service, DNS -
     the Domain Name Service, local configuration files, MDBM, NDBM, and DB -
     local hash files, LDAP - Lightweight Directory Access Protocol.

     By default the nsd daemon is activated at system startup time from the
     /etc/init.d/network startup script if the configuration flag nsd is set
     on (see chkconfig(1M)).  The default options to the daemon can be set by
     changing the file /etc/config/nsd.options.

     The nsd daemon acts as a user level stacked filesystem.  Each request is
     converted into a pathname and an internal filesystem tree is walked to
     find the result.  If any path element does not exist name service library
     routines are called in order until the element is found.  The libraries,
     and the order to use them, are specified in the nsd configuration file
     nsswitch.conf.  For the default domain this is /etc/nsswitch.conf, and
     for domains for which we are a server it would be
     /var/ns/domains/<domainname>/nsswitch.conf (for the given <domainname>).

     Keys which are looked up are cached into local hash files found in
     /var/ns/cache/.  The name service API routine ns_lookup(3N) will check in
     the cache for keys that have already been looked up before calling the
     nsd daemon.  All of the name service library routines such as
     getpwnam(3C), gethostbyname(3N), etc. are built on top of the
     ns_lookup(3) interface.

     The nsd daemon presents the keys through the filesystem in the files
     /ns/domain/table/key.  To lookup the password entry for the root user in
     the domain engr.sgi.com you could simply cat the file:
     /ns/engr.sgi.com/passwd.byname/root.  A special directory .local is
     created for the local domain so the root password entry for the local
     domain can always be found in the file: /ns/.local/passwd.byname/root.  A
     special file .all is created in each table directory which enumerates the
     entire table.  Using 'cat /ns/.local/passwd.byname/.all' would list every
     password entry using all the library routines listed in nsswitch.conf.
     Finally, a special directory .library is created under each table
     directory for each of the libraries listed for that table in
     nsswitch.conf.  Listing every password entry for the local NIS domain can
     be done by: 'cat /ns/.local/passwd.byname/.nis/.all'.

     When the nsd daemon is started it automatically mounts the name service
     namespace onto /ns using the nsmount command.  The ns_lookup() library

									Page 1

NSD(1M)								       NSD(1M)

     routine will always open files under this directory to satisfy the
     requests from name service lookups so this should not be changed.

Attributes
     The nsd daemon uses named attributes attached to the files in its
     internal filesystem to control behavior.  Attributes are inherited from
     parent directories if they do not exist on the individual files.  These
     attributes are usually set from the nsswitch.conf configuration file, but
     global attributes can be set from the command line using the -a option.
     Attributes are key value pairs where both the key and value are strings,
     but may be interpreted internally as character strings, integers or
     booleans.

     Most attributes are library specific, and are listed in the section 7P
     manual page for the protocols, but a few are universal or used by the nsd
     daemon proper.  Attributes that are to be set for all domains for for use
     by nsd must be set on the nsd command line using the -a flag.  Attributes
     that are intended for one library may be set in the appropriate
     nsswitch.conf file.  Attributes that are not supported by a library are
     simply ignored.

     timeout
	  The timeout attribute sets the cache file record timeout in seconds.
	  This should be set to 0 or a positive integer value, the default is
	  300 (five minutes).

     negative_timeout
	  The negative_timeout attribute sets the cache file record timeout in
	  seconds for lookups that failed.  If this attribute is unset (the
	  default) the value of the timeout attribute is used.	This should be
	  set to 0 or a positive integer value, the default is to use the
	  value of the timeout attribute which defaults to 300 seconds.

     lookup_timeout
	  The lookup_timeout attribute controls the time interval during which
	  a file is kept in the tree under /ns after it was last opened by an
	  application. The interval is measured in seconds. If this attribute
	  is unset (the default) the internal file timeout (-t command line
	  option) is used.

     list_timeout
	  The list_timeout attribute controls the time interval during which
	  special enumeration files(.all) are kept in the tree under /ns after
	  they were last opened by an appilcation. It is measured in seconds.
	  If this attribute is unset (the default) the internal file timeout
	  (-t command line option) is used.

     wait_for_server
	  The wait_for_server attribute determines whether nsd should try
	  forever to reach a name server or should fail the request if a
	  server cannot be found.  This is a boolean value which should be set

									Page 2

NSD(1M)								       NSD(1M)

	  to "true" or "false", and defaults to false.

	  NOTE: Users should be aware that if using this attribute, lookups to
	  maps present in /etc/nsswitch.conf on client machines will loop
	  infinitely if using "nis" as the protocol and the map is not present
	  on the NIS server. To prevent this on such maps, make sure nis is
	  not in the protocol list for that map.

     domain
	  The domain attribute is empty by default and sets the default
	  domain.  The interpretation of this varies by protocol.  It should
	  be set to a character string, see the protocol man pages for
	  explanations of how this string is used.

     program
	  The program attribute is the name of the daemon used in printing
	  error messages.  It is automatically set to the character string
	  passed in the environment, and should be considered read only.

     library
	  The library attribute is set to the name of the protocol library, as
	  given in nsswitch.conf, which provided the information.  It should
	  be considered read only.

     hostname
	  The hostname attribute is the primary name of the local system.  It
	  is automatically set by calling hostname(1), and should be
	  considered read only.

     local
	  The local attribute marks part of the tree as being only accessible
	  by the local host.  By default the ".local" domain is marked as
	  local, while all other trees may be remotely read.  This is a
	  boolean value which defaults to "false" for all but the ".local"
	  subtree which defaults to "true".

     mode The mode attribute controls the permissions of the cache files
	  created by nsd.   This should be set to an octal integer value, the
	  default is 0666 and is modified by the nsd processes umask.

     owner
	  The owner attribute controls the owner of the cache files created by
	  nsd.	This should be set to an integer user ID, and the default is
	  0.

     group
	  The group attribute controls the group of the cache files created by
	  nsd.	 This should be set to an integer group ID and the default is
	  0.

									Page 3

NSD(1M)								       NSD(1M)

     cachesize
	  The cachesize attribute controls the fixed size of the cache files
	  created by nsd. This should be either 0 or in the range 3 to 16. The
	  default is 4.	 The formula for computing the resulting cache size
	  is:  (2^n * p), where n is the value of the cachesize parameter and
	  p is the current pagesize.  Using the default values, this formula
	  becomes (2^4 * 4096) or 64KB.

     pagesize
	  The pagesize attribute controls the mdbm pagesize of the cache files
	  created by nsd.   This should be set to an integer power of 2
	  between 8 and 16.  The default is 12 resulting in a 4KB page size.

     casefold
	  The casefold attribute tells the protocol libraries that keys should
	  be dealt with in a case insensitive manner.  The default is unset
	  (false) except for the maps bootparams, ethers.byname, hosts.byname,
	  mail.aliases, and netgroup.byhost which default to "true".   For
	  protocol libraries that can not process keys in a case insensitive
	  manner, the key will be lowercased.

     dynamic
	  The dynamic attribute allows nsd to create and use table names that
	  have not been listed in nsswitch.conf(4).  The dynamic tables are
	  created as subdirectories of the table marked dynamic.  The obvious
	  example would be AutoFS maps.	 The nsswitch.conf line:

	       automount(dynamic): nis ldap

	  instructs nsd to allow tables to be created as subdirectories of the
	  automount directory.	The dynamically created tables inherit all
	  protocol information (nis first followed by ldap) as well as owner
	  and permissions from their parent directory, in this case
	  /ns/.local/automount. Following the filesystem semantics of the nsd
	  interface, the dynamic tables are created with the mkdir(2) system
	  call.

     enumerate_key
	  The enumerate_key attribute requests that the key be added to the
	  line for each item when enumerating a map.  This exists for maps
	  which traditionally did not include the keys but may need to be
	  parsed like the traditional file that they were generated from.
	  These are: automount, bootparams and netgroup.

     no_group_postproc
	  The no_group_postproc attribute instructs nsd to NOT post process
	  group.bymember lookup results. By default, nsd post processes the
	  results of a group.bymember lookup to purge any gids disallowed by
	  entries in /etc/group beginning with '-'. See group(4) man page for
	  more info on disallowing group entries.

	  NOTE: Because the "minus policy" is asserted in /etc/group,

									Page 4

NSD(1M)								       NSD(1M)

	  group.bymember postprocessing is only activated when "files" is one
	  of the listed protocols for the group table in /etc/nsswitch.conf.

     nsmount_options
	  NFS-like options to pass to nsmount(1M) command.

	  NOTE: Because both nsd(1M) and nsmount(1M) use commas are options
	  delimiters, to pass multiple NFS options to nsmount(1M), the options
	  string must be quoted, e.g.

	    nsd -a nsmount_options="timeo=600,vers=2"

ADMINISTRATION
     The command nsadmin(1M) allows for a simple protocol-independent method
     for manipulating the name space and cache files maintained by nsd.

     The nsd cache is normally cleared automatically at boot time, however, it
     can be preserved across reboots by setting the the noclearnsd flag like
     so: "chkconfig -f noclearnsd on".	This flag will not affect the "nsadmin
     restart" command which will clear the cache before restarting nsd.

     The nsd daemon has handlers for a number of signals so that its behavior
     can be controlled while running.  Sending nsd the SIGHUP signal will
     cause the daemon to reread all the nsswitch.conf files and rebuild its
     internal filesystem.  The SIGUSR1 signal will cause the daemon to write a
     listing of its filesystem into the file /var/tmp/nsd.dump which can be
     useful for debugging.  The SIGUSR2 signal will cycle the log level,
     increasing the level one value on each signal through level six, then
     setting it back to zero.  Sending the SIGTERM signal will cause nsd to
     exit cleanly, attempting to unmount the /ns filesystem.

     An example would be if you changed the nsswitch.conf file you would type:
     "killall -HUP nsd" for the changes to take affect.

NSD OPTIONS
     The following options can be specified in /etc/config/nsd.options or on
     the nsd command line:

     -a	 key=value
	  sets the named attribute given by key to the string given by value.
	  See above, and each of the protocol man pages, for interesting
	  attributes with their default and allowable values.

     -l	 level
	  sets the log level to a value from 0 through 6.  The higher the
	  level the more verbose the debug logging.  This defaults to 1, and
	  can be changed at run time by sending the SIGUSR2 signal to the
	  process.  Levels above 2 are primarily for debugging.

									Page 5

NSD(1M)								       NSD(1M)

     -L	 facility
	  sets the logging facility (see syslog(3C)). The default is
	  LOG_DAEMON.  This option is primarily for debugging.

     -n	  tells nsd not to mount the /ns filesystem.

     -t	 timeout
	  sets the internal file timeout to the specified value in seconds.
	  The default is 30 seconds.

     -v	  ``Verbose'' - run the daemon in foreground and display messages to
	  stderr instead of syslog.

FILES
     /etc/config/nsd.options
     /etc/nsswitch.conf
     /var/ns/cache/*
     /var/ns/domains/*
     /var/ns/lib/libns_*.so
     /var/tmp/nsd.dump

BUGS
     Since the nsd daemon uses the NFS protocol to present the data to the
     local system it should never be sent a SIGKILL signal, or be forced to
     exit.  Doing so results in logged messages of the form "NFS3 access
     failed for server localhost (nsd): Timed out".  Cleanly unmounting the
     filesystem or restarting the daemon will stop these messages.

     When the nsd daemon is not running, or not responding the name service
     routines fall back to local files.

SEE ALSO
     ns_lookup(3N), ns_list(3N), nsmount(1M), nsadmin(1M), nsswitch.conf(4),
     chkconfig(1M), dns(7P), nis(7P), files(7P), mdbm(7P), db(7P), ndbm(7P),
     ldap(7P)

									Page 6

[top]

List of man pages available for IRIX

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net