RESOLVER.5
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:4k
源码类别:

操作系统开发

开发平台:

C/C++

  1. RESOLVER(5)               Minix Programmer's Manual                RESOLVER(5)
  2. NAME
  3.      resolver - resolver configuration file
  4. SYNOPSIS
  5.      /etc/resolv.conf
  6. DESCRIPTION
  7.      The resolver is a set of routines  in  the  C  library  (resolv(3))  that
  8.      provide  access  to  the  Internet  Domain  Name  System.   The  resolver
  9.      configuration file contains information that  is  read  by  the  resolver
  10.      routines  the  first  time  they  are  invoked by a process.  The file is
  11.      designed to be human readable and contains a list of keywords with values
  12.      that provide various types of resolver information.
  13.      On a normally configured system this file should not be  necessary.   The
  14.      only  name  server to be queried will be on the local machine, the domain
  15.      name is determined from the host name, and  the  domain  search  path  is
  16.      constructed from the domain name.
  17.      The different configuration options are:
  18.      nameserver
  19.           Internet address (in  dot  notation)  of  a  name  server  that  the
  20.           resolver  should  query.  Up to MAXNS (currently 3) name servers may
  21.           be listed, one per keyword.  If  there  are  multiple  servers,  the
  22.           resolver library queries them in the order listed.  If no nameserver
  23.           entries are present, the default is to use the name  server  on  the
  24.           local  machine.  (The algorithm used is to try a name server, and if
  25.           the query times out, try the next, until out of name  servers,  then
  26.           repeat trying all the name servers until a maximum number of retries
  27.           are made).
  28.      domain
  29.           Local domain name.  Most queries for names within  this  domain  can
  30.           use short names relative to the local domain.  If no domain entry is
  31.           present, the domain is determined from the local host name  returned
  32.           by  gethostname(2);  the domain part is taken to be everything after
  33.           the first `.'.  Finally, if the host name does not contain a  domain
  34.           part, the root domain is assumed.
  35.      search
  36.           Search list for host-name  lookup.   The  search  list  is  normally
  37.           determined  from  the  local domain name; by default, it begins with
  38.           the local domain name, then successive parent domains that  have  at
  39.           least two components in their names.  This may be changed by listing
  40.           the desired domain search path following  the  search  keyword  with
  41.           spaces  or tabs separating the names.  Most resolver queries will be
  42.           attempted using each component of the search path in  turn  until  a
  43.           match  is  found.   Note  that  this  process  may  be slow and will
  44. 4BSD                            December 14, 1989                            1
  45. RESOLVER(5)               Minix Programmer's Manual                RESOLVER(5)
  46.           generate a lot of network traffic if  the  servers  for  the  listed
  47.           domains  are  not local, and that queries will time out if no server
  48.           is available for one of the domains.
  49.           The search list is currently limited to six domains with a total  of
  50.           256 characters.
  51.      The domain and search keywords are mutually exclusive.  If more than  one
  52.      instance of these keywords is present, the last instance will override.
  53.      The keyword and value must appear on a single line, and the keyword (e.g.
  54.      nameserver)  must  start  the  line.   The  value  follows  the  keyword,
  55.      separated by white space.
  56. FILES
  57.      /etc/resolv.conf
  58. SEE ALSO
  59.      gethostbyname(3N), resolver(3), hostname(7), named(8)
  60.      Name Server Operations Guide for BIND
  61. 4BSD                            December 14, 1989                            2