host status keep showing as being down

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
crystal
Posts: 25
Joined: Wed Sep 20, 2017 10:29 am

Re: host status keep showing as being down

Post by crystal »

no, I can't access it.
this is the nsclient.ini file:

# If you want to fill this file with all avalible options run the following command:
# nscp settings --generate --add-defaults --load-all
# If you want to activate a module and bring in all its options use:
# nscp settings --activate-module <MODULE NAME> --add-defaults
# For details run: nscp settings --help


; Undocumented section
[/settings/default]

; Undocumented key
password = 12345

; Undocumented key
allowed hosts = 172.31.29.254


; Undocumented section
[/settings/NRPE/server]

; Undocumented key
ssl options = no-sslv2,no-sslv3

; Undocumented key
verify mode = peer-cert

; Undocumented key
insecure = false


; Undocumented section
[/modules]

; Undocumented key
CheckExternalScripts = 1

; Undocumented key
CheckHelpers = 1

; Undocumented key
CheckEventLog = 1

; Undocumented key
CheckNSCP = 1

; Undocumented key
CheckDisk = 1

; Undocumented key
CheckSystem = 1

; Undocumented key
NRPEServer = 1
npolovenko
Support Tech
Posts: 3457
Joined: Mon May 15, 2017 5:00 pm

Re: host status keep showing as being down

Post by npolovenko »

@crystal, in addition to what @ kyang said, i'd recommend leaving the following two options empty, just like this:

Code: Select all

; Undocumented key
ssl options = 

; Undocumented key
verify mode = 
 
And insecure needs be set to true:

Code: Select all

; ALLOW INSECURE CHIPHERS and ENCRYPTION - Only enable this if you are using legacy check_nrpe client.
insecure = true
Then go to windows services and restart NSClient.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
dwasswa

Re: host status keep showing as being down

Post by dwasswa »

Hi @crystal,

Your nsclient.ini file shoud look like this

Code: Select all

