netstart revision 144153
125895Sjkh#!/bin/sh -
225895Sjkh#
366830Sobrien# Copyright (c) 1993  The FreeBSD Project
466830Sobrien# All rights reserved.
566830Sobrien#
666830Sobrien# Redistribution and use in source and binary forms, with or without
766830Sobrien# modification, are permitted provided that the following conditions
866830Sobrien# are met:
966830Sobrien# 1. Redistributions of source code must retain the above copyright
1066830Sobrien#    notice, this list of conditions and the following disclaimer.
1166830Sobrien# 2. Redistributions in binary form must reproduce the above copyright
1266830Sobrien#    notice, this list of conditions and the following disclaimer in the
1366830Sobrien#    documentation and/or other materials provided with the distribution.
1466830Sobrien#
1566830Sobrien# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1666830Sobrien# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1766830Sobrien# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1866830Sobrien# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1966830Sobrien# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2066830Sobrien# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2166830Sobrien# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2266830Sobrien# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2366830Sobrien# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2466830Sobrien# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2566830Sobrien# SUCH DAMAGE.
2666830Sobrien#
2750472Speter# $FreeBSD: head/etc/netstart 144153 2005-03-26 20:10:24Z cperciva $
2825895Sjkh#	From: @(#)netstart	5.9 (Berkeley) 3/30/91
2966830Sobrien#
3025895Sjkh
3125896Sjkh# This file is NOT called by any of the other scripts - it has been
32144153Scperciva# obsoleted by /etc/rc.d/* and is provided here only for user
3325896Sjkh# convenience (if you're sitting in single user mode and wish to start
3425896Sjkh# the network by hand, this script will do it for you).
3525896Sjkh#
3625896Sjkh
37114213Sjwd. /etc/rc.subr
3825895Sjkh
39114213Sjwdload_rc_config 'XXX'
40114225Simp/etc/rc.d/pccard start
41114213Sjwd/etc/rc.d/devd start
42114213Sjwd/etc/rc.d/hostname start
43114213Sjwd/etc/rc.d/ipmon start
44114213Sjwd/etc/rc.d/ipfilter start
45114213Sjwd/etc/rc.d/ipnat start
46114213Sjwd/etc/rc.d/ipfs start
47114213Sjwd/etc/rc.d/sppp start
48114213Sjwd# /etc/rc.d/atm1 start
49114213Sjwd# . /etc/rc.d/atm2.sh start
50114213Sjwd# . /etc/rc.d/atm3.sh start
51114213Sjwd/etc/rc.d/netif start
52114213Sjwd/etc/rc.d/ipsec start
53114213Sjwd/etc/rc.d/dhclient start
54114213Sjwd/etc/rc.d/isdnd start
55114213Sjwd/etc/rc.d/ppp-user start
56114213Sjwd/etc/rc.d/ipfw start
57114213Sjwd/etc/rc.d/ip6fw start
58114213Sjwd/etc/rc.d/network_ipv6 start
59125664Sdes/etc/rc.d/routing start
60114213Sjwd/etc/rc.d/mroute6d start
61114213Sjwd/etc/rc.d/route6d start
62114213Sjwd/etc/rc.d/mrouted start
63114213Sjwd/etc/rc.d/routed start
64114213Sjwd/etc/rc.d/nisdomain start
6570081Sdes
6625895Sjkhexit 0
67