diff options
author | Steven Barth <cyrus@openwrt.org> | 2014-10-06 11:19:33 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2014-10-06 11:19:33 +0000 |
commit | 8691d75917d91a39f2011d4ddd0713b8562e5e3a (patch) | |
tree | 6dd6cabc1df6ef8098bc22aa2ba07c2bb6ad6f94 /package/network/ipv6/odhcp6c/Makefile | |
parent | 8243e5716747c4a7b47261c00c00afcebee0c593 (diff) | |
download | upstream-8691d75917d91a39f2011d4ddd0713b8562e5e3a.tar.gz upstream-8691d75917d91a39f2011d4ddd0713b8562e5e3a.tar.bz2 upstream-8691d75917d91a39f2011d4ddd0713b8562e5e3a.zip |
odhcp6c: add route-workaround for broken IPv6-ISPs
Some ISP seem to only do stateful DHCPv6 and not sending RAs.
This is technically broken because plain DHCPv6 doesn't carry routes.
We work around here by faking a default route to the DHCPv6 server
if we do not receive a useful RA from the ISP.
This workaround can be turned off with: option fakeroutes 0
Signed-off-by: Steven Barth <steven@midlink.org>
SVN-Revision: 42803
Diffstat (limited to 'package/network/ipv6/odhcp6c/Makefile')
-rw-r--r-- | package/network/ipv6/odhcp6c/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/network/ipv6/odhcp6c/Makefile b/package/network/ipv6/odhcp6c/Makefile index be9c4df6fb..c7b16319c3 100644 --- a/package/network/ipv6/odhcp6c/Makefile +++ b/package/network/ipv6/odhcp6c/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2012 OpenWrt.org +# Copyright (C) 2012-2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,14 +8,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=odhcp6c -PKG_VERSION:=2014-09-27 +PKG_VERSION:=2014-10-06 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE_URL:=git://github.com/sbyx/odhcp6c.git PKG_SOURCE_PROTO:=git -PKG_SOURCE_VERSION:=3e52a1448eee0fbf7ff67c123265bedcbc9c26d0 +PKG_SOURCE_VERSION:=d6fe99f6d03873e7a670c9b6f26fa03b219422f5 PKG_MAINTAINER:=Steven Barth <steven@midlink.org> include $(INCLUDE_DIR)/package.mk |