home *** CD-ROM | disk | FTP | other *** search
/ ftp.uv.es / 2014.11.ftp.uv.es.tar / ftp.uv.es / pub / unix / bootp.2.2+FdC.tar.Z / bootp.2.2+FdC.tar / README < prev    next >
Text File  |  1992-03-23  |  3KB  |  78 lines

  1. This directory contains the source for the CMU BOOTP server.  The files
  2. include:
  3.  
  4. README        This file
  5. bootpd.8    The manual page
  6. bootp.h        The protocol header file
  7. bootpd.h    The server header file
  8. bootpd.c    The main server module
  9. readfile.c    The configuration file-reading routines
  10. hash.h        The hash table header file
  11. hash.c        The hash table module
  12. Version.c    The version module
  13. newvers.sh    A shell script to generate new version numbers
  14. Makefile    The makefile
  15. bootptab    An example database file for the server
  16. gmods        Text describing optional gateway modifications
  17.  
  18.  
  19. Notes:
  20. 1) BOOTP was originally designed and implemented by Bill Croft at Stanford.
  21.    Much of the credit for the ideas and the code goes to him.  We've added
  22.    code to support the vendor specific area of the packet as specified in
  23.    RFC1048.  We've also improved the host lookup algorithm and added some
  24.    extra logging.
  25.  
  26. 2) The server now uses syslog to do logging.  Specifically it uses the 4.3bsd
  27.    version.  I've #ifdef'd all of these calls.  If you are running 4.2 you
  28.    should compile without the -DSYSLOG switch.
  29.  
  30. 3) You must update your /etc/services file to contain the following two lines:
  31.     bootps        67/udp                # bootp server
  32.     bootpc        68/udp                # bootp client
  33.  
  34. 4) The code and the bootptab should be reasonably well commented.  If you 
  35.    have any questions, just let us know.
  36.  
  37. Construction:
  38.     Make sure all of the files exist first.  If anything is missing,
  39.     please contact either Walt Wimer or Drew Perkins by E-mail or phone.
  40.     Addresses and phone numbers are listed below.
  41.  
  42.     Type 'make'.  The options at present are: -DSYSLOG which enables logging
  43.     code, -DDEBUG which enables table dumping via signals, and -DVEND_CMU
  44.     which enables the CMU extensions for CMU PC/IP.
  45.  
  46.     Edit the bootptab.  The man page and the comments in the file should
  47.     explain how to go about doing so.  If you have any problems, let me know.
  48.  
  49.     Type 'make install'.  This should put all of the files in the right place.
  50.  
  51.     Edit your /etc/rc.local or /etc/inetd.conf file to start up bootpd upon
  52.     reboot.
  53.  
  54. Care and feeding:
  55.     If you change the interface cards on your host or add new hosts you will
  56.     need to update /etc/bootptab.  Just edit it as before.  Once you write
  57.     it back out, bootpd will notice that there is a new copy and will
  58.     reread it the next time it gets a request.
  59.  
  60.     If your bootp clients don't get a response then several things might be
  61.     wrong.  Most often, the entry for that host is not in the database.
  62.     Check the hardware address and then check the entry and make sure
  63.     everything is right.  Other problems include the server machine crashing,
  64.     bad cables, and the like.  If your network is very congested you should
  65.     try making your bootp clients send additional requests before giving up.
  66.  
  67.  
  68. November 7, 1988
  69.  
  70.  
  71. Walter L. Wimer            Drew D. Perkins
  72. ww0n@andrew.cmu.edu        ddp@andrew.cmu.edu
  73. (412) 268-6252            (412) 268-8576
  74.  
  75. 4910 Forbes Ave
  76. Pittsburgh, PA  15213
  77.  
  78.