README 2.9 KB

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