Improve DNS check
This commit is contained in:
parent
50ac87c7b3
commit
3faa8fd86e
@ -117,6 +117,14 @@ case "$VPN_IPSEC_PSK $VPN_USER $VPN_PASSWORD" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
if [ -n "$VPN_DNS_SRV1" ] && ! check_ip "$VPN_DNS_SRV1"; then
|
||||||
|
exiterr "DNS server 'VPN_DNS_SRV1' is invalid."
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "$VPN_DNS_SRV2" ] && ! check_ip "$VPN_DNS_SRV2"; then
|
||||||
|
exiterr "DNS server 'VPN_DNS_SRV2' is invalid."
|
||||||
|
fi
|
||||||
|
|
||||||
bigecho "VPN setup in progress... Please be patient."
|
bigecho "VPN setup in progress... Please be patient."
|
||||||
|
|
||||||
# Create and change to working dir
|
# Create and change to working dir
|
||||||
|
@ -106,6 +106,14 @@ case "$VPN_IPSEC_PSK $VPN_USER $VPN_PASSWORD" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
if [ -n "$VPN_DNS_SRV1" ] && ! check_ip "$VPN_DNS_SRV1"; then
|
||||||
|
exiterr "DNS server 'VPN_DNS_SRV1' is invalid."
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "$VPN_DNS_SRV2" ] && ! check_ip "$VPN_DNS_SRV2"; then
|
||||||
|
exiterr "DNS server 'VPN_DNS_SRV2' is invalid."
|
||||||
|
fi
|
||||||
|
|
||||||
bigecho "VPN setup in progress... Please be patient."
|
bigecho "VPN setup in progress... Please be patient."
|
||||||
|
|
||||||
# Create and change to working dir
|
# Create and change to working dir
|
||||||
|
Loading…
Reference in New Issue
Block a user