- Timestamp:
- 05/23/05 21:24:32 (8 years ago)
- Branches:
- master, 0.4.0, 0.4.1, 0.4.2, stable
- Children:
- 6654022
- Parents:
- af5bc4b
- Location:
- docs
- Files:
-
- 11 edited
-
CheckDisk/index.html (modified) (5 diffs)
-
CheckEventLog/index.html (modified) (2 diffs)
-
CheckHelpers/index.html (modified) (8 diffs)
-
CheckSystem/index.html (modified) (5 diffs)
-
Configuration/index.html (modified) (9 diffs)
-
FileLogger/index.html (modified) (1 diff)
-
NRPEListener/index.html (modified) (1 diff)
-
SysTray/index.html (modified) (1 diff)
-
index.html (modified) (1 diff)
-
nscplus.css (modified) (1 diff)
-
welcome.html (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
docs/CheckDisk/index.html
re655f61 r1d9338a 1 1 <html> 2 3 2 <head> 4 3 <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> 5 4 <title>CheckDisk</title> 6 5 <link rel="stylesheet" type="text/css" href="../nscplus.css"> 6 <base target="_self"> 7 7 </head> 8 8 … … 12 12 <h1>CheckDisk.dll</h1> 13 13 <p>The CheckDisk module has various disk related checks currently focusing on 14 size. But hopefully it will be extended with date exist ance and many other disk15 related checks in the fu rture. Feel free to request checks that you need.</p>14 size. But hopefully it will be extended with date existence and many other disk 15 related checks in the future. Feel free to request checks that you need.</p> 16 16 <table class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" id="table4"> 17 17 <tr> … … 91 91 </table> 92 92 <p>The Size with optional postfix is a way to simply specify large sizes by 93 adding unit postfix. The ava lible postfixes are B for Byte, K for KiloByte,94 M for Mega Byte and finally G for GigaByte. </p>93 adding unit postfix. The available postfixes are B for Byte, K for Kilobyte, 94 M for Megabyte and finally G for Gigabyte. </p> 95 95 <h3>Examples</h3> 96 96 <div class="example"> 97 97 <ul> 98 98 <li> 99 <p> Check the size of the windows directory and make sure it stays100 below 1 gigabyte:</p>99 <p><b>Check the size of the windows directory and make sure it stays below 100 1 gigabyte:</b></p> 101 101 <p><code>CheckFileSize ShowAll MaxWarn=1024M MaxCrit=4096M File:WIN=c:\WINDOWS\*.*</code></p> 102 102 <p><code>WARNING: WIN: 2G (2325339822B)|WIN=2325339822;1073741824;4294967296</code></p> 103 </li> 104 <li> 105 <p>Check the size of the pagefile.sys and make sure it stays 106 above 1 gigabyte:</p> 103 <div class="config"> 104 <p>define command { </p> 105 <p> command_name CheckFileSize </p> 106 <p> command_line check_nrpe -H $HOSTADDRESS$ -p 107 5666 -c CheckFileSize -a ShowAll MaxWarn=$ARG1$ MaxCrit=$ARG2$ 108 File:$ARG4$=$ARG5$ </p> 109 <p>}</p> 110 <p> check_command CheckFileSize!1024M!4096M!WIN!c:\WINDOWS\*.* 111 </p> 112 </div> 113 </li> 114 <li> 115 <p><b>Check the size of the pagefile.sys and make sure it stays 116 above 1 gigabyte:</b></p> 107 117 <p><code>CheckFileSize ShowAll MinWarn=1G MinCrit=512M File=c:\pagefile.sys</code></p> 108 118 <p><code>OK: c:\pagefile.sys: 1G (1610612736B)</code></p> 119 <div class="config"> 120 <p>define command { </p> 121 <p> command_name CheckPageFile </p> 122 <p> command_line check_nrpe -H $HOSTADDRESS$ -p 123 5666 -c CheckFileSize -a ShowAll MinWarn=$ARG1$ MinCrit=$ARG2$ 124 File:PageFile=c:\pagefile.sys </p> 125 <p>}</p> 126 <p> check_command CheckPageFile!1G!512M</p> 127 </div> 109 128 </li> 110 129 </ul> … … 161 180 <td valign="top">FIXED, CDROM, REMOVABLE</td> 162 181 <td valign="top">Filter for drive type to prevent checking drives of 163 certain kinds (most useful when using CheckAll). The default is 164 FIXED</td> 182 certain kinds (most useful when using CheckAll). The default is FIXED</td> 165 183 </tr> 166 184 <tr> … … 171 189 </table> 172 190 <p>The Size with optional postfix is a way to simply specify large sizes by 173 adding unit postfix. The avail ible postfixes are B for Byte, K for KiloByte,174 M for Mega Byte, G for GigaByte and finally % for percent free space. </p>191 adding unit postfix. The available postfixes are B for Byte, K for Kilobyte, 192 M for Megabyte, G for Gigabyte and finally % for percent free space. </p> 175 193 <h3>Examples</h3> 176 194 <div class="example"> 177 195 <ul> 178 196 <li> 179 <p> Check the size of C:\ and make sure it has 50% free space:</p>180 <p><code>CheckDriveSize ShowAll MaxWarn=50% Max Warn=75% Drive=c:\</code></p>197 <p><b>Check the size of C:\ and make sure it has 50% free space:</b></p> 198 <p><code>CheckDriveSize ShowAll MaxWarn=50% MaxCrit=75% Drive=c:\</code></p> 181 199 <p><code>OK: c:: 63G (68374007808B)|c:=85% 50;75;</code></p> 182 </li> 183 <li> 184 <p>To check the size of mounted volume c:\volumne_test and make sure it has 1M free space</p> 185 <p><code>CheckDriveSize ShowAll MaxWarn=1M MaxCrit=2M Drive="c:\\volumne_test\\"</code></p> 200 <div class="config"> 201 <p>define command { </p> 202 <p> command_name CheckDriveSize </p> 203 <p> command_line check_nrpe -H $HOSTADDRESS$ -p 204 5666 -c CheckDriveSize -a Drive=$ARG1$ ShowAll MaxWarn=$ARG2$ 205 MaxCrit=$ARG3$ </p> 206 <p>}</p> 207 <p> check_command CheckDriveSize!C:\!50%!75%</p> 208 </div> 209 </li> 210 <li> 211 <p><b>To check the size of mounted volume c:\volumne_test and make sure 212 it has 1M free space</b></p> 213 <p><code>CheckDriveSize ShowAll MaxWarn=1M MaxCrit=2M Drive="c:\\volumne_test\\"</code></p> 186 214 <p><code>CRITICAL: c:\volumne_test\: 3M (4193280B)|c:\volumne_test\=4193280;0;0;</code></p> 187 </li> 188 <li> 189 <p>To check the size of all fixed and network drives and make sure they are at least 50% full</p> 190 <p><code>CheckDriveSize -a MinWarn=50% MinCrit=25% CheckAll FilterType=FIXED FilterType=REMOTE</code></p> 191 <p><code>WARNING: X:\: 28% < warning|C:\=84% 50%;25%; X:\=28% 50%;25%; Y:\=98% 50%;25%;</code></p> 215 <div class="config"> 216 <p> check_command CheckDriveSize!<code>c:\volumne_test\</code>!1M!2M</p> 217 </div> 218 </li> 219 <li> 220 <p><b>To check the size of all fixed and network drives and make sure they 221 are at least 50% full</b></p> 222 <p><code>CheckDriveSize -a MinWarn=50% MinCrit=25% CheckAll FilterType=FIXED 223 FilterType=REMOTE</code></p> 224 <p><code>WARNING: X:\: 28% < warning|C:\=84% 50%;25%; X:\=28% 50%;25%; 225 Y:\=98% 50%;25%;</code></p> 226 <div class="config"> 227 <p>define command { </p> 228 <p> command_name CheckAllDrives </p> 229 <p> command_line check_nrpe -H $HOSTADDRESS$ -p 230 5666 -c CheckDriveSize -a Drive=$ARG1$ CheckAll FilterType=FIXED 231 FilterType=REMOTE MinWarn=$ARG1$ MinCrit=$ARG2$ </p> 232 <p>}</p> 233 <p> check_command CheckAllDrives!25%!50%</p> 234 </div> 192 235 </li> 193 236 </ul> 194 237 </div> 195 238 </div> 239 196 240 </body> 197 241 -
docs/CheckEventLog/index.html
re655f61 r1d9338a 1 1 <html> 2 3 2 <head> 4 3 <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> 4 <meta http-equiv="Content-Language" content="en-us"> 5 5 <title>CheckEventLog</title> 6 6 <link rel="stylesheet" type="text/css" href="../nscplus.css"> 7 <base target="_self"> 7 8 </head> 8 9 … … 28 29 <p>Yet to be written</p> 29 30 <p>A quick introduction though:</p> 30 <p>First option is the log file to parse. (Application, System etc)</p>31 <p>First option is the log file to parse. (Application, System etc)</p> 31 32 <p>Options have the following format.</p> 32 33 <p>warn.require.eventType=warning</p> -
docs/CheckHelpers/index.html
re655f61 r1d9338a 3 3 <head> 4 4 <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> 5 <meta http-equiv="Content-Language" content="en-us"> 5 6 <title>CheckDisk</title> 6 7 <link rel="stylesheet" type="text/css" href="../nscplus.css"> 8 <base target="_self"> 7 9 </head> 8 10 … … 20 22 <tr> 21 23 <td valign="top">CheckAlwaysOK</td> 22 <td valign="top">Alter the retu n code of another check to always return24 <td valign="top">Alter the return code of another check to always return 23 25 OK.</td> 24 26 </tr> 25 27 <tr> 26 28 <td valign="top">CheckAlwaysCRITICAL</td> 27 <td valign="top">Alter the retu n code of another check to always return29 <td valign="top">Alter the return code of another check to always return 28 30 CRITICAL.</td> 29 31 </tr> 30 32 <tr> 31 33 <td valign="top">CheckAlwaysWARNING</td> 32 <td valign="top">Alter the retu n code of another check to always return34 <td valign="top">Alter the return code of another check to always return 33 35 WARNING.</td> 34 36 </tr> 35 37 <tr> 36 38 <td valign="top">CheckMultiple</td> 37 <td valign="top">Runs multiple checks and returns the worst a state.38 Usefull for minimizing network traffic and command defenitions.</td>39 <td valign="top">Runs multiple checks and returns the worst state. Useful 40 for minimizing network traffic and command definitions.</td> 39 41 </tr> 40 42 </table> … … 42 44 <p><i>This module has no configuration directives.</i></p> 43 45 <h2>CheckAlwaysOK</h2> 44 <p>Runs another check and a ters the return state to always return OK.</p>46 <p>Runs another check and alters the return state to always return OK.</p> 45 47 <table class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" id="table5"> 46 48 <tr> … … 73 75 </div> 74 76 <h2>CheckAlwaysCRITICAL</h2> 75 <p>Runs another check and a terthe return state to always return CRITICAL.</p>77 <p>Runs another check and alters the return state to always return CRITICAL.</p> 76 78 <table class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" id="table5"> 77 79 <tr> … … 104 106 </div> 105 107 <h2>CheckAlwaysWARNING</h2> 106 <p>Runs another check and a ter the return state to always return WARNING.</p>108 <p>Runs another check and alter the return state to always return WARNING.</p> 107 109 <table class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" id="table5"> 108 110 <tr> … … 135 137 </div> 136 138 <h2>CheckMultiple</h2> 137 <p>Runs multiple checks and returns the worst state. It allows you to check an entire system in one go.</p> 139 <p>Runs multiple checks and returns the worst state. It allows you to check 140 an entire system in one go.</p> 138 141 <table class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" id="table5"> 139 142 <tr> … … 145 148 <td valign="top">command</td> 146 149 <td valign="top">The command to run</td> 147 <td valign="top">A command to execute, you can have any number of 148 thisoption.</td>150 <td valign="top">A command to execute, you can have any number of this 151 option.</td> 149 152 </tr> 150 153 </table> … … 153 156 <ul> 154 157 <li> 155 <p>Run two checks (CheckDriveSize and ChEckMeM) and return the worst state. Performance data and 156 message is collected and concatenated.</p> 157 <p><code>CheckMultiple command=CheckDriveSize MaxWarn=1M MaxCrit=2M Drive=c:\\volumne_test\\ command=ChEckMeM MaxWarn=80% MaxCrit=90%</code></p> 158 <p><code>CRITICAL: c:\volumne_test\: 3M (4193280B) > critical, OK memory within bounds.|c:\volumne_test\=4193280;1024K (1048576B);2M (2097152B); page=31% 80%;90%;</code></p> 158 <p>Run two checks (CheckDriveSize and ChEckMeM) and return the worst 159 state. Performance data and message is collected and concatenated.</p> 160 <p><code>CheckMultiple command=CheckDriveSize MaxWarn=1M MaxCrit=2M 161 Drive=c:\\volumne_test\\ command=ChEckMeM MaxWarn=80% MaxCrit=90%</code></p> 162 <p><code>CRITICAL: c:\volumne_test\: 3M (4193280B) > critical, OK memory 163 within bounds.|c:\volumne_test\=4193280;1024K (1048576B);2M (2097152B); 164 page=31% 80%;90%;</code></p> 159 165 </li> 160 166 </ul> -
docs/CheckSystem/index.html
re655f61 r1d9338a 3 3 <head> 4 4 <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> 5 <meta http-equiv="Content-Language" content="en-us"> 5 6 <title>CheckSystem</title> 6 7 <link rel="stylesheet" type="text/css" href="../nscplus.css"> … … 42 43 <p>This module needs configuration as PDH counters are version and language 43 44 specific. This means that unless you use an English language windows 2000 you 44 will most likely have to edit this. There is also some other twe ks that can45 will most likely have to edit this. There is also some other tweaks that can 45 46 be configured such as check resolution and buffer size. For more details on 46 47 how to configure this refer to the Configuration section.</p> … … 158 159 <ul> 159 160 <li> 160 <p>Check that the system has been running for at least a day:</p>161 <p>Check that the system has been running for at least a day:</p> 161 162 <p><code>checkUpTime warn=1d crit=12h</code></p> 162 163 <p><code>Client has uptime (19h) < warning (24h)</code></p> … … 303 304 counters use the program perfmon that is shipped with windows. An important 304 305 note is that performance counters are language and version specific.</p> 306 <p><i><b>This is currently broken and will be fixed in the next version.</b></i></p> 305 307 <table class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" id="table16"> 306 308 <tr> … … 346 348 <tr> 347 349 <td valign="top">Counter:<name></td> 348 <td valign="top">Perfo mance Counter</td>350 <td valign="top">Performance Counter</td> 349 351 <td valign="top">Add a named performance counter. The <name> will be 350 352 used as an alias.</td> -
docs/Configuration/index.html
re655f61 r1d9338a 3 3 <head> 4 4 <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> 5 <meta http-equiv="Content-Language" content="en-us"> 5 6 <title>Configuration</title> 6 7 <link rel="stylesheet" type="text/css" href="../nscplus.css"> … … 23 24 has a lot of examples and comments so make sure you change this before you use 24 25 NSClient++ as some of the examples might be potential security issues.</p> 26 <h2>[Settings]</h2> 27 <p>This section has options for how logging is performed. First off notice that 28 for logging to make sense you need to enable the FileLogger.dll module that 29 logs all log data to a text file in the same directory as the NSClient++ binary 30 if you dont enable any logging module nothing will be logged.</p> 31 <p>The options you have available here are</p> 32 <table class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" id="table21"> 33 <tr> 34 <td valign="top">Option</td> 35 <td valign="top">Default value</td> 36 <td valign="top">Description</td> 37 </tr> 38 <tr> 39 <td valign="top">obfuscated_password</td> 40 <td valign="top">...</td> 41 <td valign="top">An obfuscated version of password. For more details 42 refer to the password option below.</td> 43 </tr> 44 <tr> 45 <td valign="top">password</td> 46 <td valign="top">...</td> 47 <td valign="top">The password used by various (presently only 48 NSClient) daemons. If no password is set everyone will be able to 49 use this service remotely.</td> 50 </tr> 51 <tr> 52 <td valign="top">allowed_hosts</td> 53 <td valign="top">127.0.0.1</td> 54 <td valign="top">A list (comma separated) with hosts that are 55 allowed to connect and query data. If this is empty all hosts will 56 be allowed to query data.</td> 57 </tr> 58 </table> 25 59 <h2>[Log]</h2> 26 60 <p>This section has options for how logging is performed. First off notice that … … 47 81 this is relative to the NSClient++ binary.</td> 48 82 </tr> 83 <tr> 84 <td valign="top">date_mask</td> 85 <td valign="top">%Y-%m-%d %H:%M:%S</td> 86 <td valign="top">The date format used when logging to a file</td> 87 </tr> 49 88 </table> 50 89 <h2>[Systray]</h2> … … 79 118 </tr> 80 119 <tr> 120 <td valign="top">obfuscated_password</td> 121 <td valign="top"> </td> 122 <td valign="top">An obfuscated version of password. For more details 123 refer to the password option below. </td> 124 </tr> 125 <tr> 81 126 <td valign="top">password</td> 82 127 <td valign="top"> </td> 83 128 <td valign="top">The password that incoming client needs to authorize 84 themselves by.</td> 129 themselves by. This option will replace the one found under Settings 130 for NSClient. If this is blank the option found under Settings will 131 be used. If both are blank everyone will be granted access.</td> 85 132 </tr> 86 133 <tr> … … 88 135 <td valign="top"> </td> 89 136 <td valign="top">A list (coma separated) with hosts that are allowed 90 to poll information from NSClient++</td> 91 </tr> 92 <tr> 93 <td valign="top">use_ssl</td> 94 <td valign="top">0</td> 95 <td valign="top">Boolean value to toggle SSL encryption. This is not 96 yet supported in any client I know of but as the underlying structure 97 (NRPE) supports it I thought Id might add it if someone wants to update 98 check_nt to support SSL.<b>Not implemented in this version</b></td> 99 </tr> 100 </table> 137 to poll information from NSClient++. This will replace the one found 138 under Setting for NSClient if present. If not present the same 139 option found under Settings will be used. If both are blank all 140 hosts will be allowed to access the system</td> 141 </tr> 142 </table> 101 143 <h2>[NRPE]</h2> 102 144 <p>This is configuration for the NRPE module that controls how the NRPE listener … … 117 159 <td valign="top"> </td> 118 160 <td valign="top">A list (coma separated) with hosts that are allowed 119 to poll information from NSClient++</td> 161 to poll information from NRPE. This will replace the one found under 162 Setting for NRPE if present. If not present the same option found 163 under Settings will be used. If both are blank all hosts will be 164 allowed to access the system</td> 120 165 </tr> 121 166 <tr> … … 129 174 <td valign="top">60</td> 130 175 <td valign="top">The maximum time in seconds that a command can execute. 131 (if more then this execution will be aborted).<b> NOTICE</b> this only176 (if more then this execution will be aborted).<b> NOTICE</b> this only 132 177 affects external commands not internal ones.</td> 133 178 </tr> … … 156 201 The latter is the preferred way as it is shorter.</p> 157 202 <h2>[Check System]</h2> 158 <p>Here you can set various options to configure the Sy etem Check module.</p>203 <p>Here you can set various options to configure the System Check module.</p> 159 204 <table class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" id="table20"> 160 205 <tr> … … 179 224 <tr> 180 225 <td valign="top">CounterPageLimit</td> 181 <td valign="top">\ \\\.\\Memory\\Commit Limit</td>226 <td valign="top">\Memory\Commit Limit</td> 182 227 <td valign="top">Counter to use to check upper memory limit.</td> 183 228 </tr> 184 229 <tr> 185 230 <td valign="top">CounterPage</td> 186 <td valign="top">\ \\\.\\Memory\\Committed Bytes</td>231 <td valign="top">\Memory\Committed Bytes</td> 187 232 <td valign="top">Counter to use to check current memory usage.</td> 188 233 </tr> 189 234 <tr> 190 235 <td valign="top">CounterUptime</td> 191 <td valign="top">\ \\\.\\System\\System Up Time</td>236 <td valign="top">\System\System Up Time</td> 192 237 <td valign="top">Counter to use to check the uptime of the system.</td> 193 238 </tr> 194 239 <tr> 195 240 <td valign="top">CounterCPU</td> 196 <td valign="top">\\\\.\\Processor(_total)\\% Processor Time</td> 197 <td valign="top">Counter to use for CPU load.</td> 241 <td valign="top">\Processor(_total)\% Processor Time</td> 242 <td valign="top">Counter to use for CPU load. For NT4 this has to be 243 altered to "\System\% Total Processor Time" as PDH definitions have changed.</td> 198 244 </tr> 199 245 </table> -
docs/FileLogger/index.html
re655f61 r1d9338a 3 3 <head> 4 4 <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> 5 <meta http-equiv="Content-Language" content="en-us"> 5 6 <title>FileLogger</title> 6 7 <link rel="stylesheet" type="text/css" href="../nscplus.css"> -
docs/NRPEListener/index.html
r1e62ed5 r1d9338a 3 3 <head> 4 4 <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> 5 <meta http-equiv="Content-Language" content="en-us"> 5 6 <title>NRPEListener</title> 6 7 <link rel="stylesheet" type="text/css" href="../nscplus.css"> -
docs/SysTray/index.html
raf5bc4b r1d9338a 3 3 <head> 4 4 <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> 5 <meta http-equiv="Content-Language" content="en-us"> 5 6 <title>SysTray</title> 6 7 <link rel="stylesheet" type="text/css" href="../nscplus.css"> -
docs/index.html
r1e62ed5 r1d9338a 9 9 <frameset cols="212,*"> 10 10 <frame name="contents" target="main" src="menu.html" scrolling="no" noresize> 11 <frame name="main" src="welcome.html" scrolling="auto" >11 <frame name="main" src="welcome.html" scrolling="auto" target="_self"> 12 12 </frameset> 13 13 <noframes> -
docs/nscplus.css
r1e62ed5 r1d9338a 111 111 padding: 5px; 112 112 } 113 114 .config { 115 padding: 0px 0px 0px 20px; 116 border: none; 117 background: lightgrey; 118 font-style: italic; 119 clear: both; 120 } 121 122 123 124 -
docs/welcome.html
r1e62ed5 r1d9338a 1 1 <html> 2 3 2 <head> 4 3 <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> 5 4 <title>About NSClient++</title> 6 5 <link rel="stylesheet" type="text/css" href="nscplus.css"> 6 <base target="_self"> 7 7 </head> 8 8 … … 23 23 plug-in is of course the most powerful way but requires knowledge of C++ or other 24 24 language which can produce DLLs and interface with regular C programs.</p> 25 <p>As for checking with NSClient++ I would recommend 26 <a href="http://sourceforge.net/project/showfiles.php?group_id=26589&package_id=40241"> 27 NRPE</a> as it is a lot more flexible then check_nt. But NSClient has full 28 support for check_nt and if there is an interest I could probably add support 29 for check_nt from nc_net.</p> 25 30 <h1>News</h1> 26 31 <table id="table17" border="0" cellspacing="0" cellpadding="0" class="MsoNormalTable" > 27 32 <tr> 28 <td>2005-05-14</td> 33 <td valign="top">2005-05-23</td> 34 <td>New version available.<p>Has many new features and some enhancements 35 as well as NT4 Compatibility (verified this time).</p> 36 <p>Added:</p> 37 <ul> 38 <li>Multitasking support for requests.</li> 39 <li>NRPE support for checkCounter</li> 40 <li>CheckHelpers module to alter the result of various check and 41 similar things </li> 42 <li>Support for Volumes (CheckDisk)</li> 43 <li>Support for checking all drives</li> 44 <li>Support for altering filter (makes it possible to check 45 removable/network drives)</li> 46 <li>Webpage and better documentation</li> 47 <li>Obfuscated password support (try NSClient++ /encrypt)</li> 48 <li>Central host/password options in INI file (look for [Settings])</li> 49 </ul> 50 <p>Enhances/Fixes:</p> 51 <ul> 52 <li>Some threading issues fixed</li> 53 <li>Verified NT4 compatibility</li> 54 <li>Fixed bug in NSC.ini (section title for Check System was wrong)</li> 55 <li>Fixed some minor issues here and there</li> 56 <li>Make check commands ignore case</li> 57 <li>Better debugging log (timestamps, better info, etc)</li> 58 <li>Support for password-less NSClient</li> 59 </ul> 60 </td> 61 </tr> 62 <tr> 63 <td valign="top">2005-05-14</td> 29 64 <td>New webpage is created and semi updated.</td> 30 65 </tr> … … 33 68 <p>NSClient can be found at its source forge page 34 69 <a href="http://nscplus.sf.net" target="_top">http://nscplus.sf.net</a></p> 35 <p>Latest version is <a href="http://prdownloads.sourceforge.net/nscplus/NSClient++-0. 1.0-a2.zip?download">NSClient++ 0.1.0 Alpha 2.zip</a></p>70 <p>Latest version is <a href="http://prdownloads.sourceforge.net/nscplus/NSClient++-0.2.0.zip?download">NSClient++ 0.2.0.zip</a></p> 36 71 <h1>Modules</h1> 37 72 <p>NSClient++ comes with a few modules out of the box that does various checks. … … 104 139 <tr> 105 140 <td width="221" colspan="2"><b><a href="CheckHelpers/index.html">CheckHelpers</a></b></td> 106 <td>Various helper function, doesn't check anything i tit self but can141 <td>Various helper function, doesn't check anything in it self but can 107 142 help make things simpler.</td> 108 143 </tr>
Note: See TracChangeset
for help on using the changeset viewer.








