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

操作系统开发

开发平台:

C/C++

  1. HOSTS(5)                  Minix Programmer's Manual                   HOSTS(5)
  2. NAME
  3.      hosts - hostname to IP address database
  4. SYNOPSIS
  5.      /etc/hosts
  6. DESCRIPTION
  7.      The hosts  database  lists  the  IP  addresses  and  the  hostnames  that
  8.      translate  to  these IP addresses.  It is used by nonamed(8) in a network
  9.      without name servers.  A simple /etc/hosts may look like this:
  10.           127.0.0.1      localhost
  11.           192.9.200.1    darask
  12.           192.9.200.2    burask
  13.      The localhost entry lists a special address that refers to the local host
  14.      itself  (a  kind  of  /dev/tty  for  hosts.)   You should only list it if
  15.      nonamed needs it!  The other entries are actual machines.  The  file  may
  16.      contain comments marked with '#'.
  17.      You can have aliases (more hostnames on the same line),  but  it  is  not
  18.      recommended,  because  nonamed  can't present them to the system as CNAME
  19.      records.  An often seen form like
  20.           192.9.200.1    darask.home.cs.vu.nl  darask
  21.      is harmless though, and has the small advantage  that  you  can  use  the
  22.      short name in /etc/ethers so rarpd can match it at boot time.
  23. FILES
  24.      /etc/hosts     Hosts database.
  25. SEE ALSO
  26.      ethers(5), nonamed(8), rarpd(8), boot(8).
  27. AUTHOR
  28.      Kees J. Bot (kjb@cs.vu.nl)
  29.                                                                              1