diff options
author | Steven Barth <steven@midlink.org> | 2013-01-13 18:06:24 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2013-01-13 18:06:24 +0000 |
commit | 8b19f3525505c739724c1200cefa21de93aa3cef (patch) | |
tree | f012530f7421d9463399f91df62fe0b2b559d700 /package/network/ipv6 | |
parent | 24df9aecc1a3e05fcbf01f2e113ad9ddc90ed7e6 (diff) | |
download | upstream-8b19f3525505c739724c1200cefa21de93aa3cef.tar.gz upstream-8b19f3525505c739724c1200cefa21de93aa3cef.tar.bz2 upstream-8b19f3525505c739724c1200cefa21de93aa3cef.zip |
odhcp6c: Send RS on start
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35137 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/ipv6')
-rw-r--r-- | package/network/ipv6/odhcp6c/Makefile | 2 | ||||
-rwxr-xr-x | package/network/ipv6/odhcp6c/files/dhcpv6.script | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/package/network/ipv6/odhcp6c/Makefile b/package/network/ipv6/odhcp6c/Makefile index f97e6ac2ac..1a3296d36c 100644 --- a/package/network/ipv6/odhcp6c/Makefile +++ b/package/network/ipv6/odhcp6c/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=odhcp6c -PKG_VERSION:=2013-01-11 +PKG_VERSION:=2013-01-13 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 diff --git a/package/network/ipv6/odhcp6c/files/dhcpv6.script b/package/network/ipv6/odhcp6c/files/dhcpv6.script index 8f258f5c37..859ae1b745 100755 --- a/package/network/ipv6/odhcp6c/files/dhcpv6.script +++ b/package/network/ipv6/odhcp6c/files/dhcpv6.script @@ -19,6 +19,9 @@ prepare_interface() { ipv6_conf "$device" accept_ra 2 ipv6_conf "$device" forwarding 2 + + # Send RS + [ -x /usr/sbin/6relayd ] && /usr/sbin/6relayd -s "$device" } cleanup_interface() { |