Deleted Added
full compact
netoptions (35149) netoptions (35267)
1#!/bin/sh -
2#
1#!/bin/sh -
2#
3# $Id$
3# $Id: rc.network,v 1.21 1998/04/12 09:47:43 markm 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.

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

260 fi
261 unset stash_flag
262 fi
263
264 # IP multicast routing daemon
265 if [ "X${mrouted_enable}" = X"YES" ]; then
266 echo -n ' mrouted'; mrouted ${mrouted_flags}
267 fi
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.

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

260 fi
261 unset stash_flag
262 fi
263
264 # IP multicast routing daemon
265 if [ "X${mrouted_enable}" = X"YES" ]; then
266 echo -n ' mrouted'; mrouted ${mrouted_flags}
267 fi
268
269 # Network Address Translation daemon
270 if [ "X${natd_enable}" = X"YES" -a "X${natd_interface}" != X"" ]; then
271 if [ -a "X${firewall_enable}" = X"YES" ]; then
272 echo -n ' natd'; natd ${natd_flags} -n ${natd_interface}
273 fi
274 fi
275
268 echo '.'
269 network_pass3_done=YES
270}
276 echo '.'
277 network_pass3_done=YES
278}