A: If you use pre-4.0.9306 release of IPNetwork Ntework Monitor, then this setup may be somewhat tricky. First, please locate IPNetwork Monitor and its internal Web server configuration files: IPNetwork Monitor configuration file: “C:\ProgramData\IPNetwork Monitor\nms.ini” if you are using Windows Vista or later Windows versions, or “C:\Documents and Settings\All Users\Application Data\IPNetwork Monitor\nms.ini” if you use Windows 2003 or XP. IPNetwork Monitor internal Web server configuration file: “C:\Program Files\IPNetwork Monitor\conf\httpd.conf” (replace corresponding path with “Program Files (x86)” if necessary). You would also need a mod_rewrite shared library to perform this setup; please contact us about that first. Prior to making any changes, create backup copies of the two files! Otherwise, you risk to render IPNetwork Monitor unusable if you make a mistake. Please follow these steps as soon as you have mod_rewrite.so file from us: 1. Stop monitoring service and close GUI client of IPNetwork Monitor. 2. In httpd.conf file, uncomment the following lines:
AddModule mod_ssl.c LoadModule ssl_module modules/mod_ssl.so3. Important: perform this section’s steps if you need access to Web interface by secure address only. Uncomment the lines
LoadModule rewrite_module modules/mod_rewrite.so AddModule mod_rewrite.cto enable mod_rewrite. Make sure you’ve placed the mod_rewrite.so file into “C:\Program Files\IPNetwork Monitor\modules\” directory. Place the following lines
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://<hostname>/nms/dashboard.html [L]under <Location /nms> line, and
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://<hostname>/nms_mobile/dashboard.html [L]under <Location /nms_mobile> line. Note: replace <hostname> with hostname and/or IP address used in URL addresses of Web interface. 4. Start monitoring service and GUI client. Click on “Web Interface” menu button to make sure it works as expected.