Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Jun 2010 17:51:27 GMT
From:      Marcin Wisnicki <mwisnicki+freebsd@gmail.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   misc/148017: rc script for stf does not honour create_flags
Message-ID:  <201006201751.o5KHpRSj004774@www.freebsd.org>
Resent-Message-ID: <201006201800.o5KI0BLf080707@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         148017
>Category:       misc
>Synopsis:       rc script for stf does not honour create_flags
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun Jun 20 18:00:11 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Marcin Wisnicki
>Release:        8.1-PRERELEASE
>Organization:
>Environment:
FreeBSD ghost.pnet.one.pl 8.1-PRERELEASE FreeBSD 8.1-PRERELEASE #3: Sun Jun  6 21:14:57 CEST 2010     root@ghost.pnet.one.pl:/home/obj/usr/src/sys/SERWER_DDB  i386
>Description:
If I enable 6to4 with stf_interface_ipv4addr there is no way to set configuration for created interface using create_args_stf0 even though startup scripts create such configuration.

>How-To-Repeat:
cat << EOT >> /etc/rc.conf
ipv6_enable="YES"
stf_interface_ipv4addr="YOUR IP"
create_args_stf0="group ext"
EOT
ifconfig stf0 destroy
/etc/rc.d/network_ipv6 restart
ifconfig -g ext
# no interfaces listed
>Fix:
Apply attached patch

Patch attached with submission follows:

--- etc/network.subr;1	2010-06-06 23:33:07.000000000 +0200
+++ etc/network.subr	2010-06-20 19:05:10.000000000 +0200
@@ -1034,7 +1034,7 @@
 			esac
 			;;
 		esac
-		ifconfig stf0 create >/dev/null 2>&1
+		ifconfig stf0 create `get_if_var stf0 create_args_IF` >/dev/null 2>&1
 		ifconfig stf0 inet6 2002:${ipv4_in_hexformat}:${stf_interface_ipv6_slaid:-0}:${stf_interface_ipv6_ifid} \
 			prefixlen ${stf_prefixlen}
 		# disallow packets to malicious 6to4 prefix


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201006201751.o5KHpRSj004774>