From d747464deb2c5aa40aae6c42d10322cd91cba11d Mon Sep 17 00:00:00 2001 From: deraadt Date: Tue, 11 Feb 1997 18:46:08 +0000 Subject: [PATCH] add default route before fiddling with loopback route to avoid DNS problems; m4@umn.edu, #97 --- etc/netstart | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/etc/netstart b/etc/netstart index 7825960d477..8ed65762dd9 100644 --- a/etc/netstart +++ b/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: netstart,v 1.13 1997/02/03 12:04:44 deraadt Exp $ +# $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,6 +108,12 @@ fi # 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,8 +121,3 @@ route add -net 127 127.0.0.1 -reject # 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 -- 2.20.1