-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
generateACL.sh
56 lines (52 loc) · 1.52 KB
/
generateACL.sh
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/bash
CLIENTS=()
export DYNDNS_CRON_ENABLED=false
function read_acl () {
for i in "${client_list[@]}"
do
/usr/bin/ipcalc -cs "$i"
retVal=$?
if [ $retVal -eq 0 ]; then
CLIENTS+=( "${i}" )
else
RESOLVE_RESULT=$(/usr/bin/dog --json "${i}" | jq -r '.responses[].answers | map(select(.type == "A")) | first | .address')
retVal=$?
if [ $retVal -eq 0 ]; then
export DYNDNS_CRON_ENABLED=true
CLIENTS+=( "${RESOLVE_RESULT}" )
else
echo "[ERROR] Could not resolve '${i}' => Skipping"
fi
fi
done
(echo "${client_list[@]}" | grep -q '127.0.0.1')
localipCheck=$?
if [[ "$localipCheck" -eq 1 ]] && [[ "$DYNDNS_CRON_ENABLED" = true ]]; then
echo "[INFO] Adding '127.0.0.1' to allowed clients cause else cron reload will not work"
CLIENTS+=( "127.0.0.1" )
fi
}
if [ -n "${ALLOWED_CLIENTS_FILE}" ];
then
if [ -f "${ALLOWED_CLIENTS_FILE}" ];
then
mapfile -t client_list < "$ALLOWED_CLIENTS_FILE"
else
echo "[ERROR] ALLOWED_CLIENTS_FILE is set but file does not exists or is not accessible!"
fi
else
IFS=', ' read -ra client_list <<< "$ALLOWED_CLIENTS"
fi
read_acl
printf '%s\n' "${CLIENTS[@]}" > /etc/dnsdist/allowedClients.acl
if [ -f "/etc/dnsdist/allowedClients.acl" ];
then
echo "" > etc/nginx/allowedClients.conf
while read -r line
do
echo "allow $line;" >> /etc/nginx/allowedClients.conf
done < "/etc/dnsdist/allowedClients.acl"
echo "deny all;" >> /etc/nginx/allowedClients.conf
else
touch /etc/nginx/allowedClients.conf
fi