﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Ipswitch Forums / Technical Preview Programs / WhatsConnected Plugin Technical Preview Program </title><generator>InstantForum.NET v4.1.4</generator><description>Ipswitch Forums</description><link>http://forums.ipswitch.com/</link><webMaster>forums@ipswitch.com</webMaster><lastBuildDate>Fri, 09 Jan 2009 18:03:31 GMT</lastBuildDate><ttl>20</ttl><item><title>VBScript to automaticly install and config snmp</title><link>http://forums.ipswitch.com/Topic47580-56-1.aspx</link><description>Hello there, &lt;br&gt;&lt;br&gt;as a fool it-networker, i've written a VBScript which checks automaticly if the snmp service is installed or not. If yes it just configure it, if not it first install the snmp service from a network i386 source and then configure it. I know the script is written not so well but please feel free to modify or update it... &lt;br&gt;&lt;br&gt;ok here it goes (Copy the script into a texteditor and save it as nameofthescript.vbs):&lt;br&gt;&lt;br&gt;' *************************************************************************************&lt;br&gt;' Beschreibung: 	Script zur automatischen Installation und Konfiguration des SNMP&lt;br&gt;'		        Services auf den Servern Rechnern welche durch WU überwacht werden&lt;br&gt;'		        sollen.&lt;br&gt;'&lt;br&gt;' erstellt am: 	01.03.2008&lt;br&gt;' Copyright:	        Key Net AG&lt;br&gt;' Author:	        Reto Bösch&lt;br&gt;' Version:	        1.0&lt;br&gt;' geändert am:	-&lt;br&gt;' *************************************************************************************&lt;br&gt;&lt;br&gt;&lt;br&gt;'Variablen deklarieren&lt;br&gt;&lt;br&gt;'Konstante definieren&lt;br&gt;Const HKEY_LOCAL_MACHINE = &amp;H80000002&lt;br&gt;&lt;br&gt;'Lokaler Computer wird verwendet&lt;br&gt;strComputer = "."&lt;br&gt;&lt;br&gt;'Definition der neuen SNMP Communities&lt;br&gt;SNMPRead = "key_net"&lt;br&gt;' *** remarked da nur read gesetzt wird&lt;br&gt;' SNMPWrite = "SNMPReadandWriteCommunity"&lt;br&gt;&lt;br&gt;'Definition des neuen SNMP Host&lt;br&gt;SNMPHost = "192.168.254.70"&lt;br&gt;&lt;br&gt;'SNMP bereits installiert&lt;br&gt;isnmp = 0&lt;br&gt;&lt;br&gt;'Prüfe ob SNMP bereits auf dem Rechner installiert ist&lt;br&gt;&lt;br&gt;Set objWMIService = GetObject("winmgmts:\\" &amp; strComputer &amp; "\root\cimv2")&lt;br&gt;Set colServiceList = objWMIService.ExecQuery("Select * from Win32_Service")&lt;br&gt;&lt;br&gt;strServiceName = "snmp"&lt;br&gt;&lt;br&gt;If Not IsNull(colServiceList) Then&lt;br&gt;	For Each objService In colServiceList&lt;br&gt;	  	If LCase(strServiceName) = LCase(objService.Name) Then&lt;br&gt;	  	  isnmp = 1&lt;br&gt;   		End If&lt;br&gt;	Next&lt;br&gt;End If&lt;br&gt;&lt;br&gt;If isnmp = 1 Then&lt;br&gt;	'snmp konfigurieren&lt;br&gt;	confSNMP&lt;br&gt;&lt;br&gt;Else&lt;br&gt;	'********************************************************************************************************&lt;br&gt;	'snmp installieren &amp; konfigurieren&lt;br&gt;	&lt;br&gt;	Set objFSO = CreateObject("Scripting.FileSystemObject")&lt;br&gt;	Set objShell = CreateObject("WScript.Shell")&lt;br&gt;	&lt;br&gt;	'Snmp unattendet Text Datei erstellen&lt;br&gt;	Set uaFile = objFSO.CreateTextFile("c:\snmp.ua",True)&lt;br&gt;  	uaFile.Writeline "[NetOptionalComponents]"&lt;br&gt;  	uaFile.Writeline "SNMP = 1"&lt;br&gt;  	uaFile.Close&lt;br&gt;&lt;br&gt;	os = determineOperatingSystem(strComputer)&lt;br&gt;  	sp = determineServicePack(strComputer)&lt;br&gt;  	WScript.Echo ("Will add SNMP files for " &amp; os &amp; " with service pack " &amp; sp)&lt;br&gt;  	editServerRegistry strComputer, os, sp&lt;br&gt;  	RunRmtProcess "snmp"&lt;br&gt;  	WScript.Sleep 120000&lt;br&gt;  	confSNMP&lt;br&gt;  		&lt;br&gt;	Set objShell = Nothing&lt;br&gt;	Set objFSO = Nothing&lt;br&gt;End If&lt;br&gt;WScript.quit&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;	'******FUNCTION AND SUBROUTINES******&lt;br&gt;	&lt;br&gt;	'Betriebssystem auslesen&lt;br&gt;	Function determineOperatingSystem(server)&lt;br&gt;		Set objWMIService = GetObject("winmgmts:\\" &amp; server &amp; "\root\cimv2")&lt;br&gt;		Set colOperatingSystems = objWMIService.ExecQuery _&lt;br&gt;        	("Select * from Win32_OperatingSystem")&lt;br&gt;		For Each objOperatingSystem in colOperatingSystems&lt;br&gt;     		determineOperatingSystem = objOperatingSystem.Caption&lt;br&gt;   		Next&lt;br&gt;	End Function&lt;br&gt;&lt;br&gt;	&lt;br&gt;	'Service Pack auslesen&lt;br&gt;	Function determineServicePack(server)&lt;br&gt;		Set objWMIService = GetObject("winmgmts:\\" &amp; server &amp; "\root\cimv2")&lt;br&gt;		Set colOperatingSystems = objWMIService.ExecQuery _&lt;br&gt;        ("Select * from Win32_OperatingSystem")&lt;br&gt;  		For Each objOperatingSystem in colOperatingSystems&lt;br&gt;     		determineServicePack = objOperatingSystem.ServicePackMajorVersion&lt;br&gt;   		Next&lt;br&gt;	End Function&lt;br&gt;	&lt;br&gt;	&lt;br&gt;	'Firewall Konfigurieren&lt;br&gt;	Sub setFirewallSettings(srv,serverOS,spVer)&lt;br&gt;		Select Case serverOS&lt;br&gt;  			Case "Microsoft Windows XP Professional"&lt;br&gt;    			Set objFirewall = CreateObject("HNetCfg.FwMgr")&lt;br&gt;				Set objPolicy = objFirewall.LocalPolicy.CurrentProfile&lt;br&gt;				If objPolicy.FirewallEnabled = TRUE Then&lt;br&gt;					Set objPort = CreateObject("HNetCfg.FwOpenPort")&lt;br&gt;					objPort.Port = 161&lt;br&gt;					objPort.Protocol = 17&lt;br&gt;					objPort.Name = "SNMP"&lt;br&gt;					objPort.Enabled = True&lt;br&gt;					Set colPorts = objPolicy.GloballyOpenPorts&lt;br&gt;					errReturn = colPorts.Add(objPort)&lt;br&gt;				End If&lt;br&gt;  			Case "Microsoft Windows 2000 Server"&lt;br&gt;  			Case "Microsoft(R) Windows(R) Server 2003, Standard Edition"&lt;br&gt;  			Case Else&lt;br&gt;    			WScript.Echo ("Operating System is not Windows 2000 Server or Server 2003 Standard Edition. This script will now close!")&lt;br&gt;    			WScript.Quit&lt;br&gt;		End Select&lt;br&gt;	End Sub&lt;br&gt;	&lt;br&gt;	Sub editServerRegistry(srv,serverOS,spVer)&lt;br&gt;		Select Case serverOS&lt;br&gt;  			Case "Microsoft Windows XP Professional"&lt;br&gt;    			If spVer = 2 Then&lt;br&gt;      				i386Location = "\\knsrv01\kbase\Microsoft\Software\ClientOS\WinXP\I386\SP2"&lt;br&gt;    			Else&lt;br&gt;      				WScript.Echo("Service pack level is not at 2. This script will now close!")&lt;br&gt;      				WScript.Quit&lt;br&gt;    			End If&lt;br&gt;  			Case "Microsoft Windows 2000 Server"&lt;br&gt;    			If spVer = 3 Then&lt;br&gt;      				i386Location = "\\&lt;server_name&gt;\path"&lt;br&gt;    			ElseIf spVer = 4 Then&lt;br&gt;      				i386Location = "\\&lt;server_name&gt;\path"&lt;br&gt;    			Else&lt;br&gt;      				WScript.Echo("Service pack level is not at 3 or 4. This script will now close!")&lt;br&gt;      				WScript.Quit&lt;br&gt;    			End If&lt;br&gt;&lt;br&gt;  			Case "Microsoft(R) Windows(R) Server 2003, Standard Edition"&lt;br&gt;    			If spVer = 1 Then&lt;br&gt;     	 			i386Location = "\\&lt;server_name&gt;\path"&lt;br&gt;    			ElseIf spVer = 2 Then&lt;br&gt;      				i386Location = "\\&lt;server_name&gt;\path"&lt;br&gt;    			Else&lt;br&gt;      				WScript.Echo("Service pack level is not at 1 or 2. This script will now close!")&lt;br&gt;      				WScript.Quit&lt;br&gt;    			End If&lt;br&gt;  			Case Else&lt;br&gt;    			WScript.Echo ("Operating System is not Windows 2000 Server or Server 2003 Standard Edition. This script will now close!")&lt;br&gt;    			WScript.Quit&lt;br&gt;		End Select&lt;br&gt;&lt;br&gt;		'GET CURRENT REGISTRY VALUES SO THEY MAY BE SAVED&lt;br&gt;		Set objRegistry=GetObject("winmgmts:\\" &amp; srv &amp; "\root\default:StdRegProv")&lt;br&gt;		objRegistry.GetExpandedStringValue HKEY_LOCAL_MACHINE,"SOFTWARE\Microsoft\Windows\CurrentVersion\Setup","SourcePath",oldRegVal1&lt;br&gt;		objRegistry.GetExpandedStringValue HKEY_LOCAL_MACHINE,"SOFTWARE\Microsoft\Windows\CurrentVersion\Setup","ServicePackSourcePath",oldRegVal2&lt;br&gt;		objRegistry.GetExpandedStringValue HKEY_LOCAL_MACHINE,"SOFTWARE\Microsoft\Windows NT\CurrentVersion","SourcePath",oldRegVal3&lt;br&gt;&lt;br&gt;    	If oldRegVal1 &lt;&gt; i386Location Then&lt;br&gt;			objRegistry.SetStringValue HKEY_LOCAL_MACHINE,"SOFTWARE\Microsoft\Windows\CurrentVersion\Setup","SourcePath",i386Location&lt;br&gt;			objRegistry.SetStringValue HKEY_LOCAL_MACHINE,"SOFTWARE\Microsoft\Windows\CurrentVersion\Setup","SourcePath.old",oldRegVal1&lt;br&gt;    	End If&lt;br&gt;&lt;br&gt;    	If oldRegVal2 &lt;&gt; i386Location Then&lt;br&gt;			objRegistry.SetStringValue HKEY_LOCAL_MACHINE,"SOFTWARE\Microsoft\Windows\CurrentVersion\Setup","ServicePackSourcePath",i386Location&lt;br&gt;			objRegistry.SetStringValue HKEY_LOCAL_MACHINE,"SOFTWARE\Microsoft\Windows\CurrentVersion\Setup","ServicePackSourcePath.old",oldRegVal2&lt;br&gt;   		End If&lt;br&gt;&lt;br&gt;    	If oldRegVal3 &lt;&gt; i386Location Then&lt;br&gt;			objRegistry.SetStringValue HKEY_LOCAL_MACHINE,"SOFTWARE\Microsoft\Windows NT\CurrentVersion","SourcePath",i386Location&lt;br&gt;			objRegistry.SetStringValue HKEY_LOCAL_MACHINE,"SOFTWARE\Microsoft\Windows NT\CurrentVersion","SourcePath.old",oldRegVal3&lt;br&gt;	    End If&lt;br&gt;	End Sub&lt;br&gt;&lt;br&gt;&lt;br&gt;	Sub RunRmtProcess(process)&lt;br&gt;&lt;br&gt;		'SNMP INSTALLATION&lt;br&gt;  		If process="snmp" Then	&lt;br&gt;  			objShell.run "sysocmgr /i:%windir%\inf\sysoc.inf /u:c:\snmp.ua /x /q /r", vbHide&lt;br&gt;  		End If&lt;br&gt;	End Sub&lt;br&gt;	&lt;br&gt;	&lt;br&gt;	'snmp konfigurieren&lt;br&gt;	Sub confSNMP()&lt;br&gt;	&lt;br&gt;		'Bestehende SNMP Hosts auslesen&lt;br&gt;&lt;br&gt;		Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &amp;_&lt;br&gt;		strComputer &amp; "\root\default:StdRegProv")&lt;br&gt;&lt;br&gt;		strKeyPath = "SYSTEM\CurrentControlSet\Services\SNMP\Parameters\PermittedManagers"&lt;br&gt;&lt;br&gt;		oReg.EnumValues HKEY_LOCAL_MACHINE, strKeyPath,_&lt;br&gt; 		arrValueNames, arrValueTypes&lt;br&gt;&lt;br&gt;		If Not IsNull(arrValueNames) Then&lt;br&gt;			For i=0 To UBound(arrValueNames)&lt;br&gt;    			oReg.GetStringValue HKEY_LOCAL_MACHINE,strKeyPath,arrValueNames(i),strValue&lt;br&gt;&lt;br&gt;			'Bestehende SNMP Hosts löschen&lt;br&gt;    			oReg.DeleteValue HKEY_LOCAL_MACHINE,strKeyPath,arrValueNames(i)&lt;br&gt;			Next&lt;br&gt;		End If&lt;br&gt;&lt;br&gt;		'Neuer SNMP Host hinzufügen&lt;br&gt;		oReg.SetStringValue HKEY_LOCAL_MACHINE,strKeyPath,i+1,SNMPHost&lt;br&gt;&lt;br&gt;		'Objekte auf Null setzen&lt;br&gt;		strKeyPath=Null&lt;br&gt;		arrValueNames=Null&lt;br&gt;		arrValueTypes=Null&lt;br&gt;	&lt;br&gt;	&lt;br&gt;		'Bereits definierte SNMP Communities auslesen&lt;br&gt;&lt;br&gt;		strKeyPath = "SYSTEM\CurrentControlSet\Services\SNMP\Parameters\ValidCommunities"&lt;br&gt;&lt;br&gt;		oReg.EnumValues HKEY_LOCAL_MACHINE, strKeyPath,_&lt;br&gt;		arrValueNames, arrValueTypes&lt;br&gt;&lt;br&gt;		If Not IsNull(arrValueNames) Then&lt;br&gt;			For i=0 To UBound(arrValueNames)&lt;br&gt;    			oReg.GetDWordValue HKEY_LOCAL_MACHINE,strKeyPath,arrValueNames(i),dwValue&lt;br&gt;&lt;br&gt;    			'SNMP Communities löschen&lt;br&gt;				oReg.DeleteValue HKEY_LOCAL_MACHINE,strKeyPath,arrValueNames(i)&lt;br&gt;			Next&lt;br&gt;		End If&lt;br&gt;	&lt;br&gt;		'SNMP Communities setzen&lt;br&gt;		oReg.SetDwordValue HKEY_LOCAL_MACHINE,strKeyPath,SNMPRead,4&lt;br&gt;		' *** remarked da nur read gesetzt wird&lt;br&gt;		' oReg.SetDwordValue HKEY_LOCAL_MACHINE,strKeyPath,SNMPWrite,8&lt;br&gt;&lt;br&gt;		'SNMP Service auf automatisch und starten&lt;br&gt;&lt;br&gt;		Set objWMIService = GetObject("winmgmts:\\" &amp; strComputer &amp; "\root\cimv2")&lt;br&gt;		Set colServiceList = objWMIService.ExecQuery("Select * from Win32_Service where Name='SNMP'")&lt;br&gt;&lt;br&gt;		If Not IsNull(colServiceList) Then&lt;br&gt;&lt;br&gt;			For Each objService In colServiceList&lt;br&gt;				&lt;br&gt;				WScript.Echo objService.StartMode&lt;br&gt;&lt;br&gt;  				StartMode = UCase(objService.StartMode)&lt;br&gt;  				&lt;br&gt;   				If (StartMode = "MANUAL") Or (StartMode = "DISABLED") Then&lt;br&gt;       				errReturnCode = objService.ChangeStartMode("Auto")&lt;br&gt;   				End If&lt;br&gt;   				errReturnCode = objService.StartService()&lt;br&gt;			Next&lt;br&gt;		End If&lt;br&gt;&lt;br&gt;		'Objekte auf Null setzten&lt;br&gt;		colServiceList = Null&lt;br&gt;		objService = Null&lt;br&gt;		objWMIService = Null&lt;br&gt;&lt;br&gt;		'SNMP-Traps Service deaktivieren und stoppen&lt;br&gt;&lt;br&gt;		Set objWMIService = GetObject("winmgmts:\\" &amp; strComputer &amp; "\root\cimv2")&lt;br&gt;		Set colServiceList = objWMIService.ExecQuery("Select * from Win32_Service where Name='SNMPTRAP'")&lt;br&gt;&lt;br&gt;		If Not IsNull(colServiceList) Then&lt;br&gt;&lt;br&gt;			For Each objService In colServiceList&lt;br&gt;&lt;br&gt;  				StartMode = UCase(objService.StartMode)&lt;br&gt;&lt;br&gt;   				If (StartMode = "MANUAL") Or (StartMode = "AUTO") Then&lt;br&gt;       				errReturnCode = objService.ChangeStartMode("Disabled")&lt;br&gt;       				errReturnCode = objService.StopService()&lt;br&gt;   				End If&lt;br&gt;			Next&lt;br&gt;		End If&lt;br&gt;&lt;br&gt;		'Objekte auf Null setzten&lt;br&gt;		colServiceList = Null&lt;br&gt;		objService = Null&lt;br&gt;		objWMIService = Null&lt;br&gt;		&lt;br&gt;		'Firewall konfigurieren&lt;br&gt;		os = determineOperatingSystem(strComputer)&lt;br&gt;  		sp = determineServicePack(strComputer)&lt;br&gt;  		setFirewallSettings strComputer, os, sp&lt;br&gt;  		&lt;br&gt;  		&lt;br&gt;	End Sub&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</description><pubDate>Wed, 08 Oct 2008 02:41:49 GMT</pubDate><dc:creator>Reto</dc:creator></item><item><title>TPP on production environment</title><link>http://forums.ipswitch.com/Topic49091-56-1.aspx</link><description>Is it possilble to apply the TPP for WhatsConnected to a live installation?  I've set up the TPP on a demo, but I can't seem to activate it offline.  Everything works, the licensing website is giving me a license file, but every time I start it I get told I have to activate.  I know the TPP ends soon, but I would liek to try out some of the import/export features, and running on our live installation would be good.&lt;/P&gt;&lt;P&gt;I can provide license numbers on request :-)&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Simon Bradley</description><pubDate>Mon, 01 Dec 2008 10:29:23 GMT</pubDate><dc:creator>bradleysp</dc:creator></item><item><title>WhatsConnected has been released!</title><link>http://forums.ipswitch.com/Topic49095-56-1.aspx</link><description>WhatsConnected is now available for purchase!&lt;br&gt;&lt;br&gt;Be one of the first 20 customers to purchase WhatsConnected and get Microsoft Visio Professional 2007 for FREE!&lt;br&gt;&lt;br&gt;(US $559.95 Value)&lt;br&gt;&lt;br&gt;[url=http://www.whatsupgold.com/products/whatsconnected/index.aspx]http://www.whatsupgold.com/products/whatsconnected/index.aspx[/url]&lt;br&gt;&lt;br&gt;Jason</description><pubDate>Mon, 01 Dec 2008 11:17:08 GMT</pubDate><dc:creator>Jason Benton</dc:creator></item><item><title>WC Mapping??</title><link>http://forums.ipswitch.com/Topic48867-56-1.aspx</link><description>Currently WC has done a descent job with the multi layer connections as from what I have managed to inspect so far but the Main atraction to this software was the ability to Map Network trought its discovery. I am not sure is the mapping portion there yet.</description><pubDate>Wed, 19 Nov 2008 12:06:24 GMT</pubDate><dc:creator>Ill Will</dc:creator></item><item><title>WhatsConnected LIVE webinars - Dec 3 and Dec 9</title><link>http://forums.ipswitch.com/Topic48902-56-1.aspx</link><description>In support of the upcoming WhatsConnected launch, we will be hosting 2 LIVE Webinars:&lt;br&gt;December 3 at 2pm and December 9 at 10am ET.&lt;br&gt;&lt;br&gt;Register at: http://www.whatsupgold.com/campaigns/whatsconnected-webinar.aspx&lt;br&gt;&lt;br&gt;Thank you,</description><pubDate>Thu, 20 Nov 2008 08:58:12 GMT</pubDate><dc:creator>Jason Williams</dc:creator></item><item><title>Only half of my switches are detected</title><link>http://forums.ipswitch.com/Topic48837-56-1.aspx</link><description>Hello&lt;/P&gt;&lt;P&gt;I've run a network scan on my network and it seems that all devices are found.&lt;/P&gt;&lt;P&gt;The problem is, only around half of my switches are being recognized as switches.&lt;/P&gt;&lt;P&gt;All of them are from Cisco. Some of the same model are detected while others remain as unknown. The unknown ones also haven't any SNMP details shown under System. &lt;/P&gt;&lt;P&gt;Models which seem to be detected correctly are:&lt;BR&gt;catalyst2960G24&lt;BR&gt;catalyst2960G48&lt;BR&gt;catalyst3560G24PS&lt;BR&gt;cat6509&lt;BR&gt;catalyst37xxStack&lt;/P&gt;&lt;P&gt;But a lot of other stacks aren't detected and also the 2970G series isn't detected. But a lot of switches of the same type (maybe different software release) are not being detected.&lt;/P&gt;&lt;P&gt;Any idea why that is?&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR&gt;Pato</description><pubDate>Wed, 19 Nov 2008 04:09:14 GMT</pubDate><dc:creator>pato</dc:creator></item><item><title>License Issues</title><link>http://forums.ipswitch.com/Topic48195-56-1.aspx</link><description>I installed WhatsConnected was prompted to re-activate WUG, plugged in the serial number, did an offline activation.  Closed WUG/WhatsConnected after some work, opened it again; rinse lather repeat.  No matter what I do I'm prompted to activate WUG again.  Very frustrating to the point my next question will be; how do I get rid of WhatsConnected.</description><pubDate>Tue, 28 Oct 2008 12:30:32 GMT</pubDate><dc:creator>oaf357</dc:creator></item><item><title>unable to load engine configuration file</title><link>http://forums.ipswitch.com/Topic48074-56-1.aspx</link><description>Downloaded and installed the 12.3.1 version ( as far as I could tell all went well )&lt;/P&gt;&lt;P&gt;trying to bring up WhatsConnected and get the following&lt;/P&gt;&lt;P&gt;Could not load engine configuration file: The magic number in the GZip header is not correct. Make sure you are passing a GZip stream</description><pubDate>Thu, 23 Oct 2008 13:43:01 GMT</pubDate><dc:creator>A.P.Sherwood</dc:creator></item><item><title>WhatsConnected as a Plug-In to WhatsUp</title><link>http://forums.ipswitch.com/Topic48010-56-1.aspx</link><description>OK, the subject line may sound odd, but from what little I've played with WhatsConnected, it behaves like a stand-alone product -- it doesn't interact with the WhatsUp database.&lt;/P&gt;&lt;P&gt;I would like to use WhatsConnected (or WhatsUp) to build a network diagram / map based on the info I already have in WhatsUp, rather than having to interrogate the network again.&lt;/P&gt;&lt;P&gt;I read that RC1 has "&lt;SPAN lang=EN&gt;Expanded support for NON-SNMP device visibility in the discovery results&lt;/SPAN&gt;" and that may solve some of my problems, but it still requires another discovery.&lt;/P&gt;&lt;P&gt;:unsure:  I have not yet installed RC1, so maybe I'm premature here, but I thought I'd share my thoughts and if I'm wrong, maybe someone can point me in the right direction.&lt;/P&gt;&lt;P&gt;Thanks for listening!</description><pubDate>Wed, 22 Oct 2008 11:34:36 GMT</pubDate><dc:creator>SHutc</dc:creator></item><item><title>Rambling thoughts</title><link>http://forums.ipswitch.com/Topic46906-56-1.aspx</link><description>Nice product. It does what WhatsUp discovery processes should have done. &lt;br&gt;&lt;br&gt;But, as Don says, it'd be nice if we could use this to import into Whatsup, for real testing, as I need to understand how the end product will look. I just can't use the Whatsup Discovery for my needs as it creates an absolute mess. I always go thru the painful process of building my networks on WhatsUp manually.&lt;br&gt;&lt;br&gt;And yes, what is the Visio Diagram going to look like? If this is truly technical preview, where our findings and suggestions are taken into consideration before final release, then best we get that sorted on the disabled features too.&lt;br&gt;&lt;br&gt;Issues I have come across so far are... &lt;br&gt;&lt;br&gt;While doing an ARP discovery, I get Error messages popping up saying "Application Error: Invalid IP address string." The discovery carries on regardless; until you click [ok] on one of the error messages. Then the WhatsConnected app just quits. No questions or suicide notes. Not sure what's causing the errors. Not sure how to find out, but I can replicate it.&lt;br&gt;&lt;br&gt;It cleverly ;) identifies a PC, or any other device that has more than one interface, as a router. Ok, we all make mistakes, but it wont let me correct it. Or am I missing something here? &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</description><pubDate>Thu, 11 Sep 2008 02:41:14 GMT</pubDate><dc:creator>Lionel K</dc:creator></item><item><title>Shoretel Phones</title><link>http://forums.ipswitch.com/Topic48016-56-1.aspx</link><description>Anyone tried this with Shoretel phones?</description><pubDate>Wed, 22 Oct 2008 11:55:43 GMT</pubDate><dc:creator>hidoa</dc:creator></item><item><title>MPLS structure</title><link>http://forums.ipswitch.com/Topic47963-56-1.aspx</link><description>Does anybody have any experience with use of WhatsConnected on a MPLS nettwork.&lt;br&gt;It seems that the defaul engine in WUG is not able to enterpet the MPLS structure.</description><pubDate>Tue, 21 Oct 2008 09:20:06 GMT</pubDate><dc:creator>smurf69</dc:creator></item><item><title>Anyway to test the plug-in with a production WUG?</title><link>http://forums.ipswitch.com/Topic47475-56-1.aspx</link><description>I have 12.3 already installed, so when I try to install the preview version it complains that a newer version is already installed.  Anyway around this?</description><pubDate>Fri, 03 Oct 2008 10:18:30 GMT</pubDate><dc:creator>snickle</dc:creator></item><item><title>Export to WhatsUp</title><link>http://forums.ipswitch.com/Topic47136-56-1.aspx</link><description>Ok, so WC does all the hard work for you and finds all the bits and pieces and ties them together correctly...&lt;br&gt;&lt;br&gt;... but it chooses the wrong icons. &lt;br&gt;&lt;br&gt;On WC I had Swicthes and IP-Phones correctly identified. When I export to Whatsup, I get "HP Device" for the switch, and a workstation for a phone....&lt;br&gt;&lt;br&gt;However, when I export to Visio, it is perfect.</description><pubDate>Fri, 19 Sep 2008 08:15:54 GMT</pubDate><dc:creator>Lionel K</dc:creator></item><item><title>Need to install on a standalone network, no internet</title><link>http://forums.ipswitch.com/Topic47705-56-1.aspx</link><description>I need to install on a standalone netork with no internet connection.</description><pubDate>Fri, 10 Oct 2008 12:34:57 GMT</pubDate><dc:creator>jumpmaster2</dc:creator></item><item><title>Download keeps aborting at 35%</title><link>http://forums.ipswitch.com/Topic47449-56-1.aspx</link><description>Attempting to download the TPP installer and still unsuccessful after 4 attempts, each time aborting at about 35% with Firefox telling me the source file could not be read.</description><pubDate>Thu, 02 Oct 2008 15:04:52 GMT</pubDate><dc:creator>Ian Beyer</dc:creator></item><item><title>RC5 issues</title><link>http://forums.ipswitch.com/Topic47321-56-1.aspx</link><description>Hi,&lt;/P&gt;&lt;P&gt;A few things...&lt;/P&gt;&lt;P&gt;Although there is a facility to create your own devices with their unique OIDs. This does not seem to have any effect, as they are still misinterpreted. Not sure how to force it to accept what I tell it. &lt;/P&gt;&lt;P&gt;On the topology map, devices connected in a star are represented in a linear fashion, i.e. Devices 123 are all connected to devices A, but WC shows it as A-1-2-3.&lt;/P&gt;&lt;P&gt;WC seems to have a problem identifying router connectivity. I end up with a few separated networks, instead of one interconnected one. All my WAN links are numbered.</description><pubDate>Mon, 29 Sep 2008 03:52:30 GMT</pubDate><dc:creator>Lionel K</dc:creator></item><item><title>Cisco gigastack and topology not working correctly</title><link>http://forums.ipswitch.com/Topic47319-56-1.aspx</link><description>Hi,&lt;br&gt;&lt;br&gt;We have some Cisco switch's connected with gigastack, which is a 1Gbps half-duplex hub between the connected devices.&lt;br&gt;As far as i can see, whatsconnected is not expecting this and doesn't detects the links correctly.&lt;br&gt;Can you look into this?&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;&lt;br&gt;José Araújo</description><pubDate>Sat, 27 Sep 2008 10:57:00 GMT</pubDate><dc:creator>jaraujo</dc:creator></item><item><title>having a problem configuring SSH protocol</title><link>http://forums.ipswitch.com/Topic47286-56-1.aspx</link><description>having a problem configuring SSH protocol&lt;/P&gt;&lt;P&gt;I start WhatsConnected -&amp;gt; configure -&amp;gt; protocol setting&lt;/P&gt;&lt;P&gt;can't  find the SSH root node to allow me to configure&lt;/P&gt;&lt;P&gt;I see  ICMP and SNMP&lt;/P&gt;&lt;P&gt;Have I missed something in configuring</description><pubDate>Thu, 25 Sep 2008 17:21:36 GMT</pubDate><dc:creator>A.P.Sherwood</dc:creator></item><item><title>Problem with RC5</title><link>http://forums.ipswitch.com/Topic47236-56-1.aspx</link><description>downloaded RC5 and reinstalled WhatsUP and am getting a new error&lt;/P&gt;&lt;P&gt;As soon as I go to tools - WhatsConnected&lt;/P&gt;&lt;P&gt;Could not load engine configuration fil: XML error on line 157</description><pubDate>Wed, 24 Sep 2008 13:34:33 GMT</pubDate><dc:creator>A.P.Sherwood</dc:creator></item><item><title>Discovery Problem</title><link>http://forums.ipswitch.com/Topic46905-56-1.aspx</link><description>Hi!&lt;br&gt;&lt;br&gt;I can't discover a subnet. everytime i try to discover subnet's connected to the gateway, i get the error attached.&lt;br&gt;&lt;br&gt;i also attached the log file</description><pubDate>Thu, 11 Sep 2008 02:39:26 GMT</pubDate><dc:creator>schurl85</dc:creator></item><item><title>Export limits and Visio Export</title><link>http://forums.ipswitch.com/Topic46936-56-1.aspx</link><description>All,&lt;br&gt;We are considering alternative options to the 10 device export limit for the Technical Preview. We decided to limit the functionality because of the nature of this plug in. It is not something that most people will need to perform frequently (Exporting the Layer 2 discovery to WUG/Visio). &lt;br&gt;&lt;br&gt;Would increasing the export limit to 25 devices provide a more reasonable evaluation?&lt;br&gt;&lt;br&gt;Thanks for the feedback.&lt;br&gt;&lt;br&gt;Jason&lt;br&gt;&lt;br&gt;Here's a screen shot of an exported map to Visio. Click for a larger version. &lt;br&gt;&lt;br&gt;&lt;br&gt;[url=http://preview.ipswitch.com/images/NetworkManagement/WC_Visio_Export.jpg][img]http://preview.ipswitch.com/images/NetworkManagement/WC_Visio_Export_Thumb.jpg[/img][/url]</description><pubDate>Thu, 11 Sep 2008 17:37:00 GMT</pubDate><dc:creator>Jason Benton</dc:creator></item><item><title>WhatsConnected as a standalone app</title><link>http://forums.ipswitch.com/Topic47105-56-1.aspx</link><description>I realize that WC was designed as a plugin for WUG but I see a lot of value to having it as a standalone application.  In my business, I am sometimes asked to come in and work on network issues where even the administrators do not have a good idea how everything is set up and the documentation (if there is any at all) is inadequate.  If I had WC on my laptop and could come into the site, run the app, and produce a good inventory and diagram, that would help out immensely.&lt;br&gt;&lt;br&gt;Since it appears that Visio must be installed on the computer where WC is loaded for the Visio export to work that is another situation where having WC installed on a user PC would be useful.  Though Visio is not outrageously expensive, it's still an additional cost to buy a license for the server where I would already have it installed on my laptop.  Plus, I like to minimize the number of applications that are loaded on any server and requiring Visio on the WUG/WC server is one more place where the software must be maintained, updated, etc.  This is not a huge problem, just more of an annoyance.</description><pubDate>Thu, 18 Sep 2008 12:22:57 GMT</pubDate><dc:creator>Mark Bell</dc:creator></item><item><title>network discovery triggers WUG state changes</title><link>http://forums.ipswitch.com/Topic46975-56-1.aspx</link><description>When I do a network discovery through WC, all of my devices go down in WUG.  They only stay down for a short time but they do go down.  The puzzling thing is that even devices that are not directly connected to the LAN (like a router out on the Road Runner network) go down.  Even devices (i.e. a printer) that only have the Ping active monitor configured with no SNMP or anything else change state.&lt;br&gt;&lt;br&gt;It seems that the state changes in WUG only happen when I'm discovering several subnets at a time.  If I only perform discovery on one or two subnets WUG seems to be o.k.</description><pubDate>Fri, 12 Sep 2008 17:43:14 GMT</pubDate><dc:creator>Mark Bell</dc:creator></item><item><title>device type during discovery</title><link>http://forums.ipswitch.com/Topic46971-56-1.aspx</link><description>Again, I had posted this in the wrong forum...&lt;br&gt;&lt;br&gt;What does WhatsConnected use to determine the device type? I did a discovery on my network and it detected my Cisco 1130 and 1240 wireless access points as switches. It was also unable to determine the device type for my ASA 5500 and APC Symmetra and PDUs.&lt;br&gt;&lt;br&gt;Perhaps I'm missing something but I could not figure out how to manually set the device type correctly.&lt;br&gt;&lt;br&gt;I've got all of the mibs in the \Ipswitch\Whatsup\Data\Mibs directory. Can WC use CDP or LLDP? It did not see any of the CIsco IP phones I have connected to one of my switches but did see the APs and servers connected to the same switch.</description><pubDate>Fri, 12 Sep 2008 16:56:22 GMT</pubDate><dc:creator>Mark Bell</dc:creator></item><item><title>some devices not linked</title><link>http://forums.ipswitch.com/Topic47108-56-1.aspx</link><description>After running the WC discovery, there are a number of devices (IP phones, PCs, network-enabled printers) that are discovered but not linked to anything.  The common thing with all of these devices is that they are connected to Cisco 1811 routers in remote buildings.  When go to the "ARP Cache" tab of the 1811 device properties, it has those devices' IP and MAC addresses shown.&lt;br&gt;&lt;br&gt;Another strange thing is that the 1811s and Aironet 1242 that they are uplinked to are off on their own.  "BITS-AP-2" has a wireless backhaul to the main building and is associated to BITS-AP-4 (another Aironet 1242) but there is no link shown in WC.&lt;br&gt;&lt;br&gt;WC sees the 1811s as a "wireless-ap" instead of as a "router".  The 1811 is a regular router, it just happens to have a wireless interface that I'm using as an uplink to the rest of the network.&lt;br&gt;&lt;br&gt;I've uploaded a screen shot of the discovery map so I hope that helps illustrate what I'm talking about.</description><pubDate>Thu, 18 Sep 2008 13:05:28 GMT</pubDate><dc:creator>Mark Bell</dc:creator></item><item><title>Application Error: Object reference not set to an instance of an object.</title><link>http://forums.ipswitch.com/Topic46940-56-1.aspx</link><description>Tools-&gt;WhatsConnected,and got the error message.&lt;br&gt;I tried to setup whatsconnected tpp on two machines and got the same problem.&lt;br&gt;OS:WinXP sp2 traditional chinese&lt;br&gt;&lt;br&gt;[quote][FATAL Sep-12 10:52:34 1]: Application Error: Object reference not set to an instance of an object.&lt;br&gt;System.NullReferenceException: Object reference not set to an instance of an object.&lt;br&gt;   at NetworkViewer.DeviceCategoriesForm.DeviceCategoriesForm_Resize(Object sender, EventArgs e)&lt;br&gt;   at System.Windows.Forms.Control.OnResize(EventArgs e)&lt;br&gt;   at System.Windows.Forms.Form.OnResize(EventArgs e)&lt;br&gt;   at System.Windows.Forms.Control.OnSizeChanged(EventArgs e)&lt;br&gt;   at System.Windows.Forms.Control.UpdateBounds(Int32 x, Int32 y, Int32 width, Int32 height, Int32 clientWidth, Int32 clientHeight)&lt;br&gt;   at System.Windows.Forms.Control.UpdateBounds(Int32 x, Int32 y, Int32 width, Int32 height)&lt;br&gt;   at System.Windows.Forms.Control.SetBoundsCore(Int32 x, Int32 y, Int32 width, Int32 height, BoundsSpecified specified)&lt;br&gt;   at System.Windows.Forms.Form.SetBoundsCore(Int32 x, Int32 y, Int32 width, Int32 height, BoundsSpecified specified)&lt;br&gt;   at System.Windows.Forms.Control.ScaleControl(SizeF factor, BoundsSpecified specified)&lt;br&gt;   at System.Windows.Forms.ScrollableControl.ScaleControl(SizeF factor, BoundsSpecified specified)&lt;br&gt;   at System.Windows.Forms.Form.ScaleControl(SizeF factor, BoundsSpecified specified)&lt;br&gt;   at System.Windows.Forms.Control.ScaleControl(SizeF includedFactor, SizeF excludedFactor, Control requestingControl)&lt;br&gt;   at System.Windows.Forms.ContainerControl.Scale(SizeF includedFactor, SizeF excludedFactor, Control requestingControl)&lt;br&gt;   at System.Windows.Forms.ContainerControl.PerformAutoScale(Boolean includedBounds, Boolean excludedBounds)&lt;br&gt;   at System.Windows.Forms.ContainerControl.PerformNeededAutoScaleOnLayout()&lt;br&gt;   at System.Windows.Forms.ContainerControl.OnLayoutResuming(Boolean performLayout)&lt;br&gt;   at System.Windows.Forms.Control.ResumeLayout(Boolean performLayout)&lt;br&gt;   at NetworkViewer.DeviceCategoriesForm.InitializeComponent()&lt;br&gt;   at NetworkViewer.DeviceCategoriesForm..ctor(MainForm mainForm, Network network)&lt;br&gt;   at NetworkViewer.MainForm.CreateDeviceCategoriesForm()&lt;br&gt;   at NetworkViewer.MainForm..ctor()&lt;br&gt;   at NetworkViewer.Program.Main()[/quote]</description><pubDate>Thu, 11 Sep 2008 22:59:13 GMT</pubDate><dc:creator>ethanlin</dc:creator></item><item><title>IP-Phones and PCs</title><link>http://forums.ipswitch.com/Topic46988-56-1.aspx</link><description>Ok, having trouble with my IP Phones again.&lt;br&gt;&lt;br&gt;When I scan a small LAN that has IP-Phones and PCs with no VLANs separating them, I get a picture with the phones attached to the Switch, and PCs sitting at the bottom of the Topology map, with no connections to anything - The links tab shows nothing.&lt;br&gt;&lt;br&gt;The actually connection has PCs connecting to a phone, which is then connected to teh switch. The IP-phone acts as a 2 port switch, which WC does not seem to understand.&lt;br&gt;&lt;br&gt;</description><pubDate>Mon, 15 Sep 2008 08:47:02 GMT</pubDate><dc:creator>Lionel K</dc:creator></item><item><title>minor issue - User Guide link not working</title><link>http://forums.ipswitch.com/Topic46972-56-1.aspx</link><description>When I go to Help -&gt; User Guide from the main WC window, I get "Page Not Found".  This is the link it's trying to use:&lt;br&gt;&lt;br&gt;http://docs.ipswitch.com/NM/92_WhatsUp%2520Gold%2520v12.3/04_Plug-ins/WhatsConnected/02_Guides/WhatsConnected%2520for%2520WhatsUp%2520Gold%2520v12.3%2520User%2520Guide.pdf?k_id=whatsupgold_com_wug_documents_worldwide_wugdocswhatsupgoldv123</description><pubDate>Fri, 12 Sep 2008 17:01:25 GMT</pubDate><dc:creator>Mark Bell</dc:creator></item><item><title>Phantom Links</title><link>http://forums.ipswitch.com/Topic46957-56-1.aspx</link><description>I have a number of IP-phones on a VLAN on our LAN. When I put these into a Topology Map, it shows them all connected to each other, as per the attached screen snippet.&lt;br&gt;&lt;br&gt;When I look at one the device's properties, it only shows one line - to the Backbone Switch, not the edge Switch.&lt;br&gt;The phones are all grouped together based on the Edge switch they are connected to.&lt;br&gt;&lt;br&gt;The phones are Avaya&lt;br&gt;The Switches are HP Procurve POE switches.</description><pubDate>Fri, 12 Sep 2008 09:25:40 GMT</pubDate><dc:creator>Lionel K</dc:creator></item><item><title>"Invalid IP address string" error</title><link>http://forums.ipswitch.com/Topic46970-56-1.aspx</link><description>Sorry, I mistakenly posted this in the NetFlow forum first...&lt;br&gt;&lt;br&gt;When performing a WC discovery on my network, I got a couple of popup boxes with the message "Application Error: Invalid IP address string". I was doing a very basic discovery just using the WUG server's default gateway as the seed device and did not specify any other scopes.&lt;br&gt;&lt;br&gt;The big problem is, as soon as I click "OK", the whole WhatsConnected window just disappears as if it's crashing. Prior to clicking "OK", the scan was continuing in the background and I could see it had discovered 49 devices.&lt;br&gt;&lt;br&gt;I've attached a screen shot of the error. I've done this several times and have been able to reproduce the issue each time.&lt;br&gt;&lt;br&gt;I've uploaded the discovery.log file.</description><pubDate>Fri, 12 Sep 2008 16:26:43 GMT</pubDate><dc:creator>Mark Bell</dc:creator></item><item><title>my thoughts.</title><link>http://forums.ipswitch.com/Topic46886-56-1.aspx</link><description>I just installed the Tech Preview. so far, i am impressed. However, a couple of questions - and maybe its my own ingnorance, but. &lt;/P&gt;&lt;P&gt;&lt;FONT color=#55dddd&gt;&lt;EM&gt;Is the "Technical Preview" a fancy word for "demo" ?&lt;/EM&gt;&lt;/FONT&gt; If not, then the product should be fully operational - no limits, no disabled features.  I like that there is an ability to export the WhatsConnected data to Whatsup AND Visio - however, I cant use either one, and that would weigh VERY HEAVILY on if we bought this plugin.&lt;/P&gt;&lt;P&gt;Will there be/is there any way to run reports against WhatsConnected w/o importing the maps/data into Whatsup? &lt;/P&gt;&lt;P&gt;As I stated, so far - i like the plugin. Adds quite a bit to Whatsup.</description><pubDate>Wed, 10 Sep 2008 12:48:56 GMT</pubDate><dc:creator>DonC</dc:creator></item><item><title>WUG 12.3 Requirement</title><link>http://forums.ipswitch.com/Topic46903-56-1.aspx</link><description>According to the relase notes, this code requires WUG 12.3, but this version doesn't appear to have been released. What's the deal here?</description><pubDate>Wed, 10 Sep 2008 19:01:22 GMT</pubDate><dc:creator>MarcusClarke</dc:creator></item></channel></rss>