Deleted Added
sdiff udiff text old ( 27218 ) new ( 29300 )
full compact
1#!/bin/sh -
2#
3# $Id: rc.network,v 1.8 1997/05/19 07:46:48 jkh Exp $
4# From: @(#)netstart 5.9 (Berkeley) 3/30/91
5
6# Note that almost all the user-configurable behavior is no longer in
7# this file, but rather in /etc/rc.conf. Please check that file
8# first before contemplating any changes here. If you do need to change
9# this file for some reason, we would like to know about it.
10
11# First pass startup stuff.

--- 37 unchanged lines hidden (view full) ---

49 done
50 # Do ipx address if specified
51 eval ifconfig_args=\$ifconfig_${ifn}_ipx
52 if [ -n "${ifconfig_args}" ]; then
53 ifconfig ${ifn} ${ifconfig_args}
54 fi
55 ifconfig ${ifn}
56 done
57
58 # If IP filtering
59 if [ -n "$firewall" -a "x$firewall" != "xNO" -a -f /etc/rc.firewall ] ; then
60 echo -n ' firewall'
61 . /etc/rc.firewall
62 fi
63
64 if [ "x$defaultrouter" != "xNO" ] ; then
65 static_routes="default ${static_routes}"
66 route_default="default ${defaultrouter}"
67 fi
68
69 # Set up any static routes. This should be done before router discovery.
70 if [ "x${static_routes}" != "x" ]; then
71 for i in ${static_routes}; do

--- 138 unchanged lines hidden ---