blob: 5fcc18e9c6ebb6c37d94ff2071a91cf60400a341 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/bin/sh
. /etc/network/functions
set -eu
address=
subnet=
gateway=
dhcpd_opts_start_cb()
{
exec 3>"/var/run/udhcpd.${IFACE}.conf"
printf 'interface %s\n' "${IFACE}" >&3
printf 'pidfile /var/run/udhcpd.%s.pid\n' "${IFACE}" >&3
printf 'lease_file /var/lib/misc/udhcpd.%s.leases\n' "${IFACE}" >&3
}
dhcpd_opt_cb()
{
local key="${1}"
shift 1
local val="${*}"
case "${key}" in
dhcpd-*)
key="$(printf '%s\n' "${key#dhcpd-}" | tr '-' '_')"
printf '%s %s\n' "${key}" "${val}" >&3
;;
address)
address="${val}"
;;
subnet)
subnet="${val}"
;;
gateway)
gateway="${val}"
;;
esac
}
dhcpd_opts_end_cb()
{
printf 'option subnet %s\n' "${subnet}" >&3
if [ "x${gateway}" != 'x' ]; then
printf 'option router %s\n' "${gateway}" >&3
else
printf 'option router %s\n' "${address}" >&3
fi
sed 's/nameserver/option dns/' /etc/resolv.conf >&3
exec &3>-
udhcpd -S "/var/run/udhcpd.${IFACE}.conf"
}
get_iface_opts dhcpd_opts_start_cb dhcpd_opt_cb dhcpd_opts_end_cb
|