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

操作系统开发

开发平台:

WINDOWS

  1. .TH HOSTS 5
  2. .SH NAME
  3. hosts - hostname to IP address database
  4. .SH SYNOPSIS
  5. .B /etc/hosts
  6. .SH DESCRIPTION
  7. The hosts database lists the IP addresses and the hostnames that translate
  8. to these IP addresses.  It is used by
  9. .BR nonamed (8)
  10. in a network without name servers.  A simple
  11. .B /etc/hosts
  12. may look like this:
  13. .PP
  14. .RS
  15. .ta +15n +10n
  16. .nf
  17. 127.0.0.1 localhost
  18. 192.9.200.1 darask
  19. 192.9.200.2 burask
  20. .fi
  21. .RE
  22. .PP
  23. The localhost entry lists a special address that refers to the local host
  24. itself (a kind of /dev/tty for hosts.)  You should only list it if
  25. .B nonamed
  26. needs it!  The other entries are actual machines.  The file may contain
  27. comments marked with '#'.
  28. .PP
  29. You can have aliases (more hostnames on the same line), but it is not
  30. recommended, because
  31. .B nonamed
  32. can't present them to the system as CNAME records.  An often seen form like
  33. .PP
  34. .RS
  35. 192.9.200.1 darask.home.cs.vu.nldarask
  36. .RE
  37. .PP
  38. is harmless though, and has the small advantage that you can use the short
  39. name in
  40. .B /etc/ethers
  41. so
  42. .B rarpd
  43. can match it at boot time.
  44. .SH FILES
  45. .TP 15n
  46. /etc/hosts
  47. Hosts database.
  48. .SH "SEE ALSO"
  49. .BR ethers (5),
  50. .BR nonamed (8),
  51. .BR rarpd (8),
  52. .BR boot (8).
  53. .SH AUTHOR
  54. Kees J. Bot (kjb@cs.vu.nl)