You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/package/network/ipv6/odhcp6c/files/dhcpv6.sh

52 lines
1.0 KiB
Bash

#!/bin/sh
. /lib/functions.sh
. ../netifd-proto.sh
init_proto "$@"
proto_dhcpv6_init_config() {
proto_config_add_string "reqaddress"
proto_config_add_string "reqprefix"
proto_config_add_string "clientid"
proto_config_add_string "reqopts"
proto_config_add_string "noslaaconly"
}
proto_dhcpv6_setup() {
local config="$1"
local iface="$2"
local reqaddress reqprefix clientid reqopts noslaaconly
json_get_vars reqaddress reqprefix clientid reqopts noslaaconly
# Configure
local opts=""
[ -n "$reqaddress" ] && append opts "-N$reqaddress"
[ -z "$reqprefix" -o "$reqprefix" = "auto" ] && reqprefix=0
[ "$reqprefix" != "no" ] && append opts "-P$reqprefix"
[ -n "$clientid" ] && append opts "-c$clientid"
[ "$noslaaconly" = "1" ] && append opts "-S"
for opt in $reqopts; do
append opts "-r$opt"
done
proto_export "INTERFACE=$config"
proto_run_command "$config" odhcp6c \
-s /lib/netifd/dhcpv6.script \
$opts $iface
}
proto_dhcpv6_teardown() {
local interface="$1"
proto_kill_command "$interface"
}
add_protocol dhcpv6