1996-03-12 15:39:26 +00:00
|
|
|
#!/bin/sh -
|
|
|
|
#
|
1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
1998-09-02 01:34:57 +00:00
|
|
|
#
|
2000-10-16 19:11:11 +00:00
|
|
|
# pccard_ether interfacename [start|stop] [ifconfig option]
|
1996-03-12 15:39:26 +00:00
|
|
|
#
|
2003-06-16 09:11:29 +00:00
|
|
|
# example: pccard_ether fxp0 start link0
|
1996-03-12 15:39:26 +00:00
|
|
|
#
|
|
|
|
|
2003-08-12 20:22:44 +00:00
|
|
|
. /etc/network.subr
|
|
|
|
|
2000-10-16 19:11:11 +00:00
|
|
|
stop_dhcp() {
|
2003-08-12 20:22:44 +00:00
|
|
|
# If dhclient is already running, record
|
|
|
|
# its interfaces.
|
|
|
|
if [ -x /usr/bin/grep ]; then
|
|
|
|
eval _active_list=\"`/bin/ps -axwww | \
|
|
|
|
/usr/bin/grep dhclient | \
|
|
|
|
/usr/bin/grep -v grep | \
|
|
|
|
/usr/bin/sed -e 's|^.*dhclient||' | \
|
|
|
|
/usr/bin/awk '{for (i=1;i<=NF;i++) \
|
|
|
|
{ if ($i~/[a-zA-Z].[0-9]$/) \
|
|
|
|
{ printf(" %s",$i) } }}'` \
|
|
|
|
\"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Get the rc.conf list of dhcp configured interfaces
|
|
|
|
static_dhcp_list="`list_net_interfaces dhcp`"
|
|
|
|
|
|
|
|
# Get the current ifconfig list of interfaces
|
|
|
|
_aprefix=
|
|
|
|
_nlist=
|
|
|
|
for _if in ${_active_list} ; do
|
|
|
|
_test_if=`ifconfig ${_if} 2>&1`
|
|
|
|
case "$_test_if" in
|
|
|
|
"ifconfig: interface $_if does not exist")
|
|
|
|
;;
|
|
|
|
${interface})
|
|
|
|
# Don't record the same device twice.
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
#
|
|
|
|
# Catch devices which were specified before,
|
|
|
|
# but have not been part of the rc. We need
|
|
|
|
# them again for the restart.
|
|
|
|
#
|
|
|
|
for _cif in ${static_dhcp_list} ; do
|
|
|
|
case "$_cif" in
|
|
|
|
${_if})
|
|
|
|
# Nothing to add
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# Found interface beside rc.conf
|
|
|
|
_nlist="${_nlist}${_aprefix}${_if}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
_dhcplist="${_dhcplist}${_aprefix}${_if}"
|
|
|
|
[ -z "$_aprefix" ] && _aprefix=' '
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2003-08-12 22:27:08 +00:00
|
|
|
if [ -s /var/run/dhclient.pid ]; then
|
2003-08-11 20:32:00 +00:00
|
|
|
pidfile="/var/run/dhclient.pid"
|
2000-12-25 09:21:18 +00:00
|
|
|
else
|
|
|
|
return
|
2000-10-16 19:11:11 +00:00
|
|
|
fi
|
2003-09-15 18:27:38 +00:00
|
|
|
/sbin/dhclient -r ${interface}
|
2000-12-25 09:21:18 +00:00
|
|
|
rm -f ${pidfile}
|
2003-08-12 20:22:44 +00:00
|
|
|
case ${startstop} in
|
|
|
|
[Ss][Tt][Oo][Pp])
|
|
|
|
if [ -z "${_nlist}" ]; then
|
2005-01-17 11:44:30 +00:00
|
|
|
sh /etc/rc.d/dhclient start
|
2003-08-12 20:22:44 +00:00
|
|
|
else
|
|
|
|
start_dhcp_keep_current
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
2000-10-16 19:11:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
start_dhcp() {
|
2003-08-12 22:44:48 +00:00
|
|
|
stop_dhcp
|
2002-12-11 23:30:34 +00:00
|
|
|
case ${pccard_ether_delay} in
|
|
|
|
[Nn][Oo])
|
|
|
|
;;
|
2004-01-25 19:52:16 +00:00
|
|
|
[0-9]*)
|
2002-12-11 23:30:34 +00:00
|
|
|
sleep ${pccard_ether_delay}
|
|
|
|
;;
|
|
|
|
esac
|
2003-06-07 19:40:54 +00:00
|
|
|
[ -n "$dhcp_program" ] && dhclient_program="$dhcp_program"
|
|
|
|
[ -n "$dhcp_flags" ] && dhclient_flags="$dhcp_flags"
|
|
|
|
if [ -x "${dhclient_program}" ]; then
|
2004-03-05 08:49:59 +00:00
|
|
|
interfaces=`echo $_dhcplist ${interface} | xargs -n 1 echo | sort -u`
|
2004-01-25 19:52:16 +00:00
|
|
|
${dhclient_program} ${dhclient_flags} ${interfaces}
|
2003-08-12 20:22:44 +00:00
|
|
|
else
|
|
|
|
echo "${dhclient_program}: DHCP client software not available"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Called after detaching a card, if dhclient has been
|
|
|
|
# used for more than one interface.
|
|
|
|
start_dhcp_keep_current() {
|
|
|
|
[ -n "$dhcp_program" ] && dhclient_program="$dhcp_program"
|
|
|
|
[ -n "$dhcp_flags" ] && dhclient_flags="$dhcp_flags"
|
|
|
|
if [ -x "${dhclient_program}" ]; then
|
|
|
|
${dhclient_program} ${dhclient_flags} \
|
|
|
|
${_dhcplist}
|
2000-10-16 19:11:11 +00:00
|
|
|
else
|
2003-06-07 19:40:54 +00:00
|
|
|
echo "${dhclient_program}: DHCP client software not available"
|
2000-10-16 19:11:11 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
1999-02-10 18:08:16 +00:00
|
|
|
# Suck in the configuration variables
|
1999-09-13 15:44:20 +00:00
|
|
|
#
|
|
|
|
if [ -r /etc/defaults/rc.conf ]; then
|
1999-02-10 18:08:16 +00:00
|
|
|
. /etc/defaults/rc.conf
|
2000-04-27 08:43:49 +00:00
|
|
|
source_rc_confs
|
1999-09-13 15:44:20 +00:00
|
|
|
elif [ -r /etc/rc.conf ]; then
|
1997-06-30 19:10:50 +00:00
|
|
|
. /etc/rc.conf
|
1996-03-12 15:39:26 +00:00
|
|
|
fi
|
|
|
|
|
2000-02-11 14:49:42 +00:00
|
|
|
interface=$1
|
|
|
|
shift
|
2000-10-28 14:31:40 +00:00
|
|
|
startstop=$1
|
2000-10-16 19:11:11 +00:00
|
|
|
shift
|
2000-02-11 14:49:42 +00:00
|
|
|
|
2000-12-25 09:21:18 +00:00
|
|
|
case ${pccard_ifconfig} in
|
|
|
|
[Nn][Oo] | '')
|
|
|
|
expr "${removable_interfaces}" : ".*${interface}" > /dev/null || exit 0
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# Backward compatible
|
|
|
|
eval ifconfig_${interface}=\${pccard_ifconfig}
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2000-10-16 19:11:11 +00:00
|
|
|
case ${startstop} in
|
|
|
|
[Ss][Tt][Aa][Rr][Tt] | '')
|
2003-08-12 20:22:44 +00:00
|
|
|
if [ -x /usr/bin/grep ]; then
|
2004-01-25 19:52:16 +00:00
|
|
|
if ifconfig ${interface} | grep -s netmask > /dev/null 2>&1; then
|
2003-08-12 20:22:44 +00:00
|
|
|
# Interface is already up, so ignore it.
|
|
|
|
exit 0
|
|
|
|
fi
|
2002-12-11 23:30:34 +00:00
|
|
|
fi
|
|
|
|
|
2000-12-25 09:21:18 +00:00
|
|
|
if [ -r /etc/start_if.${interface} ]; then
|
|
|
|
. /etc/start_if.${interface}
|
|
|
|
fi
|
|
|
|
|
|
|
|
eval ifconfig_args=\$ifconfig_${interface}
|
|
|
|
case ${ifconfig_args} in
|
2000-10-16 19:11:11 +00:00
|
|
|
[Nn][Oo] | '')
|
|
|
|
;;
|
|
|
|
[Dd][Hh][Cc][Pp])
|
2000-12-25 09:21:18 +00:00
|
|
|
# Start up the DHCP client program
|
2000-10-16 19:11:11 +00:00
|
|
|
start_dhcp
|
|
|
|
;;
|
|
|
|
*)
|
2000-12-25 09:21:18 +00:00
|
|
|
# Do the primary ifconfig if specified
|
|
|
|
ifconfig ${interface} ${ifconfig_args} $*
|
1997-11-19 18:51:25 +00:00
|
|
|
|
2000-12-25 09:21:18 +00:00
|
|
|
# Check to see if aliases need to be added
|
|
|
|
alias=0
|
|
|
|
while :
|
|
|
|
do
|
|
|
|
eval ifx_args=\$ifconfig_${interface}_alias${alias}
|
|
|
|
if [ -n "${ifx_args}" ]; then
|
|
|
|
ifconfig ${interface} ${ifx_args} alias
|
|
|
|
alias=`expr ${alias} + 1`
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Do ipx address if specified
|
|
|
|
eval ifx_args=\$ifconfig_${interface}_ipx
|
|
|
|
if [ -n "${ifx_args}" ]; then
|
|
|
|
ifconfig ${interface} ${ifx_args}
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Add default route into $static_routes
|
|
|
|
case ${defaultrouter} in
|
|
|
|
[Nn][Oo] | '')
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
static_routes="default ${static_routes}"
|
|
|
|
route_default="default ${defaultrouter}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Add private route for this interface into $static_routes
|
|
|
|
eval ifx_routes=\$static_routes_${interface}
|
|
|
|
if [ -n "${ifx_routes}" ]; then
|
|
|
|
static_routes="${ifx_routes} ${static_routes}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Set up any static routes if specified
|
|
|
|
if [ -n "${static_routes}" ]; then
|
|
|
|
for i in ${static_routes}; do
|
|
|
|
eval route_args=\$route_${i}
|
|
|
|
route add ${route_args}
|
|
|
|
done
|
|
|
|
fi
|
2000-10-16 19:11:11 +00:00
|
|
|
;;
|
|
|
|
esac
|
1999-09-13 15:44:20 +00:00
|
|
|
|
2000-10-16 19:11:11 +00:00
|
|
|
# IPv6 setup
|
|
|
|
case ${ipv6_enable} in
|
2000-07-17 12:33:57 +00:00
|
|
|
[Yy][Ee][Ss])
|
2003-05-12 11:36:50 +00:00
|
|
|
if [ -r /etc/network.subr ]; then
|
|
|
|
. /etc/network.subr
|
2001-04-26 17:33:37 +00:00
|
|
|
network6_interface_setup ${interface}
|
|
|
|
fi
|
2000-07-17 12:33:57 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
2000-10-16 19:11:11 +00:00
|
|
|
# Stop the interface
|
|
|
|
*)
|
2000-12-25 09:21:18 +00:00
|
|
|
if [ -r /etc/stop_if.${interface} ]; then
|
|
|
|
. /etc/stop_if.${interface}
|
|
|
|
fi
|
|
|
|
|
|
|
|
eval ifconfig_args=\$ifconfig_${interface}
|
|
|
|
case ${ifconfig_args} in
|
|
|
|
[Nn][Oo] | '')
|
|
|
|
;;
|
|
|
|
[Dd][Hh][Cc][Pp])
|
|
|
|
# Stop the DHCP client for this interface
|
|
|
|
stop_dhcp
|
|
|
|
;;
|
|
|
|
*)
|
2003-06-16 09:11:29 +00:00
|
|
|
# Delete static route if specified
|
2000-12-25 09:21:18 +00:00
|
|
|
eval ifx_routes=\$static_routes_${interface}
|
|
|
|
if [ -n "${ifx_routes}" ]; then
|
|
|
|
for i in ${ifx_routes}; do
|
|
|
|
eval route_args=\$route_${i}
|
|
|
|
route delete ${route_args}
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Delete aliases if exist
|
|
|
|
alias=0
|
|
|
|
while :
|
|
|
|
do
|
|
|
|
eval ifx_args=\$ifconfig_${interface}_alias${alias}
|
|
|
|
if [ -n "${ifx_args}" ]; then
|
|
|
|
ifconfig ${interface} ${ifx_args} alias delete
|
|
|
|
alias=`expr ${alias} + 1`
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Remove the network interface and cleaning ARP table
|
|
|
|
ifconfig ${interface} delete
|
|
|
|
arp -d -a
|
|
|
|
|
|
|
|
# Clean the routing table
|
|
|
|
case ${removable_route_flush} in
|
|
|
|
[Nn][Oo])
|
|
|
|
;;
|
2004-06-06 11:46:29 +00:00
|
|
|
*)
|
2000-12-25 09:21:18 +00:00
|
|
|
# flush beforehand, just in case....
|
2001-05-09 20:30:55 +00:00
|
|
|
route -n flush -inet
|
2000-12-25 09:21:18 +00:00
|
|
|
;;
|
|
|
|
esac
|
2000-10-16 19:11:11 +00:00
|
|
|
;;
|
2000-07-17 12:33:57 +00:00
|
|
|
esac
|