diff options
author | Steven Barth <cyrus@openwrt.org> | 2012-12-27 15:47:53 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2012-12-27 15:47:53 +0000 |
commit | 253d7345e1a6b07e49535239935b48d95b8eb5dd (patch) | |
tree | d8ca11df7983a6e1d70918a3000d6466e9bfb806 | |
parent | 941f4ccd6825caa7849082b4e934cb180199303e (diff) | |
download | upstream-253d7345e1a6b07e49535239935b48d95b8eb5dd.tar.gz upstream-253d7345e1a6b07e49535239935b48d95b8eb5dd.tar.bz2 upstream-253d7345e1a6b07e49535239935b48d95b8eb5dd.zip |
ipv6-support: Remove site-border feature * was causing routing problems * will be reimplemented using firewall
SVN-Revision: 34898
-rw-r--r-- | package/network/ipv6/ipv6-support/Makefile | 2 | ||||
-rw-r--r-- | package/network/ipv6/ipv6-support/files/network6.config | 1 | ||||
-rw-r--r-- | package/network/ipv6/ipv6-support/files/support.sh | 7 |
3 files changed, 1 insertions, 9 deletions
diff --git a/package/network/ipv6/ipv6-support/Makefile b/package/network/ipv6/ipv6-support/Makefile index a8df354783..634dc5d74b 100644 --- a/package/network/ipv6/ipv6-support/Makefile +++ b/package/network/ipv6/ipv6-support/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ipv6-support -PKG_VERSION:=2012-12-27 +PKG_VERSION:=2012-12-28 PKG_RELEASE:=1 include $(INCLUDE_DIR)/package.mk diff --git a/package/network/ipv6/ipv6-support/files/network6.config b/package/network/ipv6/ipv6-support/files/network6.config index 7385eebfb4..ce85dbe8b6 100644 --- a/package/network/ipv6/ipv6-support/files/network6.config +++ b/package/network/ipv6/ipv6-support/files/network6.config @@ -1,6 +1,5 @@ config global global option ula_prefix auto - option site_border 1 config interface wan option mode dhcpv6 diff --git a/package/network/ipv6/ipv6-support/files/support.sh b/package/network/ipv6/ipv6-support/files/support.sh index 405cc32ad7..01efb9ed7c 100644 --- a/package/network/ipv6/ipv6-support/files/support.sh +++ b/package/network/ipv6/ipv6-support/files/support.sh @@ -537,11 +537,4 @@ enable_interface() [ "$mode" == "router" ] && enable_router "$network" "$device" [ "$mode" == "6to4" -o "$mode" == "6rd" ] && enable_6to4 "$network" "$device" "$mode" [ "$mode" == "relay" ] && restart_master_relay "$network" forced - - # Create / Delete site border - local site_border - local cmd="delulaborder" - config_get_bool site_border global site_border 0 - [ "$site_border" == "1" ] && cmd="newulaborder" - ubus call 6distributed "$cmd" } |