mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
Attempt at fixing #228
This commit is contained in:
@@ -772,9 +772,8 @@ def check_internet_IP ():
|
|||||||
dns_IP = get_dynamic_DNS_IP()
|
dns_IP = get_dynamic_DNS_IP()
|
||||||
|
|
||||||
# Check Dynamic DNS IP
|
# Check Dynamic DNS IP
|
||||||
if dns_IP == "" :
|
if dns_IP == "" or dns_IP == "0.0.0.0" :
|
||||||
mylog('info', [' Error retrieving Dynamic DNS IP'])
|
mylog('info', [' Error retrieving Dynamic DNS IP'])
|
||||||
mylog('info', [' Exiting...'])
|
|
||||||
mylog('info', [' ', dns_IP])
|
mylog('info', [' ', dns_IP])
|
||||||
|
|
||||||
# Check DNS Change
|
# Check DNS Change
|
||||||
@@ -802,6 +801,11 @@ def get_internet_IP ():
|
|||||||
|
|
||||||
# Check result is an IP
|
# Check result is an IP
|
||||||
IP = check_IP_format (cmd_output)
|
IP = check_IP_format (cmd_output)
|
||||||
|
|
||||||
|
# Handle invalid response
|
||||||
|
if IP == '':
|
||||||
|
IP = '0.0.0.0'
|
||||||
|
|
||||||
return IP
|
return IP
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
@@ -822,6 +826,11 @@ def get_dynamic_DNS_IP ():
|
|||||||
|
|
||||||
# Check result is an IP
|
# Check result is an IP
|
||||||
IP = check_IP_format (dig_output)
|
IP = check_IP_format (dig_output)
|
||||||
|
|
||||||
|
# Handle invalid response
|
||||||
|
if IP == '':
|
||||||
|
IP = '0.0.0.0'
|
||||||
|
|
||||||
return IP
|
return IP
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user