home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / network / system / gated.2.1pl2.README < prev    next >
Encoding:
Text File  |  1994-05-05  |  1.5 KB  |  54 lines

  1. This release contains modified sources and fat binaries (for Intel and
  2. Motorola) of the last 2.x version of gated.  You could grab the binaries
  3. only or take the modified source to recompile from scratch if things
  4. seem to be weird.  This version works for me, but I didn't test gated
  5. with subnetting.
  6.  
  7. The following script excerpt is taken from a former gated-2.0 NeXT binary
  8. that was supplied by Michael Galassi.
  9.  
  10.  
  11.  
  12. HOW TO INSTALL:
  13.  
  14. Move ripquery & gated to /usr/etc, copy the man pages to /usr/man/man[58]
  15. as needed, place gated.conf in /etc and modify /etc/hostconfig's
  16. ROUTER line to read:
  17.  
  18. ROUTER=-GATED-
  19.  
  20. change the area of /etc/rc where the ROUTER variable is used to read:
  21.  
  22. # IP routing
  23. case ${ROUTER=-NO-} in
  24.     -ROUTED-)
  25.         if [ -f /usr/etc/routed -a $NETWORKUP = "-YES-" ]; then
  26.                 /usr/etc/routed && (echo -n ' routed')          >/dev/console
  27.         fi
  28.         ;;
  29.     -GATED-)
  30.         if [ -f /usr/etc/gated -a $NETWORKUP = "-YES-" ]; then
  31.                 /usr/etc/gated && (echo -n ' gated')            >/dev/console
  32.         fi
  33.         ;;
  34.     -NO-)
  35.         ;;
  36.     *)
  37.         if [ -f /usr/etc/route ]; then
  38.                 /usr/etc/route add default $ROUTER 1    >/dev/console 2>&1
  39.         fi
  40.         ;;
  41. esac
  42.  
  43.  
  44. HOW TO RECOMPILE:
  45.  
  46. You can follow the guidelines in the README file, but first you should do a
  47. 'make depend' in src/ to generate all dependencies and then you can do a
  48. toplevel make.
  49.  
  50. Frank Wegmann
  51.  
  52. wegmann@aki.ping.de (NeXT Mail)
  53. wegmann@linguistics.ruhr-uni-bochum.de
  54.