Deleted Added
full compact
network.subr (58710) network.subr (60103)
1#!/bin/sh -
2#
1#!/bin/sh -
2#
3# $FreeBSD: head/etc/network.subr 58710 2000-03-27 21:38:35Z dillon $
3# $FreeBSD: head/etc/network.subr 60103 2000-05-06 17:18:19Z ache $
4# From: @(#)netstart 5.9 (Berkeley) 3/30/91
5
6# Note that almost all of the user-configurable behavior is no longer in
7# this file, but rather in /etc/defaults/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.

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

218
219 echo '.'
220
221 elif [ "`ipfw l 65535`" = "65535 deny ip from any to any" ]; then
222 echo -n "Warning: kernel has firewall functionality, "
223 echo "but firewall rules are not enabled."
224 echo " All ip services are disabled."
225 fi
4# From: @(#)netstart 5.9 (Berkeley) 3/30/91
5
6# Note that almost all of the user-configurable behavior is no longer in
7# this file, but rather in /etc/defaults/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.

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

218
219 echo '.'
220
221 elif [ "`ipfw l 65535`" = "65535 deny ip from any to any" ]; then
222 echo -n "Warning: kernel has firewall functionality, "
223 echo "but firewall rules are not enabled."
224 echo " All ip services are disabled."
225 fi
226
227 case ${firewall_logging} in
228 [Yy][Ee][Ss] | '')
229 echo 'Firewall logging=YES'
230 sysctl -w net.inet.ip.fw.verbose=1 >/dev/null
231 ;;
232 *)
233 ;;
234 esac
235
226 ;;
227 esac
228 ;;
229 esac
230
231 # Additional ATM interface configuration
232 #
233 if [ -n "${atm_pass1_done}" ]; then

--- 405 unchanged lines hidden ---
236 ;;
237 esac
238 ;;
239 esac
240
241 # Additional ATM interface configuration
242 #
243 if [ -n "${atm_pass1_done}" ]; then

--- 405 unchanged lines hidden ---