1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 09:11:59 +03:00

[package] 6in4: implement metric option

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24022 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2010-11-17 19:13:11 +00:00
parent 071cb95324
commit a21cc0882d
2 changed files with 5 additions and 2 deletions

View File

@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=6in4
PKG_VERSION:=7
PKG_VERSION:=8
PKG_RELEASE:=1
include $(INCLUDE_DIR)/package.mk

View File

@ -42,6 +42,9 @@ setup_interface_6in4() {
local ttl
config_get ttl "$cfg" ttl
local metric
config_get metric "$cfg" metric
local defaultroute
config_get_bool defaultroute "$cfg" defaultroute 1
@ -70,7 +73,7 @@ setup_interface_6in4() {
uci_set_state network "$cfg" ip6addr $local6
[ "$defaultroute" = 1 ] && {
ip -6 route add ::/0 dev $link
ip -6 route add ::/0 ${metric:+metric $metric} dev $link
uci_set_state network "$cfg" defaultroute 1
}