1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-29 18:30:24 +03:00
openwrt-xburst/package/network/ipv6/ipv6-support/files/dhcpv6.sh
cyrus e333d81785 ipv6-support: Next iteration
* Make ula_prefix a global option
* Add preliminary support for NAT (Linux >= 3.7, ip6tables >= 1.4.17)
* Minor fixes for prefix fallback

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34586 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-12-09 13:54:22 +00:00

49 lines
976 B
Bash
Executable File

#!/bin/sh
# Copyright (c) 2012 OpenWrt.org
. /lib/ipv6/support.sh
. /lib/netifd/netifd-proto.sh
local device="$1"
local state="$2"
local network=""
resolve_network network "$device"
# Unknown network
[ -z "$network" ] && exit 0
# Announce prefixes
for prefix in $PREFIXES; do
announce_prefix "$prefix" "$network"
done
for prefix in $PREFIXES_LOST; do
announce_prefix "$prefix" "$network" delprefix
done
# Enable relaying if requested
local fallback="stop"
[ -z "$PREFIXES" -a "$state" != "unbound" ] && fallback="start"
setup_prefix_fallback "$fallback" "$network" "$device"
# Operations in case of success
[ "$state" == "timeout" || "$state" == "unbound" ] && exit 0
local peerdns
config_get_bool peerdns "$network" peerdns 0
[ "$peerdns" -eq "1" ] && {
proto_init_update "*" 1
proto_set_keep 1
for server in $RDNSS; do
proto_add_dns_server "$server"
done
for domain in $DOMAINS; do
proto_add_dns_search "$domain"
done
proto_send_update "$network"
}