6in4: implement metric option

SVN-Revision: 24022
This commit is contained in:
Jo-Philipp Wich 2010-11-17 19:13:11 +00:00
parent 8eec2f8214
commit 89917ff1d0
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
}