mirror of
https://github.com/opnsense/src.git
synced 2026-04-20 21:59:20 -04: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:
parent
b74aa5644c
commit
feeff03591
1 changed files with 14 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue