mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-17 19:59:25 +02:00
[package] 6to4: properly setup Base6to4Interface (#12251)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33573 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
f8f2f71426
commit
bf8ba4e0cf
@ -8,7 +8,7 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=6to4
|
PKG_NAME:=6to4
|
||||||
PKG_VERSION:=10
|
PKG_VERSION:=11
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
@ -108,10 +108,15 @@ proto_6to4_setup() {
|
|||||||
|
|
||||||
( proto_add_host_dependency "$cfg" 0.0.0.0 )
|
( proto_add_host_dependency "$cfg" 0.0.0.0 )
|
||||||
|
|
||||||
|
local wanif
|
||||||
|
if ! network_find_wan wanif; then
|
||||||
|
proto_notify_error "$cfg" "NO_WAN_LINK"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
[ -z "$ipaddr" ] && {
|
[ -z "$ipaddr" ] && {
|
||||||
local wanif
|
if ! network_get_ipaddr ipaddr "$wanif"; then
|
||||||
if ! network_find_wan wanif || ! network_get_ipaddr ipaddr "$wanif"; then
|
proto_notify_error "$cfg" "NO_WAN_ADDRESS"
|
||||||
proto_notify_error "$cfg" "NO_WAN_LINK"
|
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -159,7 +164,7 @@ proto_6to4_setup() {
|
|||||||
|
|
||||||
set_6to4_radvd_interface "$sid" "$adv_interface" "$mtu"
|
set_6to4_radvd_interface "$sid" "$adv_interface" "$mtu"
|
||||||
set_6to4_radvd_prefix "$sid" "$adv_interface" \
|
set_6to4_radvd_prefix "$sid" "$adv_interface" \
|
||||||
"$wancfg" "$(printf "0:0:0:%x::/64" $adv_subnet)" \
|
"$wanif" "$(printf "0:0:0:%x::/64" $adv_subnet)" \
|
||||||
"$adv_valid_lifetime" "$adv_preferred_lifetime"
|
"$adv_valid_lifetime" "$adv_preferred_lifetime"
|
||||||
|
|
||||||
adv_subnets="${adv_subnets:+$adv_subnets }$adv_ifname:$subnet6"
|
adv_subnets="${adv_subnets:+$adv_subnets }$adv_ifname:$subnet6"
|
||||||
|
Loading…
Reference in New Issue
Block a user