Add better error handling.

This commit is contained in:
2024-03-20 06:51:57 -04:00
parent da53ead8d3
commit c6d9a3844a
11 changed files with 261 additions and 12 deletions

Binary file not shown.

View File

@@ -54,25 +54,42 @@ namespace IPMonitor
{
int MAX_RETRIES=5;
int TIMEOUT_BETWEEN_ATTEMPTS=30000;
String request="http://checkip.dyndns.org/";
try
{
String address = null;
String request="http://checkip.dyndns.org/";
for(int index=0;index<MAX_RETRIES && null==address;index++)
{
if(!NetworkStatus.IsNetworkAvailable(0))
{
MDTrace.WriteLine(LogLevel.DEBUG,String.Format("[IPMonitor::GetPublicIPAddress] The Network seems to be disconnected. Will retry after {0} (ms) ",request,TIMEOUT_BETWEEN_ATTEMPTS));
try{Thread.Sleep(TIMEOUT_BETWEEN_ATTEMPTS);}catch{;}
continue;
}
address = GetHttpRequest(request);
if(null==address)
{
MDTrace.WriteLine(LogLevel.DEBUG,String.Format("[IPMonitor::GetPublicIPAddress] Request failed {0}. Will retry after {1} (ms) ",request,TIMEOUT_BETWEEN_ATTEMPTS));
try{Thread.Sleep(TIMEOUT_BETWEEN_ATTEMPTS);}catch{;}
continue;
}
}
int first = address.IndexOf("Address: ") + 9;
int last = address.LastIndexOf("</body>");
address = address.Substring(first, last - first);
return address;
try
{
int first = address.IndexOf("Address: ") + 9;
int last = address.LastIndexOf("</body>");
address = address.Substring(first, last - first);
MDTrace.WriteLine(LogLevel.DEBUG,String.Format("Request succeeded: {0} -> {1}",request,address));
return address;
}
catch(Exception exception)
{
MDTrace.WriteLine(LogLevel.DEBUG,String.Format("Exception parsing address: {0}",exception.ToString()));
return null;
}
}
catch(Exception exception)
{

Binary file not shown.

Binary file not shown.

View File

@@ -7,6 +7,9 @@
<add key="sms_smsusername" value="skessler1964@gmail.com"/>
<add key="sms_smspassword" value="xjfo isnf gmyi zovr"/>
<add key="sms_smsrecipients" value="skessler1964sms@gmail.com"/>
<add key="zoneedit_user" value="skessler1964"/>
<add key="zoneedit_password" value="4A536A7920309A11"/>
<add key="zoneedit_host" value="diversified-software.com"/>
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2"/>

Binary file not shown.

Binary file not shown.

View File

@@ -1,5 +1,234 @@
[LOCAL][Thread=1][TRACE.DEBUG][3/17/2024 11:14:08 AM] [IPMonitor.Program::Main(args)][IPMonitor::Start] C:\boneyard\IPMonitor\bin\Release
[LOCAL][Thread=1][TRACE.DEBUG][3/17/2024 11:14:10 AM] [IPMonitor.Program::WriteFile(strPathFileName,ipAddress)]Creating address file:ipaddress.txt
[LOCAL][Thread=1][TRACE.DEBUG][3/17/2024 11:14:14 AM] [IPMonitor.Program::UpdateZoneEditRecord(ipAddress)]<SUCCESS CODE="201" TEXT="no update required for diversified-software.com to 67.191.114.201" ZONE="diversified-software.com">
<SUCCESS CODE="200" TEXT="diversified-software.com updated to 67.191.114.201" ZONE="diversified-software.com">
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:07:49 PM] [IPMonitor.Program::Main(args)][IPMonitor::Start] C:\boneyard\IPMonitor\bin\Release
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:07:50 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:12:50 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:17:52 PM] [IPMonitor.Program::GetHttpRequest(strRequest)][IPMonitor:GetHttpRequest] failed with System.Net.WebException: The remote server returned an error: (502) Bad Gateway.
at System.Net.HttpWebRequest.GetResponse()
at IPMonitor.Program.GetHttpRequest(String strRequest) in c:\boneyard\IPMonitor\Program.cs:line 108
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:17:52 PM] [IPMonitor.Program::GetPublicIPAddress()][IPMonitor::GetPublicIPAddress] Request failed http://checkip.dyndns.org/. Will retry after 30000 (ms)
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:18:22 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:23:23 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:28:23 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:33:23 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:38:24 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:43:24 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:48:25 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:53:25 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 12:58:26 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 1:03:27 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 1:08:27 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 1:13:27 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 1:18:28 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 1:23:28 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 1:28:29 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 1:33:29 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 1:38:29 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 1:43:30 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 1:48:30 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 1:53:30 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 1:58:31 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 2:03:31 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 2:08:32 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 2:13:32 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 2:18:32 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 2:23:33 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 2:28:33 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 2:33:34 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 2:38:34 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 2:43:35 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 2:48:35 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 2:53:35 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 2:58:36 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 3:03:36 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 3:08:37 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 3:13:39 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 3:18:39 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 3:23:40 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 3:28:40 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 3:33:41 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 3:38:41 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 3:43:41 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 3:48:41 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 3:53:42 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 3:58:42 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 4:03:42 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 4:08:42 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 4:13:43 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 4:18:43 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 4:23:44 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 4:28:44 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 4:33:44 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 4:38:45 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 4:43:45 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 4:48:45 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 4:53:45 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 4:58:46 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 5:03:46 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 5:08:46 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 5:13:47 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 5:18:47 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 5:23:47 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 5:28:48 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 5:33:48 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 5:38:48 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 5:43:49 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 5:48:49 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 5:53:49 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 5:58:50 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 6:03:50 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 6:08:50 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 6:13:52 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 6:18:52 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 6:23:53 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 6:28:53 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 6:33:54 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 6:38:54 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 6:43:55 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 6:48:55 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 6:53:55 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 6:58:56 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 7:03:56 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 7:08:56 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 7:13:57 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 7:18:57 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 7:23:57 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 7:28:57 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 7:33:58 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 7:38:58 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 7:43:58 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 7:48:59 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 7:53:59 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 7:58:59 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 8:04:00 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 8:09:00 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 8:14:01 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 8:19:01 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 8:24:02 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 8:29:02 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 8:34:02 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 8:39:03 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 8:44:03 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 8:49:03 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 8:54:04 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 8:59:04 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 9:04:05 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 9:09:06 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 9:14:09 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 9:19:09 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 9:24:10 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 9:29:10 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 9:34:10 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 9:39:11 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 9:44:11 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 9:49:12 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 9:54:12 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 9:59:12 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 10:04:13 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 10:09:13 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 10:14:14 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 10:19:14 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 10:24:15 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 10:29:15 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 10:34:15 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 10:39:16 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 10:44:16 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 10:49:17 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 10:54:17 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 10:59:17 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 11:04:18 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 11:09:18 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 11:14:19 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 11:19:27 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 11:24:28 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 11:29:28 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 11:34:28 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 11:39:29 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 11:44:29 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 11:49:29 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 11:54:30 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/19/2024 11:59:30 PM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 12:04:31 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 12:09:31 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 12:14:33 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 12:19:33 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 12:24:33 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 12:29:34 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 12:34:34 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 12:39:35 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 12:44:35 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 12:49:35 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 12:54:36 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 12:59:36 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 1:04:36 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 1:09:37 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 1:14:37 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 1:19:38 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 1:24:38 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 1:29:38 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 1:34:39 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 1:39:39 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 1:44:39 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 1:49:40 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 1:54:40 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 1:59:40 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 2:04:41 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 2:09:41 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 2:14:41 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 2:19:42 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 2:24:42 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 2:29:43 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 2:34:43 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 2:39:43 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 2:44:45 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 2:49:46 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 2:54:46 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 2:59:46 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 3:04:47 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 3:09:47 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 3:14:49 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 3:19:49 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 3:24:49 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 3:29:50 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 3:34:50 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 3:39:51 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 3:44:51 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 3:49:51 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 3:54:52 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 3:59:53 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 4:04:53 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 4:09:54 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 4:14:55 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 4:19:56 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 4:24:56 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 4:29:57 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 4:34:57 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 4:39:57 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 4:44:58 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 4:49:58 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 4:54:59 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 4:59:59 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 5:05:04 AM] [IPMonitor.Program::GetHttpRequest(strRequest)][IPMonitor:GetHttpRequest] failed with System.Net.WebException: The remote server returned an error: (504) Gateway Timeout.
at System.Net.HttpWebRequest.GetResponse()
at IPMonitor.Program.GetHttpRequest(String strRequest) in c:\boneyard\IPMonitor\Program.cs:line 108
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 5:05:04 AM] [IPMonitor.Program::GetPublicIPAddress()][IPMonitor::GetPublicIPAddress] Request failed http://checkip.dyndns.org/. Will retry after 30000 (ms)
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 5:05:35 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 5:10:35 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 5:15:35 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 5:20:36 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 5:25:37 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 5:30:38 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 5:35:39 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 5:40:39 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 5:45:39 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 5:50:42 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 5:55:42 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 6:00:43 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 6:05:46 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 6:10:47 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 6:15:49 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 6:20:56 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 6:25:56 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 6:30:56 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 6:35:56 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 6:40:57 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 6:45:57 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201
[LOCAL][Thread=1][TRACE.DEBUG][3/20/2024 6:50:57 AM] [IPMonitor.Program::GetPublicIPAddress()]Request succeeded: http://checkip.dyndns.org/ -> 67.191.114.201

View File

@@ -7,6 +7,6 @@ C:\Visual Studio\IPMonitor\obj\Debug\IPMonitor.pdb
C:\boneyard\IPMonitor\bin\Debug\IPMonitor.exe.config
C:\boneyard\IPMonitor\bin\Debug\IPMonitor.exe
C:\boneyard\IPMonitor\bin\Debug\IPMonitor.pdb
C:\boneyard\IPMonitor\obj\Debug\IPMonitor.csprojResolveAssemblyReference.cache
C:\boneyard\IPMonitor\obj\Debug\IPMonitor.exe
C:\boneyard\IPMonitor\obj\Debug\IPMonitor.pdb
C:\boneyard\IPMonitor\obj\Debug\IPMonitor.csprojResolveAssemblyReference.cache

Binary file not shown.

Binary file not shown.