vpnc-script: don't attempt to resolve domains which match the local domain

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
This commit is contained in:
Nikos Mavrogiannopoulos 2015-11-25 00:23:43 +01:00
parent b70b5d0b5e
commit 3b87afcea8
1 changed files with 5 additions and 1 deletions

View File

@ -82,10 +82,14 @@ do_connect() {
fi
DNSMASQ_FILE="/tmp/dnsmasq.d/openconnect.$TUNDEV"
LOCAL_DOMAIN=$(uci get dhcp.@dnsmasq[0].domain)
rm -f $DNSMASQ_FILE
if [ -n "$CISCO_SPLIT_DNS" ] && [ -d "/tmp/dnsmasq.d/" ];then
SDNS=`echo $CISCO_SPLIT_DNS|sed 's/,/\n/g'`
echo "$SDNS" | while read i; do
if [ "$i" = "$LOCAL_DOMAIN" ];then
continue
fi
if [ -n "$INTERNAL_IP4_DNS" ];then
for dns in "$INTERNAL_IP4_DNS";do
echo "server=/$i/$dns" >> $DNSMASQ_FILE
@ -110,7 +114,7 @@ do_connect() {
proto_add_dns_server "$dns"
done
fi
if [ -n "$CISCO_DEF_DOMAIN" ];then
if [ -n "$CISCO_DEF_DOMAIN" ] && [ "$CISCO_DEF_DOMAIN" != "$LOCAL_DOMAIN" ];then
if [ -n "$INTERNAL_IP4_DNS" ];then
for dns in "$INTERNAL_IP4_DNS";do
echo "server=/$CISCO_DEF_DOMAIN/$dns" >> $DNSMASQ_FILE