=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/etc/netstart,v retrieving revision 1.13 retrieving revision 1.14 diff -c -r1.13 -r1.14 *** src/etc/netstart 1997/02/03 12:04:44 1.13 --- src/etc/netstart 1997/02/11 18:46:08 1.14 *************** *** 1,6 **** #!/bin/sh - # ! # $OpenBSD: netstart,v 1.13 1997/02/03 12:04:44 deraadt Exp $ # set these to "NO" to turn them off. otherwise, they're used as flags routed_flags=-q --- 1,6 ---- #!/bin/sh - # ! # $OpenBSD: netstart,v 1.14 1997/02/11 18:46:08 deraadt Exp $ # set these to "NO" to turn them off. otherwise, they're used as flags routed_flags=-q *************** *** 108,113 **** --- 108,119 ---- # set the address for the loopback interface ifconfig lo0 inet localhost + # /etc/mygate, if it exists, contains the name of my gateway host + # that name must be in /etc/hosts. + if [ -f /etc/mygate ]; then + route add default `cat /etc/mygate` + fi + # use loopback, not the wire route add $hostname localhost route add -net 127 127.0.0.1 -reject *************** *** 115,122 **** # default multicast route route add -net 224.0.0.0 -interface $hostname - # /etc/mygate, if it exists, contains the name of my gateway host - # that name must be in /etc/hosts. - if [ -f /etc/mygate ]; then - route add default `cat /etc/mygate` - fi --- 121,123 ----