blob: 3534fe60171446ef04118a84ab540838a38706fc (
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
57
58
|
#!/bin/bash
# This script came from ubnt.com forum user "bradd" in the following post
# http://community.ubnt.com/t5/EdgeMAX/Automatic-DNS-resolution-of-DHCP-client-names/td-p/651311
# It has been modified by Ubiquiti to update the /etc/host file
# instead of adding to the CLI.
# Thanks to forum user "itsmarcos" for bug fix & improvements
# Thanks to forum user "ruudboon" for multiple domain fix
# Thanks to forum user "chibby85" for expire patch and static-mapping
if [ $# -lt 1 ]; then
echo Invalid args
logger -s -t on-dhcp-event "Invalid args \"$@\""
exit 1
fi
action=$1
hostsd_client="/usr/bin/vyos-hostsd-client"
case "$action" in
lease4_renew|lease4_recover)
exit 0
;;
lease4_release|lease4_expire|lease4_decline) # delete mapping for released/declined address
client_ip=$LEASE4_ADDRESS
$hostsd_client --delete-hosts --tag "dhcp-server-$client_ip" --apply
exit 0
;;
leases4_committed) # process committed leases (added/renewed/recovered)
for ((i = 0; i < $LEASES4_SIZE; i++)); do
client_ip_var="LEASES4_AT${i}_ADDRESS"
client_mac_var="LEASES4_AT${i}_HWADDR"
client_name_var="LEASES4_AT${i}_HOSTNAME"
client_subnet_id_var="LEASES4_AT${i}_SUBNET_ID"
client_ip=${!client_ip_var}
client_mac=${!client_mac_var}
client_name=${!client_name_var}
client_subnet_id=${!client_subnet_id_var}
if [ -z "$client_name" ]; then
logger -s -t on-dhcp-event "Client name was empty, using MAC \"$client_mac\" instead"
client_name=$(echo "host-$client_mac" | tr : -)
fi
$hostsd_client --add-hosts "$client_name,$client_ip" --tag "dhcp-server-$client_ip" --apply
done
exit 0
;;
*)
logger -s -t on-dhcp-event "Invalid command \"$1\""
exit 1
;;
esac
|