summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcyrus <cyrus@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-05-13 17:12:20 +0000
committercyrus <cyrus@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-05-13 17:12:20 +0000
commit52477fd829ae908875b177553558b9d11c161563 (patch)
tree8c00724e2e5cfbaa7e9be7f1c6920c5a57efbd90
parent618343b1ae7fa2d5319c810feab39d2309dca676 (diff)
firewall3: Remove obsoleted ULA-border
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36624 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/network/config/firewall3/Makefile4
-rw-r--r--package/network/config/firewall3/files/ipv6-ula-border.sh6
2 files changed, 1 insertions, 9 deletions
diff --git a/package/network/config/firewall3/Makefile b/package/network/config/firewall3/Makefile
index 11709e992..027fbc8d7 100644
--- a/package/network/config/firewall3/Makefile
+++ b/package/network/config/firewall3/Makefile
@@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=firewall3
-PKG_VERSION:=2013-05-02
+PKG_VERSION:=2013-05-13
PKG_RELEASE:=$(PKG_SOURCE_VERSION)
PKG_SOURCE_PROTO:=git
@@ -49,8 +49,6 @@ define Package/firewall3/install
$(INSTALL_DATA) ./files/firewall.config $(1)/etc/config/firewall
$(INSTALL_DIR) $(1)/etc/
$(INSTALL_DATA) ./files/firewall.user $(1)/etc/firewall.user
- $(INSTALL_DIR) $(1)/usr/share/firewall/
- $(INSTALL_BIN) ./files/ipv6-ula-border.sh $(1)/usr/share/firewall/ipv6-ula-border.sh
endef
$(eval $(call BuildPackage,firewall3))
diff --git a/package/network/config/firewall3/files/ipv6-ula-border.sh b/package/network/config/firewall3/files/ipv6-ula-border.sh
deleted file mode 100644
index ebd23a985..000000000
--- a/package/network/config/firewall3/files/ipv6-ula-border.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-ULA_PREFIX=$(uci -q get network.globals.ula_prefix)
-[ -n "$ULA_PREFIX" ] || exit 0
-
-ip6tables -I delegate_forward -s $ULA_PREFIX -m comment --comment "Enforce ULA-Border" -j zone_wan_dest_REJECT
-ip6tables -I delegate_forward -d $ULA_PREFIX -m comment --comment "Enforce ULA-Border" -j zone_wan_dest_REJECT