- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Systems Insight Manager
- >
- Detecting Windows XP sp2 clients with SIM 4.2sp2
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2005 08:13 AM
06-22-2005 08:13 AM
Detecting Windows XP sp2 clients with SIM 4.2sp2
I am running HP SIM 4.2sp2 on my network, and I have just realized that it is consistently NOT detecting any client PCs running Windows XPsp2 during its automatic discovery. It is discovering the Windows 2000 clients with no problem.
I have the Windows XP firewall turned off on all my clients. Both my Win2k and WinXPsp2 clients have the HP Insight Manager agent (ver 5.01d) installed.
Any suggestions?
Thanks in advance!
John D.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2005 12:16 AM
06-23-2005 12:16 AM
Re: Detecting Windows XP sp2 clients with SIM 4.2sp2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2005 10:58 PM
06-28-2005 10:58 PM
Re: Detecting Windows XP sp2 clients with SIM 4.2sp2
I have the same problem with you, do you have find a solution ?
Thanks in advance!
Thierry M
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2005 04:35 AM
09-25-2005 04:35 AM
Re: Detecting Windows XP sp2 clients with SIM 4.2sp2
To solve this problem in your particular case (firewall disabled), you need to enable Anonymous Ramote Access permissions on your Windows XP SP2 machines:
To allow anonymous remote access in DCOM:
1. From the Start menu, click Run and type Dcomcnfg.exe.
2. In Component Services, click Console Root, click Component Services, click Computers, and then click My Computer. On the Action menu, click Properties.
3. In the My Computer Properties dialog box, on the COM Security tab, in the Access Permissions section, click Edit Limits.
4. In the Access Permission dialog box, select the check box to allow Remote Access for Anonymous Logon.
5. Restart the computer
Note that when you do this you disable a layer of protection for your machine, but since you are running without a firewall I guess this is not a problem in your environment.
For users with the Windows firewall enabled, you need to also do the following:
1. Open the SNMP Agents UDP port in the firewall; allow incoming connections on UDP port 161. Without this, the CSM cannot sent GET/GETNEXT/GETBULK commands to your machine, resulting in an incomplete discovery state.
2. Enable the RemoteAdministration exception in the Windows firewall:
From the command prompt type:
netsh firewall set service RemoteAdmin enable
This allows the CSM to connect to the WMI (WBEM) service on your machine. WMI registers it's port with the RPC endpoint mapper upon start, and you must have the RemoteAdmin exception to allow connections to it. (You could also open the WMI high-port specifically, but the port is selected at random on each service restart.)
3. Enable DCOM Anonymous Remote Access as described bove.
This worked with my XP SP2 machines.
Hope this helps!
PS: The documentation for SIM says that the standard port for WBEM is 5988/5989 and that you can query for WMI information at those ports, but Windows does not even listen on those ports. Strange...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2005 09:53 AM
09-25-2005 09:53 AM
Re: Detecting Windows XP sp2 clients with SIM 4.2sp2
Regarding 5988/5989, these are the standard WBEM ports for secure HTTP communications of XML-encoded Common Information Model data. HP SIM uses these ports for communicating using WBEM.
Note that WBEM <> WMI. The 'Pegasus WMI Mapper' installed optionally with HP SIM exchanges WBEM information as above with HP SIM and is used to translate and map information for targets that are WMI devices. That is, using DCOM to communicate to the WMI device and cross-translating it to HP SIM via WBEM and mapping back and forth between the CIMv2 namespace and the WMI namespace.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2005 10:20 AM
09-25-2005 10:20 AM
Re: Detecting Windows XP sp2 clients with SIM 4.2sp2
Best regards
Morgan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2005 10:53 AM
09-25-2005 10:53 AM
Re: Detecting Windows XP sp2 clients with SIM 4.2sp2
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wmisdk/wmi/con
necting_to_wmi_on_a_remote_computer.asp
The most basic remote connection is from Computer A to a namespace on Computer B where:
* The account on Computer A is a member of the administrators group.
* The same username and password credentials identify an account on Computer B that is an administrator account.
* The password for the account on Computer A is not blank.
Computer A is the source computer connecting to a namespace on Computer B.
WMI makes no distinction between local and remote access. If no computer name is specified, a connection to WMI defaults to the local computer. To connect to a remote computer either in script or C++, supply the name of the remote computer in the connection. The difference between a local and a remote connection is that users can specify a user name and password in a remote connection, replacing the current user name and password. With a local connection, users cannot override the current name and password.