diff options
| author | William Hubbs <williamh@gentoo.org> | 2011-12-09 21:57:00 -0600 | 
|---|---|---|
| committer | William Hubbs <williamh@gentoo.org> | 2011-12-09 21:57:00 -0600 | 
| commit | 8ea1190486f9194bac9dfcb355021ebc8e8c15ce (patch) | |
| tree | 07ac4ae9f3d85b07b50dbbf9ce0d786093f02134 /net | |
| parent | a1c655949f1a44b130456bc0aceeb165dbf3bed8 (diff) | |
| download | openrc-8ea1190486f9194bac9dfcb355021ebc8e8c15ce.tar.xz | |
ip6to4: set correct subnet mask
The correct setting for this is /48.
Reported-by: MaratIK <marat.buharov@gmail.com>
X-Gentoo-Bug: 392723
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=392723
Diffstat (limited to 'net')
| -rw-r--r-- | net/ip6to4.sh | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ip6to4.sh b/net/ip6to4.sh index 45644507..5569dee9 100644 --- a/net/ip6to4.sh +++ b/net/ip6to4.sh @@ -67,7 +67,7 @@ ip6to4_start()  		veinfo "Derived IPv6 address: ${ip6}"  		# Now apply our IPv6 address to our config -		new="${new}${new:+ }${ip6}/16" +		new="${new}${new:+ }${ip6}/48"  		if [ -n "${localip}" ]; then  			localip="any"  | 
