diff options
| -rwxr-xr-x | etc/pccard_ether | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/etc/pccard_ether b/etc/pccard_ether index f725d611f36e..1e6d86d4f5cf 100755 --- a/etc/pccard_ether +++ b/etc/pccard_ether @@ -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 |
