1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

If ipv6_enable is set to yes, do IPv6 setup for PCCARD ethernet

card.  This is still at staring point and end node case only.
This commit is contained in:
Hajimu UMEMOTO 2000-07-17 12:33:57 +00:00
parent b74aa5644c
commit feeff03591
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=63308

View File

@ -64,3 +64,17 @@ if [ -n "${static_routes}" ]; then
route add ${route_args}
done
fi
# IPv6 setup
case ${ipv6_enable} in
[Yy][Ee][Ss])
case ${ipv6_gateway_enable} in
[Yy][Ee][Ss])
;;
*)
ifconfig ${interface} up
rtsol ${interface}
;;
esac
;;
esac