summaryrefslogtreecommitdiffstats
path: root/package/network/ipv6/odhcp6c/files
diff options
context:
space:
mode:
authorSteven Barth <cyrus@openwrt.org>2015-04-10 11:33:15 +0000
committerSteven Barth <cyrus@openwrt.org>2015-04-10 11:33:15 +0000
commit0dbbbda4bfd51e4b3d7e9af8a78f4ef4ef6f20e8 (patch)
tree235a85f4cea266da5532cbf367d04cf4a8b76bf0 /package/network/ipv6/odhcp6c/files
parentedaf5c31da49b8eb974b124f68c44616442715d0 (diff)
downloadmaster-31e0f0ae-0dbbbda4bfd51e4b3d7e9af8a78f4ef4ef6f20e8.tar.gz
master-31e0f0ae-0dbbbda4bfd51e4b3d7e9af8a78f4ef4ef6f20e8.tar.bz2
master-31e0f0ae-0dbbbda4bfd51e4b3d7e9af8a78f4ef4ef6f20e8.zip
odhcp6c: move IPv6 /proc config to userspace and sanitize
Signed-off-by: Steven Barth <steven@midlink.org> SVN-Revision: 45358
Diffstat (limited to 'package/network/ipv6/odhcp6c/files')
-rwxr-xr-xpackage/network/ipv6/odhcp6c/files/dhcpv6.script7
1 files changed, 7 insertions, 0 deletions
diff --git a/package/network/ipv6/odhcp6c/files/dhcpv6.script b/package/network/ipv6/odhcp6c/files/dhcpv6.script
index 000e2dbae9..8cfa929002 100755
--- a/package/network/ipv6/odhcp6c/files/dhcpv6.script
+++ b/package/network/ipv6/odhcp6c/files/dhcpv6.script
@@ -154,6 +154,13 @@ setup_interface () {
ubus call network add_dynamic "$(json_dump)"
fi
+ # Apply IPv6 / ND configuration
+ HOPLIMIT=$(cat /proc/sys/net/ipv6/conf/$device/hop_limit)
+ [ "$RA_HOPLIMIT" -gt "$HOPLIMIT" ] && echo "$RA_HOPLIMIT" > /proc/sys/net/ipv6/conf/$device/hop_limit
+ [ "$RA_MTU" -gt 0 ] && echo "$RA_MTU" > /proc/sys/net/ipv6/conf/$device/mtu
+ [ "$RA_REACHABLE" -gt 0 ] && echo "$RA_REACHABLE" > /proc/sys/net/ipv6/neigh/$device/base_reachable_time_ms
+ [ "$RA_RETRANSMIT" -gt 0 ] && echo "$RA_RETRANSMIT" > /proc/sys/net/ipv6/neigh/$device/retrans_time_ms
+
# TODO: $SNTP_IP $SIP_IP $SNTP_FQDN $SIP_DOMAIN
}