projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[package] 6to4: don't start if detected local IPv4 address is RFC1918, allows people...
[openwrt.git]
/
package
/
6to4
/
files
/
6to4.sh
diff --git
a/package/6to4/files/6to4.sh
b/package/6to4/files/6to4.sh
index
65f4ffa
..
6e85914
100755
(executable)
--- a/
package/6to4/files/6to4.sh
+++ b/
package/6to4/files/6to4.sh
@@
-1,5
+1,5
@@
# 6to4.sh - IPv6-in-IPv4 tunnel backend
# 6to4.sh - IPv6-in-IPv4 tunnel backend
-# Copyright (c) 2010 OpenWrt.org
+# Copyright (c) 2010
-2011
OpenWrt.org
find_6to4_wanif() {
local if=$(ip -4 r l e 0.0.0.0/0); if="${if#default* dev }"; if="${if%% *}"
find_6to4_wanif() {
local if=$(ip -4 r l e 0.0.0.0/0); if="${if#default* dev }"; if="${if%% *}"
@@
-18,6
+18,15
@@
find_6to4_prefix() {
printf "2002:%02x%02x:%02x%02x\n" $1 $2 $3 $4
}
printf "2002:%02x%02x:%02x%02x\n" $1 $2 $3 $4
}
+test_6to4_rfc1918()
+{
+ local oIFS="$IFS"; IFS="."; set -- $1; IFS="$oIFS"
+ [ $1 -eq 10 ] && return 0
+ [ $1 -eq 192 ] && [ $2 -eq 168 ] && return 0
+ [ $1 -eq 172 ] && [ $2 -ge 16 ] && [ $2 -le 31 ] && return 0
+ return 1
+}
+
set_6to4_radvd_interface() {
local cfgid="$1"
local lanif="${2:-lan}"
set_6to4_radvd_interface() {
local cfgid="$1"
local lanif="${2:-lan}"
@@
-136,6
+145,11
@@
setup_interface_6to4() {
}
}
}
}
+ test_6to4_rfc1918 "$local4" && {
+ logger -t "$link" "Local wan ip $local4 is private - aborting"
+ return
+ }
+
[ -n "$local4" ] && {
logger -t "$link" "Starting ..."
[ -n "$local4" ] && {
logger -t "$link" "Starting ..."
This page took
0.025128 seconds
and
4
git commands to generate.