Subversion Repositories ALCASAR

Rev

Rev 2825 | Rev 2833 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 2825 Rev 2831
Line 1... Line 1...
1
#!/bin/bash
1
#!/bin/bash
2
# $Id: alcasar-dns-local.sh 2825 2020-05-31 17:01:33Z rexy $
2
# $Id: alcasar-dns-local.sh 2831 2020-06-07 21:43:19Z rexy $
3
 
3
 
4
# alcasar-dns-local.sh
4
# alcasar-dns-local.sh
5
# by Rexy - 3abtux
5
# by Rexy - 3abtux
6
# This script is distributed under the Gnu General Public License (GPL)
6
# This script is distributed under the Gnu General Public License (GPL)
7
 
7
 
Line 11... Line 11...
11
SED="/bin/sed -i"
11
SED="/bin/sed -i"
12
 
12
 
13
ALCASAR_CONF_FILE="/usr/local/etc/alcasar.conf"
13
ALCASAR_CONF_FILE="/usr/local/etc/alcasar.conf"
14
LOCAL_DOMAIN_CONF_FILE="/etc/unbound/conf.d/common/local-forward/dns-redirector.conf"
14
LOCAL_DOMAIN_CONF_FILE="/etc/unbound/conf.d/common/local-forward/dns-redirector.conf"
15
LOCAL_HOSTNAME_FILE="/etc/hosts"
15
LOCAL_HOSTNAME_FILE="/etc/hosts"
16
LOCAL_DNS_FILE="/etc/unbound/conf.d/common/local-dns/global.conf"
-
 
17
 
16
 
18
# define DNS parameters (LAN side)
17
# define DNS parameters (LAN side)
19
 
-
 
20
INT_DNS_DOMAIN=`grep INT_DNS_DOMAIN $ALCASAR_CONF_FILE|cut -d"=" -f2`		# Nom du domaine DNS interne
18
INT_DNS_DOMAIN=`grep ^DOMAIN $ALCASAR_CONF_FILE|cut -d"=" -f2`
-
 
19
INT_DNS_HOST=`grep ^HOSTNAME $ALCASAR_CONF_FILE|cut -d"=" -f2`
21
INT_DNS_IP=`grep INT_DNS_IP $ALCASAR_CONF_FILE|cut -d"=" -f2`				# Adresse du serveur DNS interne
20
INT_DNS_IP=`grep ^PRIVATE_IP $ALCASAR_CONF_FILE|cut -d"=" -f2|cut -d"/" -f1`
-
 
21
INTIF=`grep ^INTIF $ALCASAR_CONF_FILE|cut -d"=" -f2`
22
INT_DNS_ACTIVE=`grep INT_DNS_ACTIVE $ALCASAR_CONF_FILE|cut -d"=" -f2`		# Activation de la redirection DNS interne
22
INT_DNS_ACTIVE=`grep INT_DNS_ACTIVE $ALCASAR_CONF_FILE|cut -d"=" -f2`
-
 
23
LOCAL_DNS_FILE="/etc/unbound/conf.d/common/local-dns/$INTIF.conf"
23
 
24
 
24
usage="Usage: alcasar-dns-local.sh {--on | -on} | {--off | -off} | {--add | -add} ip domain | {--del | -del} ip domain | {--reload | -reload}"
25
usage="Usage: alcasar-dns-local.sh {--on | -on} | {--off | -off} | {--add | -add} ip domain | {--del | -del} ip domain | {--reload | -reload}"
25
nb_args=$#
26
nb_args=$#
26
args=$1
27
args=$1
27
if [ $nb_args -eq 0 ]
28
if [ $nb_args -eq 0 ]
Line 36... Line 37...
36
		systemctl restart $dns
37
		systemctl restart $dns
37
	done
38
	done
38
}
39
}
39
 
40
 
40
function hosts_to_unbound(){
41
function hosts_to_unbound(){
41
	# Empty the local DNS file
42
		cat << EOF > $LOCAL_DNS_FILE
-
 
43
server:
42
	echo "server:" > $LOCAL_DNS_FILE
44
	local-zone: "$INT_DNS_DOMAIN" static
-
 
45
	local-data: "$INT_DNS_HOST.$INT_DNS_DOMAIN A $INT_DNS_IP"
-
 
46
	local-data-ptr: "$INT_DNS_IP $INT_DNS_HOST.$INT_DNS_DOMAIN"
43
 
47
EOF
44
	while read -r line
48
	while read -r line
45
	do
49
	do
46
		ip_address=$(echo $line | awk '{ print $1 }')
50
		ip_address=$(echo $line | awk '{ print $1 }')
47
		domain=$(echo $line | awk '{ print $2 }')
51
		domain=$(echo $line | awk '{ print $2 }')
48
 
-
 
49
		if ! echo $line | grep -E -q "^([0-9\.\t ]+alcasar( |$)|127\.0\.0)"
52
		if ! echo $line | grep -E -q "^([0-9\.\t ]+alcasar( |$)|127\.0\.0)"
50
		then
53
		then
51
			echo -e "\tlocal-zone: \"$domain\" redirect" >> $LOCAL_DNS_FILE
54
			echo -e "\tlocal-data: \"$domaini.$INT_DNS_DOMAIN A $ip_address\"" >> $LOCAL_DNS_FILE
52
			echo -e "\tlocal-data: \"$domain A $ip_address\"" >> $LOCAL_DNS_FILE
55
			echo -e "\tlocal-data-ptr: \"$ip_address $domain.$INT_DNS_DOMAIN\"" >> $LOCAL_DNS_FILE
53
		fi
56
		fi
54
	done < $LOCAL_HOSTNAME_FILE
57
	done < $LOCAL_HOSTNAME_FILE
55
}
58
}
56
 
59
 
57
case $args in
60
case $args in