3 # Copyright (c) 2003 The FreeBSD Project. All rights reserved.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
8 # 1. Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright
11 # notice, this list of conditions and the following disclaimer in the
12 # documentation and/or other materials provided with the distribution.
14 # THIS SOFTWARE IS PROVIDED BY THE PROJECT ``AS IS'' AND ANY EXPRESS OR
15 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 # IN NO EVENT SHALL THE PROJECT BE LIABLE FOR ANY DIRECT, INDIRECT,
18 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 # $FreeBSD: src/etc/rc.d/netif,v 1.2 2003/06/29 05:34:41 mtm Exp $
29 # REQUIRE: cleanvar mountcritlocal serial sppp sysctl tty
35 start_cmd
="network_start"
36 stop_cmd
="network_stop"
37 cloneup_cmd
="clone_up"
38 clonedown_cmd
="clone_down"
39 extra_commands
="cloneup clonedown"
44 # Set the list of interfaces to work on.
48 if [ -z "$_cmdifn" ]; then
50 # We're operating as a general network start routine.
53 # Create cloned interfaces
56 # Create IPv6<-->IPv4 tunnels
63 # Configure the interface(s).
64 network_common ifn_start verbose
66 # Give our interfaces a little time to come up
67 # before we start pounding them. In particular, dhclient
68 # and named can get mightily confused.
74 # Set the list of interfaces to work on.
78 echo -n "Stopping network:"
80 # Deconfigure the interface(s)
81 network_common ifn_stop
85 # network_common routine verbose
86 # Common configuration subroutine for network interfaces. This
87 # routine takes all the preparatory steps needed for configuring
88 # an interface and then calls $routine. If $verbose is specified,
89 # it will call ifconfig(8) to show, in long format, the configured
90 # interfaces. If $verbose is not given, it will simply output the
91 # configured interface(s).
98 err
1 "network_common(): No function name specified."
102 [ -n "$2" ] && _verbose
=yes
104 # Get a list of network interfaces.
105 _ifn_list
="`list_net_interfaces`"
107 # Set the scope of the command (all interfaces or just one).
110 if [ -n "$_cmdifn" ]; then
111 for i
in $_cmdifn ; do
112 eval _if
=\"`expr "$_ifn_list" : ".*\(${i}\).*"`\"
113 if [ -z "$_if" ]; then
114 err
1 "No such network interface: $i"
116 _cooked_list
="$_cooked_list $_if"
119 _cooked_list
="$_ifn_list"
122 for ifn
in ${_cooked_list}; do
123 if ${_func} ${ifn} ; then
130 # Display interfaces configured by this script
132 for ifn
in ${_cooked_list}; do
133 eval showstat
=\
$showstat_${ifn}
134 if [ ! -z ${showstat} ]; then
135 if [ -n "$_verbose" ]; then
136 ifconfig
${ifn} 2>/dev
/null
142 debug
"The following interfaces were not configured: $_fail"
151 [ -z "$ifn" ] && return 1
153 ifscript_up
${ifn} && cfg
=0
154 ifconfig_up
${ifn} && cfg
=0
155 ifalias_up
${ifn} && cfg
=0
156 childif_create
${ifn} && cfg
=0
167 [ -z "$ifn" ] && return 1
169 ifalias_down
${ifn} && cfg
=0
170 ifconfig_down
${ifn} && cfg
=0
171 ifscript_down
${ifn} && cfg
=0
172 childif_destroy
${ifn} && cfg
=0
178 # Create and configure child interfaces. Return 0 if child
179 # interfaces are created.
183 local cfg child child_vlans child_wlans create_args debug_flags ifn i
187 # Create wireless interfaces
188 child_wlans
=`get_if_var $ifn wlans_IF`
190 for child
in ${child_wlans}; do
191 create_args
="wlandev $ifn `get_if_var $child create_args_IF`"
192 debug_flags
="`get_if_var $child wlandebug_IF`"
194 if expr $child : 'wlan[0-9][0-9]*$' >/dev
/null
2>&1; then
195 ifconfig
$child create
${create_args} && cfg
=0
196 if [ -n "${debug_flags}" ]; then
197 wlandebug
-i $child ${debug_flags}
200 i
=`ifconfig wlan create ${create_args}`
201 if [ -n "${debug_flags}" ]; then
202 wlandebug
-i $i ${debug_flags}
204 ifconfig
$i name
$child && cfg
=0
209 # Create vlan interfaces
210 child_vlans
=`get_if_var $ifn vlans_IF`
212 for child
in ${child_vlans}; do
213 if expr $child : '[1-9][0-9]*$' >/dev
/null
2>&1; then
214 child
="${ifn}.${child}"
215 create_args
=`get_if_var $child create_args_IF`
216 ifconfig
$child create
${create_args} && cfg
=0
218 create_args
="vlandev $ifn `get_if_var $child create_args_IF`"
219 if expr $child : 'vlan[0-9][0-9]*$' >/dev
/null
2>&1; then
220 ifconfig
$child create
${create_args} && cfg
=0
222 i
=`ifconfig vlan create ${create_args}`
223 ifconfig
$i name
$child && cfg
=0
233 # Destroy child interfaces.
237 local cfg child child_vlans child_wlans ifn
240 child_wlans
=`get_if_var $ifn wlans_IF`
241 for child
in ${child_wlans}; do
242 if ! `ifconfig -n $child > /dev/null 2>&1`; then
246 ifconfig
$child destroy
&& cfg
=0