home *** CD-ROM | disk | FTP | other *** search
- This release contains modified sources and fat binaries (for Intel and
- Motorola) of the last 2.x version of gated. You could grab the binaries
- only or take the modified source to recompile from scratch if things
- seem to be weird. This version works for me, but I didn't test gated
- with subnetting.
-
- The following script excerpt is taken from a former gated-2.0 NeXT binary
- that was supplied by Michael Galassi.
-
-
-
- HOW TO INSTALL:
-
- Move ripquery & gated to /usr/etc, copy the man pages to /usr/man/man[58]
- as needed, place gated.conf in /etc and modify /etc/hostconfig's
- ROUTER line to read:
-
- ROUTER=-GATED-
-
- change the area of /etc/rc where the ROUTER variable is used to read:
-
- # IP routing
- case ${ROUTER=-NO-} in
- -ROUTED-)
- if [ -f /usr/etc/routed -a $NETWORKUP = "-YES-" ]; then
- /usr/etc/routed && (echo -n ' routed') >/dev/console
- fi
- ;;
- -GATED-)
- if [ -f /usr/etc/gated -a $NETWORKUP = "-YES-" ]; then
- /usr/etc/gated && (echo -n ' gated') >/dev/console
- fi
- ;;
- -NO-)
- ;;
- *)
- if [ -f /usr/etc/route ]; then
- /usr/etc/route add default $ROUTER 1 >/dev/console 2>&1
- fi
- ;;
- esac
-
-
- HOW TO RECOMPILE:
-
- You can follow the guidelines in the README file, but first you should do a
- 'make depend' in src/ to generate all dependencies and then you can do a
- toplevel make.
-
- Frank Wegmann
-
- wegmann@aki.ping.de (NeXT Mail)
- wegmann@linguistics.ruhr-uni-bochum.de
-