Change Display Name to Host Name

Change Display Name to Host Name

The script will change the display name of the device to be the same as its host name. Display name is populated during discovery, but can be changed by the user at any time. Host name is the DNS name…

 WhatsUp Gold Network Ports

WhatsUp Gold Network Ports

This article lists the ports used for WhatsUp Gold Network Management System and its plugins. WhatsUp Gold Protocol Port Traffic Direction Usage Configurable ICMP N/A Outbound IMCP Echo requests to devices (Ping) No TCP 20 Inbound FTP data transfer, in…

 Syslog Messages

Syslog Messages

Syslog is a widely used standard for message logging. Network administrators may use syslog for system management and security auditing as well as general informational, analysis, and debugging messages. A wide variety of devices, such as routers, switches and firewalls…

 Create Customized Syslog Monitor

Create Customized Syslog Monitor

This article show you the steps to create customized Syslog passive monitor. For example, we are going to create Syslog passive monitor for Error Severity (3). Login to WUG Web Interface with sufficient permission. From Admin > Monitors. Monitor Library…

 Export all Passive Monitor

Export all Passive Monitor

It is a query to get all related data to Passive Monitor. You can copy them to excel or configure SQL to save data to file. SELECT PMT.nPassiveMonitorTypeID,        sMonitorTypeName,        sMonitorTypeDescription,        sName,        sValue FROM dbo.PassiveMonitorType AS PMT…

 Export all Passive Monitor

Export all Passive Monitor

It is a query to get all related data to Passive Monitor. You can copy them to excel or configure SQL to save data to file. SELECT PMT.nPassiveMonitorTypeID,        sMonitorTypeName,        sMonitorTypeDescription,        sName,        sValue FROM dbo.PassiveMonitorType AS PMT…

 Change Polling Type

Change Polling Type

In DHCP network, there is a problem of changing IPs and we need WUG to continue monitoring the devices without any problem so we need to change the polling type to use DNS Name instead of IP Address. bPollUsingNetworkName =…

 Devices added on certain period of time

Devices added on certain period of time

We will use device notes added during discovery to know the exact time of adding this device to WUG. SELECT Temp.nDeviceID, Temp.sNote FROM ( SELECT nDeviceID, CAST(REPLACE(REPLACE(CAST(sNote AS NVARCHAR(MAX)),'This device was scanned by discovery on', ''),'.','') AS datetime) AS sNote…

 All assigned Active Monitors

All assigned Active Monitors

This query displays all assigned Active Monitors for all Devices SELECT Device.nDeviceID,        Device.sDisplayName,        sMonitorTypeName,        sMonitorTypeDescription FROM Device LEFT OUTER JOIN DeviceType ON Device.nDeviceTypeID = DeviceType.nDeviceTypeID LEFT OUTER JOIN PivotActiveMonitorTypeToDevice ON Device.nDeviceID = PivotActiveMonitorTypeToDevice.nDeviceID LEFT OUTER JOIN ActiveMonitorType…