# If you want to fill this file with all available options run the following command:
#   nscp settings --generate --add-defaults --load-all
# If you want to activate a module and bring in all its options use:
#   nscp settings --activate-module <MODULE NAME> --add-defaults
# For details run: nscp settings --help
; TODO
[/settings/default]
; Undocumented key
password = 12345 
; Undocumented key
allowed hosts = 127.0.0.1,::1,<add your xi IP Address here>
; CACHE ALLOWED HOSTS - If host names (DNS entries) should be cached, improves speed and security somewhat but won't allow you to have dynamic IPs for your Nagios server.
cache allowed hosts = 1
; TIMEOUT - Timeout when reading packets on incoming sockets. If the data has not arrived within this time we will bail out.
timeout = 30
; TODO
[/modules]
; Undocumented key
CheckHelpers = 1
; Undocumented key
CheckEventLog = 1
; Undocumented key
CheckNSCP = 1
; Undocumented key
CheckSystem = 1
; Undocumented key
NSClientServer = 1
; NRPEServer - A server that listens for incoming NRPE connection and processes incoming requests.
NRPEServer = 1
; CheckExternalScripts - Execute external scripts
CheckExternalScripts = 1
; CheckDisk - CheckDisk can check various file and disk related things.
CheckDisk = 1
; A set of options to configure the real time checks
[/settings/system/windows/real-time]
; Configure which services has to be in which state
[/settings/system/windows/service mapping]
; TODO
[/settings/system/windows/counters/default]
; TODO
[/settings/system/windows/counters]
; TODO
[/settings/log/file]
; TODO
[/settings/log]
; LOG LEVEL - Log level to use. Available levels are error,warning,info,debug,trace
level = debug
; DATEMASK - The size of the buffer to use when getting messages this affects the speed and maximum size of messages you can recieve.
date format = %Y-%m-%d %H:%M:%S
; FILENAME - The file to write log data to. Set this to none to disable log to file.
file name = ${exe-path}/nsclient.log
; TODO
[/settings/system/windows]
; DEFAULT LENGTH - Used to define the default interval for range buffer checks (ie. CPU).
default buffer length = 1h
; TODO
[/settings/external scripts/scripts/default]
; IGNORE PERF DATA - Do not parse performance data from the output
ignore perfdata = 1
; A list of wrapped scripts (ie. scruts using a template mechanism). The template used will be defined by the extension of the script.
[/settings/external scripts/wrapped scripts]
check_windows_time = check_windows_time.bat.pool.ntp.org $ARG1$ $ARG2$
; TODO
[/settings/external scripts/alias]
; TODO
[/settings/eventlog/real-time/filters/default]
; EMPTY MESSAGE - The message to display if nothing matches the filter (generally considered the ok state).
empty message = eventlog found no records
; MAGIMUM AGE - How long before reporting "ok". If this is set to "false" no periodic ok messages will be reported only errors.
maximum age = 5m
; A set of filters to use in real-time mode
[/settings/eventlog/real-time/filters]
; TODO
[/settings/eventlog/real-time]
; STARTUP AGE - The initial age to scan when starting NSClient++
startup age = 30m
; REAL TIME CHECKING - Spawns a background thread which detects issues and reports them back instantly.
enabled = 0
; LOGS TO CHECK - Comma separated list of logs to check
log = application,system
; DEBUG - Log missed records (useful to detect issues with filters) not useful in production as it is a bit of a resource hog.
debug = 0
; A list of scripts available to run from the CheckExternalScripts module. Syntax is: <command>=<script> <arguments>
[/settings/external scripts/scripts]
restart_service = scripts\restart_service.bat "$ARG1$"
check_windows_time=scripts\check_windows_time.bat $ARG1$
; TODO
[/settings/external scripts/alias/default]
; TODO
[/settings/shared session]
; TODO
[/settings/crash]
; RESTART SERVICE NAME - The url to submit crash reports to
restart target = NSCP
; CRASH ARCHIVE LOCATION - The folder to archive crash dumps in
archive folder = ${crash-folder}
; RESTART - Submit crash reports to nsclient.org (or your configured submission server)
restart = true
; SUBMISSION URL - The url to submit crash reports to
submit url = https://crash.nsclient.org/post
; ARCHIVE CRASHREPORTS - Archive crash reports in the archive folder
archive = true
; A set of filters to use in real-time mode
[/settings/system/windows/real-time/checks]
; TODO
[/settings/NSClient/server]
; ENABLE SSL ENCRYPTION - This option controls if SSL should be enabled.
use ssl = 0
; PORT NUMBER - Port to use for check_nt.
port = 12489
; PERFORMANCE DATA - Send performance data back to Nagios (set this to 0 to remove all performance data).
performance data = 1
; TODO
[/settings/external scripts]
; COMMAND TIMEOUT - The maximum time in seconds that a command can execute. (if more then this execution will be aborted). NOTICE this only affects external commands not internal ones.
timeout = 80
; COMMAND ARGUMENT PROCESSING - This option determines whether or not the we will allow clients to specify arguments to commands that are executed.
allow arguments = true
; COMMAND ALLOW NASTY META CHARS - This option determines whether or not the we will allow clients to specify nasty (as in |`&><'"\[]{}) characters in arguments.
allow nasty characters = true
; TODO
[/paths]
; Path for shared-path - 
shared-path = C:\Program Files\NSClient++
; Path for module-path - 
module-path = ${shared-path}/modules
; Path for crash-folder - 
crash-folder = ${shared-path}/crash-dumps
; Path for exe-path - 
exe-path = C:\Program Files\NSClient++
; Path for certificate-path - 
certificate-path = ${shared-path}/security
; Path for base-path - 
base-path = C:\Program Files\NSClient++
; Files to be included in the configuration
[/includes]
; TODO
[/settings/eventlog]
; DEBUG - Log more information when filtering (useful to detect issues with filters) not useful in production as it is a bit of a resource hog.
debug = 0
; LOOKUP NAMES - Lookup the names of eventlog files
lookup names = 1
; BUFFER_SIZE - The size of the buffer to use when getting messages this affects the speed and maximum size of messages you can recieve.
buffer size = 131072
; TODO
[/settings/external scripts/wrappings]
; BATCH FILE WRAPPING - 
bat = scripts\\%SCRIPT% %ARGS%
; VISUAL BASIC WRAPPING - 
vbs = cscript.exe //T:30 //NoLogo scripts\\lib\\wrapper.vbs %SCRIPT% %ARGS%
; POWERSHELL WRAPPING - 
ps1 = cmd /c echo If (-Not (Test-Path "scripts\%SCRIPT%") ) { Write-Host "UNKNOWN: Script `"%SCRIPT%`" not found."; exit(3) }; scripts\%SCRIPT% $ARGS$; exit($lastexitcode) | powershell.exe /noprofile -command -
; TODO
[/settings/NRPE/server]
; PORT NUMBER - Port to use for NRPE.
port = 5666
; EXTENDED RESPONSE - Send more then 1 return packet to allow response to go beyond payload size (requires modified client if legacy is true this defaults to false).
extended response = 1
; ENABLE SSL ENCRYPTION - This option controls if SSL should be enabled.
use ssl = 1
; COMMAND ARGUMENT PROCESSING - This option determines whether or not the we will allow clients to specify arguments to commands that are executed.
allow arguments = true
; COMMAND ALLOW NASTY META CHARS - This option determines whether or not the we will allow clients to specify nasty (as in |`&><'"\[]{}) characters in arguments.
allow nasty characters = true
; ALLOW INSECURE CHIPHERS and ENCRYPTION - Only enable this if you are using legacy check_nrpe client.
insecure = false
; Undocumented key
veryify mode = none
; Undocumented key
ssl options = no-sslv2,no-sslv3
; Undocumented key
verify mode = peer-cert
Show less
so go open that file delete everything there and copy and paste what i sent you.

After you change that file,go to the line

Code: Select all

allowed hosts = 127.0.0.1,::1,<add your xi IP Address here>
and add your nagios xi ip address where it says

Code: Select all

<add your xi IP Address here>
.

After you are done save and close the nsclient.ini file;then go and restart NSClient service on windows like so
restart_a_service.PNG
Now go open a terminal session on your XI machine and run the command

Code: Select all

service nagios restart
Make sure you have ports 12489 open by checking your firewall with

Code: Select all

firewall-cmd --list-all
Lastly go and reload your Nagios XI web UI.

Let me know if you have any questions or if that solved your problem
You do not have the required permissions to view the files attached to this post.
crystal
Posts: 25
Joined: Wed Sep 20, 2017 10:29 am

Re: host status keep showing as being down

Post by crystal »

Can nagios set up on an ec2 instance be used to monitor a windows device on a different network? Do I need a VPN to connect them to the same network
npolovenko
Support Tech
Posts: 3457
Joined: Mon May 15, 2017 5:00 pm

Re: host status keep showing as being down

Post by npolovenko »

@crystal You can. Please refer to this manual describing how to set up Nagios XI on Amazon cloud:

Code: Select all

https://assets.nagios.com/downloads/nagiosxi/docs/Using-Nagios-XI-In-Amazon-EC2-Cloud.pdf
And yes, you'd need EC2 to be able to communicate to your windows machine to monitor it. This can be achieved with VPN, port forwarding, etc.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
crystal
Posts: 25
Joined: Wed Sep 20, 2017 10:29 am

Re: host status keep showing as being down

Post by crystal »

do you have a recommendation on vpn or port forwarding guide?
npolovenko
Support Tech
Posts: 3457
Joined: Mon May 15, 2017 5:00 pm

Re: host status keep showing as being down

Post by npolovenko »

@crystal, Unfortunately, I don't think we do. That is because steps to create port forwarding would depend on your network setup, the model of your router in particular. Usually, it's as easy as typing your routers IP address in the browser and clicking on "port forwarding" in advanced settings. Then you need to type in your NRPE client's internal IP(the machine that runs NRPE), and assign it to the port 5666 on external router's IP address).
Port-Forwarding.jpg
After that use NRPE wizard on Nagios XI to add the host with the new IP.
https://assets.nagios.com/downloads/nag ... tocols.pdf

As far as VPN setup manual, I'll put it in our feature requests.
You do not have the required permissions to view the files attached to this post.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
crystal
Posts: 25
Joined: Wed Sep 20, 2017 10:29 am

Re: host status keep showing as being down

Post by crystal »

I used VirtualBox to setup nagios and tried to monitor my windows device but the same problem that only ping service status shows me up. I tried to open port 12489 but then I can't access nagios
npolovenko
Support Tech
Posts: 3457
Joined: Mon May 15, 2017 5:00 pm

Re: host status keep showing as being down

Post by npolovenko »

@crystal, Just to be clear, your Virtual Box that runs Nagios XI and your windows computer are on different networks or the same one? What tutorial did you use to install NSClient? Can you also go to ProgramFiles/NSClient++/ on your windows machine, and upload your nsclient.log and nsclient.ini files here?
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
crystal
Posts: 25
Joined: Wed Sep 20, 2017 10:29 am

Re: host status keep showing as being down

Post by crystal »

yeah, they are in the same network.
this is NsClient.ini:

Code: Select all

# If you want to fill this file with all available options run the following command:
#   nscp settings --generate --add-defaults --load-all
# If you want to activate a module and bring in all its options use:
#   nscp settings --activate-module <MODULE NAME> --add-defaults
# For details run: nscp settings --help
; TODO
[/settings/default]
; Undocumented key
password = 12345 
; Undocumented key
allowed hosts = 127.0.0.1,::1,192.168.64.82
; CACHE ALLOWED HOSTS - If host names (DNS entries) should be cached, improves speed and security somewhat but won't allow you to have dynamic IPs for your Nagios server.
cache allowed hosts = 1
; TIMEOUT - Timeout when reading packets on incoming sockets. If the data has not arrived within this time we will bail out.
timeout = 30
; TODO
[/modules]
; Undocumented key
CheckHelpers = 1
; Undocumented key
CheckEventLog = 1
; Undocumented key
CheckNSCP = 1
; Undocumented key
CheckSystem = 1
; Undocumented key
NSClientServer = 1
; NRPEServer - A server that listens for incoming NRPE connection and processes incoming requests.
NRPEServer = 1
; CheckExternalScripts - Execute external scripts
CheckExternalScripts = 1
; CheckDisk - CheckDisk can check various file and disk related things.
CheckDisk = 1
; A set of options to configure the real time checks
[/settings/system/windows/real-time]
; Configure which services has to be in which state
[/settings/system/windows/service mapping]
; TODO
[/settings/system/windows/counters/default]
; TODO
[/settings/system/windows/counters]
; TODO
[/settings/log/file]
; TODO
[/settings/log]
; LOG LEVEL - Log level to use. Available levels are error,warning,info,debug,trace
level = debug
; DATEMASK - The size of the buffer to use when getting messages this affects the speed and maximum size of messages you can recieve.
date format = %Y-%m-%d %H:%M:%S
; FILENAME - The file to write log data to. Set this to none to disable log to file.
file name = ${exe-path}/nsclient.log
; TODO
[/settings/system/windows]
; DEFAULT LENGTH - Used to define the default interval for range buffer checks (ie. CPU).
default buffer length = 1h
; TODO
[/settings/external scripts/scripts/default]
; IGNORE PERF DATA - Do not parse performance data from the output
ignore perfdata = 1
; A list of wrapped scripts (ie. scruts using a template mechanism). The template used will be defined by the extension of the script.
[/settings/external scripts/wrapped scripts]
check_windows_time = check_windows_time.bat.pool.ntp.org $ARG1$ $ARG2$
; TODO
[/settings/external scripts/alias]
; TODO
[/settings/eventlog/real-time/filters/default]
; EMPTY MESSAGE - The message to display if nothing matches the filter (generally considered the ok state).
empty message = eventlog found no records
; MAGIMUM AGE - How long before reporting "ok". If this is set to "false" no periodic ok messages will be reported only errors.
maximum age = 5m
; A set of filters to use in real-time mode
[/settings/eventlog/real-time/filters]
; TODO
[/settings/eventlog/real-time]
; STARTUP AGE - The initial age to scan when starting NSClient++
startup age = 30m
; REAL TIME CHECKING - Spawns a background thread which detects issues and reports them back instantly.
enabled = 0
; LOGS TO CHECK - Comma separated list of logs to check
log = application,system
; DEBUG - Log missed records (useful to detect issues with filters) not useful in production as it is a bit of a resource hog.
debug = 0
; A list of scripts available to run from the CheckExternalScripts module. Syntax is: <command>=<script> <arguments>
[/settings/external scripts/scripts]
restart_service = scripts\restart_service.bat "$ARG1$"
check_windows_time=scripts\check_windows_time.bat $ARG1$
; TODO
[/settings/external scripts/alias/default]
; TODO
[/settings/shared session]
; TODO
[/settings/crash]
; RESTART SERVICE NAME - The url to submit crash reports to
restart target = NSCP
; CRASH ARCHIVE LOCATION - The folder to archive crash dumps in
archive folder = ${crash-folder}
; RESTART - Submit crash reports to nsclient.org (or your configured submission server)
restart = true
; SUBMISSION URL - The url to submit crash reports to
submit url = https://crash.nsclient.org/post
; ARCHIVE CRASHREPORTS - Archive crash reports in the archive folder
archive = true
; A set of filters to use in real-time mode
[/settings/system/windows/real-time/checks]
; TODO
[/settings/NSClient/server]
; ENABLE SSL ENCRYPTION - This option controls if SSL should be enabled.
use ssl = 0
; PORT NUMBER - Port to use for check_nt.
port = 12489
; PERFORMANCE DATA - Send performance data back to Nagios (set this to 0 to remove all performance data).
performance data = 1
; TODO
[/settings/external scripts]
; COMMAND TIMEOUT - The maximum time in seconds that a command can execute. (if more then this execution will be aborted). NOTICE this only affects external commands not internal ones.
timeout = 80
; COMMAND ARGUMENT PROCESSING - This option determines whether or not the we will allow clients to specify arguments to commands that are executed.
allow arguments = true
; COMMAND ALLOW NASTY META CHARS - This option determines whether or not the we will allow clients to specify nasty (as in |`&><'"\[]{}) characters in arguments.
allow nasty characters = true
; TODO
[/paths]
; Path for shared-path - 
shared-path = C:\Program Files\NSClient++
; Path for module-path - 
module-path = ${shared-path}/modules
; Path for crash-folder - 
crash-folder = ${shared-path}/crash-dumps
; Path for exe-path - 
exe-path = C:\Program Files\NSClient++
; Path for certificate-path - 
certificate-path = ${shared-path}/security
; Path for base-path - 
base-path = C:\Program Files\NSClient++
; Files to be included in the configuration
[/includes]
; TODO
[/settings/eventlog]
; DEBUG - Log more information when filtering (useful to detect issues with filters) not useful in production as it is a bit of a resource hog.
debug = 0
; LOOKUP NAMES - Lookup the names of eventlog files
lookup names = 1
; BUFFER_SIZE - The size of the buffer to use when getting messages this affects the speed and maximum size of messages you can recieve.
buffer size = 131072
; TODO
[/settings/external scripts/wrappings]
; BATCH FILE WRAPPING - 
bat = scripts\\%SCRIPT% %ARGS%
; VISUAL BASIC WRAPPING - 
vbs = cscript.exe //T:30 //NoLogo scripts\\lib\\wrapper.vbs %SCRIPT% %ARGS%
; POWERSHELL WRAPPING - 
ps1 = cmd /c echo If (-Not (Test-Path "scripts\%SCRIPT%") ) { Write-Host "UNKNOWN: Script `"%SCRIPT%`" not found."; exit(3) }; scripts\%SCRIPT% $ARGS$; exit($lastexitcode) | powershell.exe /noprofile -command -
; TODO
[/settings/NRPE/server]
; PORT NUMBER - Port to use for NRPE.
port = 5666
; EXTENDED RESPONSE - Send more then 1 return packet to allow response to go beyond payload size (requires modified client if legacy is true this defaults to false).
extended response = 1
; ENABLE SSL ENCRYPTION - This option controls if SSL should be enabled.
use ssl = 1
; COMMAND ARGUMENT PROCESSING - This option determines whether or not the we will allow clients to specify arguments to commands that are executed.
allow arguments = true
; COMMAND ALLOW NASTY META CHARS - This option determines whether or not the we will allow clients to specify nasty (as in |`&><'"\[]{}) characters in arguments.
allow nasty characters = true
; ALLOW INSECURE CHIPHERS and ENCRYPTION - Only enable this if you are using legacy check_nrpe client.
insecure = false
; Undocumented key
veryify mode = none
; Undocumented key
ssl options = no-sslv2,no-sslv3
; Undocumented key
verify mode = peer-cert
Show less

Nsclient.log file

Code: Select all

2017-09-13 13:32:46: error:c:\source\nscp\modules\NRPEServer\NRPEServer.cpp:132: Certificate not found: C:\Program Files\NSClient++/security/certificate.pem (generating a default certificate)
2017-09-13 13:32:46: error:c:\source\nscp\modules\NRPEServer\NRPEServer.cpp:132: CA not found: C:\Program Files\NSClient++/security/ca.pem (generating a default CA)
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:332: On crash: restart: NSCP
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:344: Archiving crash dumps in: C:\Program Files\NSClient++/crash-dumps
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:410: booting::loading plugins
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: CheckDisk
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: CheckEventLog
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: CheckExternalScripts
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: CheckHelpers
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: CheckNSCP
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: CheckSystem
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: NRPEServer
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: NSClientServer
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\CheckDisk.dll.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\CheckDisk.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\CheckEventLog.dll.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\CheckEventLog.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\CheckExternalScripts.dll.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\CheckExternalScripts.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\CheckHelpers.dll.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\CheckHelpers.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\CheckNSCP.dll.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\CheckNSCP.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\CheckSystem.dll.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\CheckSystem.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\NRPEServer.dll.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\NRPEServer.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\NSClientServer.dll.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\NSClientServer.dll
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: CheckDisk
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: CheckEventLog
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: CheckExternalScripts
2017-09-28 15:20:46: debug:c:\source\nscp\modules\CheckExternalScripts\CheckExternalScripts.cpp:110: No aliases found (adding default)
2017-09-28 15:20:46: error:c:\source\nscp\modules\CheckExternalScripts\CheckExternalScripts.cpp:396: Failed to find wrapping for type: org
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: CheckHelpers
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: CheckNSCP
2017-09-28 15:20:46: debug:c:\source\nscp\modules\CheckNSCP\CheckNSCP.cpp:48: Crash folder is: C:\Program Files\NSClient++/crash-dumps
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: CheckSystem
2017-09-28 15:20:46: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: NRPEServer
2017-09-28 15:20:46: debug:c:\source\nscp\modules\NRPEServer\NRPEServer.cpp:137: Allowed hosts definition: 127.0.0.1(255.255.255.255), 172.31.29.254(255.255.255.255), ::1(ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff)
2017-09-28 15:20:47: debug:c:\source\nscp\include\socket/server.hpp:99: Binding to: [::]:5666(ipv6)
2017-09-28 15:20:47: debug:c:\source\nscp\include\socket/server.hpp:202: Attempting to bind to: [::]:5666(ipv6)
2017-09-28 15:20:47: debug:c:\source\nscp\include\socket/server.hpp:95: Binding to: 0.0.0.0:5666(ipv4), reopen: true, reuse: true
2017-09-28 15:20:47: debug:c:\source\nscp\include\socket/server.hpp:202: Attempting to bind to: 0.0.0.0:5666(ipv4)
2017-09-28 15:20:47: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: NSClientServer
2017-09-28 15:20:47: debug:c:\source\nscp\modules\NSClientServer\NSClientServer.cpp:91: Allowed hosts definition: 127.0.0.1(255.255.255.255), 172.31.29.254(255.255.255.255), ::1(ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff)
2017-09-28 15:20:47: debug:c:\source\nscp\include\socket/server.hpp:99: Binding to: [::]:12489(ipv6)
2017-09-28 15:20:47: debug:c:\source\nscp\include\socket/server.hpp:202: Attempting to bind to: [::]:12489(ipv6)
2017-09-28 15:20:47: debug:c:\source\nscp\include\socket/server.hpp:95: Binding to: 0.0.0.0:12489(ipv4), reopen: true, reuse: true
2017-09-28 15:20:47: debug:c:\source\nscp\include\socket/server.hpp:202: Attempting to bind to: 0.0.0.0:12489(ipv4)
2017-09-28 15:20:47: debug:c:\source\nscp\service\NSClient++.cpp:505: NSClient++ - 0.4.4.23 2016-04-05 Started!
2017-09-28 15:20:47: debug:c:\source\nscp\service\NSClient++.cpp:1363: Starting: DONE
2017-10-02 10:44:47: debug:c:\source\nscp\service\NSClient++.cpp:542: Attempting to stop all plugins
2017-10-02 10:44:47: debug:c:\source\nscp\service\NSClient++.cpp:544: Stopping all plugins
2017-10-02 10:44:47: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: CheckDisk.dll...
2017-10-02 10:44:47: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: CheckEventLog.dll...
2017-10-02 10:44:47: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: CheckExternalScripts.dll...
2017-10-02 10:44:47: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: CheckHelpers.dll...
2017-10-02 10:44:47: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: CheckNSCP.dll...
2017-10-02 10:44:47: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: CheckSystem.dll...
2017-10-02 10:44:47: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: NRPEServer.dll...
2017-10-02 10:44:47: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: NSClientServer.dll...
2017-10-02 10:44:47: debug:c:\source\nscp\service\NSClient++.cpp:555: Stopping: COM helper
2017-10-02 10:44:47: debug:c:\source\nscp\service\NSClient++.cpp:574: Stopping: Settings instance
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:332: On crash: restart: NSCP
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:344: Archiving crash dumps in: C:\Program Files\NSClient++/crash-dumps
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:410: booting::loading plugins
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: CheckDisk
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: CheckEventLog
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: CheckExternalScripts
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: CheckHelpers
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: CheckNSCP
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: CheckSystem
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: NRPEServer
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:173: Found: NSClientServer
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\CheckDisk.dll.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\CheckDisk.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\CheckEventLog.dll.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\CheckEventLog.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\CheckExternalScripts.dll.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\CheckExternalScripts.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\CheckHelpers.dll.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\CheckHelpers.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\CheckNSCP.dll.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\CheckNSCP.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\CheckSystem.dll.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\CheckSystem.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\NRPEServer.dll.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\NRPEServer.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:776: C:\Program Files\NSClient++/modules\NSClientServer.dll.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:778: adding C:\Program Files\NSClient++/modules\NSClientServer.dll
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: CheckDisk
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: CheckEventLog
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: CheckExternalScripts
2017-10-02 10:44:48: debug:c:\source\nscp\modules\CheckExternalScripts\CheckExternalScripts.cpp:110: No aliases found (adding default)
2017-10-02 10:44:48: error:c:\source\nscp\modules\CheckExternalScripts\CheckExternalScripts.cpp:396: Failed to find wrapping for type: org
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: CheckHelpers
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: CheckNSCP
2017-10-02 10:44:48: debug:c:\source\nscp\modules\CheckNSCP\CheckNSCP.cpp:48: Crash folder is: C:\Program Files\NSClient++/crash-dumps
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: CheckSystem
2017-10-02 10:44:48: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: NRPEServer
2017-10-02 10:44:48: debug:c:\source\nscp\modules\NRPEServer\NRPEServer.cpp:137: Allowed hosts definition: 127.0.0.1(255.255.255.255), 172.31.29.254(255.255.255.255), 192.168.64.82(255.255.255.255), ::1(ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff)
2017-10-02 10:44:49: debug:c:\source\nscp\include\socket/server.hpp:99: Binding to: [::]:5666(ipv6)
2017-10-02 10:44:49: debug:c:\source\nscp\include\socket/server.hpp:202: Attempting to bind to: [::]:5666(ipv6)
2017-10-02 10:44:49: debug:c:\source\nscp\include\socket/server.hpp:95: Binding to: 0.0.0.0:5666(ipv4), reopen: true, reuse: true
2017-10-02 10:44:49: debug:c:\source\nscp\include\socket/server.hpp:202: Attempting to bind to: 0.0.0.0:5666(ipv4)
2017-10-02 10:44:49: debug:c:\source\nscp\service\NSClient++.cpp:737: Loading plugin: NSClientServer
2017-10-02 10:44:49: debug:c:\source\nscp\modules\NSClientServer\NSClientServer.cpp:91: Allowed hosts definition: 127.0.0.1(255.255.255.255), 172.31.29.254(255.255.255.255), 192.168.64.82(255.255.255.255), ::1(ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff)
2017-10-02 10:44:49: debug:c:\source\nscp\include\socket/server.hpp:99: Binding to: [::]:12489(ipv6)
2017-10-02 10:44:49: debug:c:\source\nscp\include\socket/server.hpp:202: Attempting to bind to: [::]:12489(ipv6)
2017-10-02 10:44:49: debug:c:\source\nscp\include\socket/server.hpp:95: Binding to: 0.0.0.0:12489(ipv4), reopen: true, reuse: true
2017-10-02 10:44:49: debug:c:\source\nscp\include\socket/server.hpp:202: Attempting to bind to: 0.0.0.0:12489(ipv4)
2017-10-02 10:44:49: debug:c:\source\nscp\service\NSClient++.cpp:505: NSClient++ - 0.4.4.23 2016-04-05 Started!
2017-10-02 10:44:49: debug:c:\source\nscp\service\NSClient++.cpp:1363: Starting: DONE
2017-10-02 11:58:28: debug:c:\source\nscp\service\NSClient++.cpp:542: Attempting to stop all plugins
2017-10-02 11:58:28: debug:c:\source\nscp\service\NSClient++.cpp:544: Stopping all plugins
2017-10-02 11:58:28: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: CheckDisk.dll...
2017-10-02 11:58:28: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: CheckEventLog.dll...
2017-10-02 11:58:28: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: CheckExternalScripts.dll...
2017-10-02 11:58:28: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: CheckHelpers.dll...
2017-10-02 11:58:28: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: CheckNSCP.dll...
2017-10-02 11:58:28: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: CheckSystem.dll...
2017-10-02 11:58:28: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: NRPEServer.dll...
2017-10-02 11:58:28: debug:c:\source\nscp\service\NSClient++.cpp:641: Unloading plugin: NSClientServer.dll...
2017-10-02 11:58:28: debug:c:\source\nscp\service\NSClient++.cpp:555: Stopping: COM helper
2017-10-02 11:58:28: debug:c:\source\nscp\service\NSClient++.cpp:574: Stopping: Settings instance
2017-10-02 11:58:32: debug:c:\source\master\service\logger\nsclient_logger.cpp:52: Creating logger: threaded-file
2017-10-02 11:58:32: debug:c:\source\master\service\NSClient++.cpp:333: On crash: restart: NSCP
2017-10-02 11:58:32: debug:c:\source\master\service\NSClient++.cpp:345: Archiving crash dumps in: C:\Program Files\NSClient++/crash-dumps
2017-10-02 11:58:32: debug:c:\source\master\service\NSClient++.cpp:371: booting::loading plugins
2017-10-02 11:58:32: debug:c:\source\master\service\NSClient++.cpp:198: Found: NRPEServer
2017-10-02 11:58:32: debug:c:\source\master\service\NSClient++.cpp:198: Found: NSClientServer
2017-10-02 11:58:32: debug:c:\source\master\service\NSClient++.cpp:687: C:\Program Files\NSClient++/modules\NRPEServer.dll.dll
2017-10-02 11:58:32: debug:c:\source\master\service\NSClient++.cpp:689: adding C:\Program Files\NSClient++/modules\NRPEServer.dll
2017-10-02 11:58:33: debug:c:\source\master\service\NSClient++.cpp:687: C:\Program Files\NSClient++/modules\NSClientServer.dll.dll
2017-10-02 11:58:33: debug:c:\source\master\service\NSClient++.cpp:689: adding C:\Program Files\NSClient++/modules\NSClientServer.dll
2017-10-02 11:58:33: debug:c:\source\master\service\NSClient++.cpp:648: Loading plugin: NRPEServer
2017-10-02 11:58:33: debug:c:\source\master\modules\NRPEServer\NRPEServer.cpp:126: Allowed hosts definition: 127.0.0.1(255.255.255.255), 192.168.64.82(255.255.255.255)
2017-10-02 11:58:33: debug:c:\source\master\modules\NRPEServer\NRPEServer.cpp:127: Server config: address: :5666, ssl enabled: peer-cert, cert: C:\Program Files\NSClient++/security/certificate.pem (PEM), , dh: C:\Program Files\NSClient++/security/nrpe_dh_512.pem, ciphers: ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH, ca: C:\Program Files\NSClient++/security/ca.pem, options: no-sslv2,no-sslv3
2017-10-02 11:58:33: debug:c:\source\master\include\socket/server.hpp:111: Binding to: [::]:5666(ipv6)
2017-10-02 11:58:33: debug:c:\source\master\include\socket/server.hpp:214: Attempting to bind to: [::]:5666(ipv6)
2017-10-02 11:58:33: debug:c:\source\master\include\socket/server.hpp:107: Binding to: 0.0.0.0:5666(ipv4), reopen: true, reuse: true
2017-10-02 11:58:33: debug:c:\source\master\include\socket/server.hpp:214: Attempting to bind to: 0.0.0.0:5666(ipv4)
2017-10-02 11:58:33: debug:c:\source\master\service\NSClient++.cpp:648: Loading plugin: NSClientServer
2017-10-02 11:58:33: debug:c:\source\master\modules\NSClientServer\NSClientServer.cpp:87: Allowed hosts definition: 127.0.0.1(255.255.255.255), 192.168.64.82(255.255.255.255)
2017-10-02 11:58:33: debug:c:\source\master\include\socket/server.hpp:111: Binding to: [::]:12489(ipv6)
2017-10-02 11:58:33: debug:c:\source\master\include\socket/server.hpp:214: Attempting to bind to: [::]:12489(ipv6)
2017-10-02 11:58:33: debug:c:\source\master\include\socket/server.hpp:107: Binding to: 0.0.0.0:12489(ipv4), reopen: true, reuse: true
2017-10-02 11:58:33: debug:c:\source\master\include\socket/server.hpp:214: Attempting to bind to: 0.0.0.0:12489(ipv4)
2017-10-02 11:58:33: debug:c:\source\master\service\NSClient++.cpp:472: NSClient++ - 0.5.1.44 2017-08-30 Started!
2017-10-02 11:58:33: debug:c:\source\master\service\NSClient++.cpp:1332: Starting: DONE
2017-10-02 12:04:26: debug:c:\source\master\service\NSClient++.cpp:478: Attempting to stop all plugins
2017-10-02 12:04:26: debug:c:\source\master\service\NSClient++.cpp:480: Stopping all plugins
2017-10-02 12:04:26: debug:c:\source\master\service\NSClient++.cpp:531: Unloading plugin: NRPEServer...
2017-10-02 12:04:26: debug:c:\source\master\service\NSClient++.cpp:531: Unloading plugin: NSClientServer...
2017-10-02 12:04:26: debug:c:\source\master\service\NSClient++.cpp:491: Stopping: COM helper
2017-10-02 12:04:26: debug:c:\source\master\service\NSClient++.cpp:500: Stopping: Settings instance
2017-10-02 12:04:28: debug:c:\source\master\service\logger\nsclient_logger.cpp:52: Creating logger: threaded-file
2017-10-02 12:04:28: debug:c:\source\master\service\NSClient++.cpp:333: On crash: restart: NSCP
2017-10-02 12:04:28: debug:c:\source\master\service\NSClient++.cpp:345: Archiving crash dumps in: C:\Program Files\NSClient++/crash-dumps
2017-10-02 12:04:28: debug:c:\source\master\service\NSClient++.cpp:371: booting::loading plugins
2017-10-02 12:04:28: debug:c:\source\master\service\NSClient++.cpp:198: Found: NRPEServer
2017-10-02 12:04:28: debug:c:\source\master\service\NSClient++.cpp:198: Found: NSClientServer
2017-10-02 12:04:28: debug:c:\source\master\service\NSClient++.cpp:687: C:\Program Files\NSClient++/modules\NRPEServer.dll.dll
2017-10-02 12:04:28: debug:c:\source\master\service\NSClient++.cpp:689: adding C:\Program Files\NSClient++/modules\NRPEServer.dll
2017-10-02 12:04:28: debug:c:\source\master\service\NSClient++.cpp:687: C:\Program Files\NSClient++/modules\NSClientServer.dll.dll
2017-10-02 12:04:28: debug:c:\source\master\service\NSClient++.cpp:689: adding C:\Program Files\NSClient++/modules\NSClientServer.dll
2017-10-02 12:04:28: debug:c:\source\master\service\NSClient++.cpp:648: Loading plugin: NRPEServer
2017-10-02 12:04:28: debug:c:\source\master\modules\NRPEServer\NRPEServer.cpp:126: Allowed hosts definition: 127.0.0.1(255.255.255.255), 192.168.64.82(255.255.255.255), 172.31.29.254(255.255.255.255)
2017-10-02 12:04:28: debug:c:\source\master\modules\NRPEServer\NRPEServer.cpp:127: Server config: address: :5666, ssl enabled: peer-cert, cert: C:\Program Files\NSClient++/security/certificate.pem (PEM), , dh: C:\Program Files\NSClient++/security/nrpe_dh_512.pem, ciphers: ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH, ca: C:\Program Files\NSClient++/security/ca.pem, options: no-sslv2,no-sslv3
2017-10-02 12:04:28: debug:c:\source\master\include\socket/server.hpp:111: Binding to: [::]:5666(ipv6)
2017-10-02 12:04:28: debug:c:\source\master\include\socket/server.hpp:214: Attempting to bind to: [::]:5666(ipv6)
2017-10-02 12:04:28: debug:c:\source\master\include\socket/server.hpp:107: Binding to: 0.0.0.0:5666(ipv4), reopen: true, reuse: true
2017-10-02 12:04:28: debug:c:\source\master\include\socket/server.hpp:214: Attempting to bind to: 0.0.0.0:5666(ipv4)
2017-10-02 12:04:28: debug:c:\source\master\service\NSClient++.cpp:648: Loading plugin: NSClientServer
2017-10-02 12:04:28: debug:c:\source\master\modules\NSClientServer\NSClientServer.cpp:87: Allowed hosts definition: 127.0.0.1(255.255.255.255), 192.168.64.82(255.255.255.255), 172.31.29.254(255.255.255.255)
2017-10-02 12:04:28: debug:c:\source\master\include\socket/server.hpp:111: Binding to: [::]:12489(ipv6)
2017-10-02 12:04:28: debug:c:\source\master\include\socket/server.hpp:214: Attempting to bind to: [::]:12489(ipv6)
2017-10-02 12:04:28: debug:c:\source\master\include\socket/server.hpp:107: Binding to: 0.0.0.0:12489(ipv4), reopen: true, reuse: true
2017-10-02 12:04:28: debug:c:\source\master\include\socket/server.hpp:214: Attempting to bind to: 0.0.0.0:12489(ipv4)
2017-10-02 12:04:28: debug:c:\source\master\service\NSClient++.cpp:472: NSClient++ - 0.5.1.44 2017-08-30 Started!
2017-10-02 12:04:28: debug:c:\source\master\service\NSClient++.cpp:1332: Starting: DONE
2017-10-02 15:47:22: debug:c:\source\master\service\NSClient++.cpp:478: Attempting to stop all plugins
2017-10-02 15:47:22: debug:c:\source\master\service\NSClient++.cpp:480: Stopping all plugins
2017-10-02 15:47:22: debug:c:\source\master\service\NSClient++.cpp:531: Unloading plugin: NRPEServer...
2017-10-02 15:47:22: debug:c:\source\master\service\NSClient++.cpp:531: Unloading plugin: NSClientServer...
2017-10-02 15:47:22: debug:c:\source\master\service\NSClient++.cpp:491: Stopping: COM helper
2017-10-02 15:47:22: debug:c:\source\master\service\NSClient++.cpp:500: Stopping: Settings instance
2017-10-02 15:47:23: debug:c:\source\master\service\logger\nsclient_logger.cpp:52: Creating logger: threaded-file
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:333: On crash: restart: NSCP
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:345: Archiving crash dumps in: C:\Program Files\NSClient++/crash-dumps
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:371: booting::loading plugins
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:198: Found: CheckDisk
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:198: Found: CheckEventLog
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:198: Found: CheckExternalScripts
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:198: Found: CheckHelpers
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:198: Found: CheckNSCP
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:198: Found: CheckSystem
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:198: Found: NRPEServer
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:198: Found: NSClientServer
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:687: C:\Program Files\NSClient++/modules\CheckDisk.dll.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:689: adding C:\Program Files\NSClient++/modules\CheckDisk.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:687: C:\Program Files\NSClient++/modules\CheckEventLog.dll.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:689: adding C:\Program Files\NSClient++/modules\CheckEventLog.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:687: C:\Program Files\NSClient++/modules\CheckExternalScripts.dll.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:689: adding C:\Program Files\NSClient++/modules\CheckExternalScripts.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:687: C:\Program Files\NSClient++/modules\CheckHelpers.dll.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:689: adding C:\Program Files\NSClient++/modules\CheckHelpers.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:687: C:\Program Files\NSClient++/modules\CheckNSCP.dll.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:689: adding C:\Program Files\NSClient++/modules\CheckNSCP.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:687: C:\Program Files\NSClient++/modules\CheckSystem.dll.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:689: adding C:\Program Files\NSClient++/modules\CheckSystem.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:687: C:\Program Files\NSClient++/modules\NRPEServer.dll.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:689: adding C:\Program Files\NSClient++/modules\NRPEServer.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:687: C:\Program Files\NSClient++/modules\NSClientServer.dll.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:689: adding C:\Program Files\NSClient++/modules\NSClientServer.dll
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:648: Loading plugin: CheckDisk
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:648: Loading plugin: CheckEventLog
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:648: Loading plugin: CheckExternalScripts
2017-10-02 15:47:23: debug:c:\source\master\modules\CheckExternalScripts\CheckExternalScripts.cpp:131: No aliases found (adding default)
2017-10-02 15:47:23: error:c:\source\master\modules\CheckExternalScripts\CheckExternalScripts.cpp:541: Failed to find wrapping for type: org
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:648: Loading plugin: CheckHelpers
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:648: Loading plugin: CheckNSCP
2017-10-02 15:47:23: debug:c:\source\master\modules\CheckNSCP\CheckNSCP.cpp:51: Crash folder is: C:\Program Files\NSClient++/crash-dumps
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:648: Loading plugin: CheckSystem
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:648: Loading plugin: NRPEServer
2017-10-02 15:47:23: debug:c:\source\master\modules\NRPEServer\NRPEServer.cpp:126: Allowed hosts definition: 127.0.0.1(255.255.255.255), 192.168.64.82(255.255.255.255), ::1(ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff)
2017-10-02 15:47:23: debug:c:\source\master\modules\NRPEServer\NRPEServer.cpp:127: Server config: address: :5666, ssl enabled: peer-cert, cert: C:\Program Files\NSClient++/security/certificate.pem (PEM), , dh: C:\Program Files\NSClient++/security/nrpe_dh_512.pem, ciphers: ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH, ca: C:\Program Files\NSClient++/security/ca.pem, options: no-sslv2,no-sslv3
2017-10-02 15:47:23: debug:c:\source\master\include\socket/server.hpp:111: Binding to: [::]:5666(ipv6)
2017-10-02 15:47:23: debug:c:\source\master\include\socket/server.hpp:214: Attempting to bind to: [::]:5666(ipv6)
2017-10-02 15:47:23: debug:c:\source\master\include\socket/server.hpp:107: Binding to: 0.0.0.0:5666(ipv4), reopen: true, reuse: true
2017-10-02 15:47:23: debug:c:\source\master\include\socket/server.hpp:214: Attempting to bind to: 0.0.0.0:5666(ipv4)
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:648: Loading plugin: NSClientServer
2017-10-02 15:47:23: debug:c:\source\master\modules\NSClientServer\NSClientServer.cpp:87: Allowed hosts definition: 127.0.0.1(255.255.255.255), 192.168.64.82(255.255.255.255), ::1(ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff)
2017-10-02 15:47:23: debug:c:\source\master\include\socket/server.hpp:111: Binding to: [::]:12489(ipv6)
2017-10-02 15:47:23: debug:c:\source\master\include\socket/server.hpp:214: Attempting to bind to: [::]:12489(ipv6)
2017-10-02 15:47:23: debug:c:\source\master\include\socket/server.hpp:107: Binding to: 0.0.0.0:12489(ipv4), reopen: true, reuse: true
2017-10-02 15:47:23: debug:c:\source\master\include\socket/server.hpp:214: Attempting to bind to: 0.0.0.0:12489(ipv4)
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:472: NSClient++ - 0.5.1.44 2017-08-30 Started!
2017-10-02 15:47:23: debug:c:\source\master\service\NSClient++.cpp:1332: Starting: DONE
2017-10-02 15:47:23: debug:c:\source\master\modules\CheckSystem\pdh_thread.cpp:169: Loading counter: disk_queue_length_0 C: = \\DESKTOP-1TSCVF7\PhysicalDisk(0 C:)\% Disk Time
2017-10-02 15:47:23: debug:c:\source\master\modules\CheckSystem\pdh_thread.cpp:169: Loading counter: disk_queue_length_1 E: = \\DESKTOP-1TSCVF7\PhysicalDisk(1 E:)\% Disk Time
2017-10-02 15:47:23: debug:c:\source\master\modules\CheckSystem\pdh_thread.cpp:169: Loading counter: disk_queue_length__Total = \\DESKTOP-1TSCVF7\PhysicalDisk(_Total)\% Disk Time
Last edited by tgriep on Tue Oct 03, 2017 9:45 am, edited 1 time in total.
Reason: Added Code Wraps around large output.
Locked