Discussion:
[opennms-discuss] excluding an IP address range from monitoring
Adam Monsen
2011-03-22 23:12:33 UTC
Permalink
I use Amazon EC2, and I monitor EC2 machines with OpenNMS 1.8.10. The
monitored machines have snmpd running. OpenNMS talks to snmpd and
reads tons of useful info. Graphs and everything right out of the box.
Very nice!

OpenNMS also always finds an IP interface with an "internal" 10.x.x.x
address. I don't know where it learns about this internal EC2 IP, but
it's a bit annoying because it also discovers services running on the
internal IP. Sometimes the internal IPs change, and then OpenNMS
reports outages.

I only want OpenNMS to monitor what it can see via the public
(non-10.x.x.x) IP address. I tried adding 10.0.0.0 - 10.254.254.254 to
Admin -> Configure Discovery -> Exclude Ranges, but this didn't
help--it still monitors stuff for 10.x.x.x. Anyone have other ideas?

For now I just visit /opennms/element/nodeList.htm?listInterfaces=true
, click on each 10.x.x.x interface, and click "delete". Ugh.
the out-side admin
2011-03-23 06:03:55 UTC
Permalink
You can alter your notifications config via de admin webpart and exclude the ip's that bother you.
Post by Adam Monsen
I use Amazon EC2, and I monitor EC2 machines with OpenNMS 1.8.10. The
monitored machines have snmpd running. OpenNMS talks to snmpd and
reads tons of useful info. Graphs and everything right out of the box.
Very nice!
OpenNMS also always finds an IP interface with an "internal" 10.x.x.x
address. I don't know where it learns about this internal EC2 IP, but
it's a bit annoying because it also discovers services running on the
internal IP. Sometimes the internal IPs change, and then OpenNMS
reports outages.
I only want OpenNMS to monitor what it can see via the public
(non-10.x.x.x) IP address. I tried adding 10.0.0.0 - 10.254.254.254 to
Admin -> Configure Discovery -> Exclude Ranges, but this didn't
help--it still monitors stuff for 10.x.x.x. Anyone have other ideas?
For now I just visit /opennms/element/nodeList.htm?listInterfaces=true
, click on each 10.x.x.x interface, and click "delete". Ugh.
------------------------------------------------------------------------------
Enable your software for Intel(R) Active Management Technology to meet the
growing manageability and security demands of your customers. Businesses
are taking advantage of Intel(R) vPro (TM) technology - will your software
be a part of the solution? Download the Intel(R) Manageability Checker
today! http://p.sf.net/sfu/intel-dev2devmar
_______________________________________________
http://www.opennms.org/index.php/Mailing_List_FAQ
opennms-discuss mailing list
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Adam Monsen
2011-03-24 19:02:16 UTC
Permalink
Post by the out-side admin
You can alter your notifications config via de admin webpart and
exclude the ip's that bother you.
Yes, something like

... & (!(IPADDR IPLIKE 10.*.*.*))

prevents notifications, thanks!
Adam Monsen
2011-03-28 18:10:03 UTC
Permalink
Post by Adam Monsen
Post by the out-side admin
You can alter your notifications config via de admin webpart and
exclude the ip's that bother you.
Yes, something like
... & (!(IPADDR IPLIKE 10.*.*.*))
prevents notifications, thanks!
Hmm, but services outages are still shown for 10.x.x.x in the Web UI.
Is there a way to exclude that besides manually deleting 10.x.x.x
interfaces from the Web UI over and over? Every time I reboot an EC2
instance, different 10.x.x.x interfaces are created.

Maybe in /etc/snmp/snmpd.conf ?
Patrick Tuite
2011-03-28 18:52:06 UTC
Permalink
Post by Adam Monsen
Post by Adam Monsen
Post by the out-side admin
You can alter your notifications config via de admin webpart and
exclude the ip's that bother you.
Yes, something like
...& (!(IPADDR IPLIKE 10.*.*.*))
prevents notifications, thanks!
Hmm, but services outages are still shown for 10.x.x.x in the Web UI.
Is there a way to exclude that besides manually deleting 10.x.x.x
interfaces from the Web UI over and over? Every time I reboot an EC2
instance, different 10.x.x.x interfaces are created.
Maybe in /etc/snmp/snmpd.conf ?
What method of discovery are you using? Capsd or Provisiond?
You can add ranges within each service definition within capsd to
exclude from scanning for, adding the addresses to ICMP probably will
ensure they are not monitored.

In Provisiond, you can use a policy to "Do Not Persist" IP interfaces of
that IP or range of IPs with regular expression in the Default Foreign
Source.

Regards
Patrick
Post by Adam Monsen
------------------------------------------------------------------------------
Create and publish websites with WebMatrix
Use the most popular FREE web apps or write code yourself;
WebMatrix provides all the features you need to develop and publish
your website. http://p.sf.net/sfu/ms-webmatrix-sf
_______________________________________________
http://www.opennms.org/index.php/Mailing_List_FAQ
opennms-discuss mailing list
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Adam Monsen
2011-03-29 19:51:07 UTC
Permalink
Post by Patrick Tuite
What method of discovery are you using? Capsd or Provisiond?
< meonkeys> how can I tell whether I'm using capsd or provisiond?
< RangerRick> unless you've gone out of your way to use provisiond,
you're using capsd =)
So, like I mentioned in my original post, I tried adding
10.0.0.0 - 10.254.254.254 to
Admin -> Configure Discovery -> Exclude Ranges, but this didn't
help--it still discovers interfaces with 10.x.x.x addresses.
Post by Patrick Tuite
You can add ranges within each service definition within capsd to
exclude from scanning for, adding the addresses to ICMP probably will
ensure they are not monitored.
Aha, ok, so I added

<protocol-configuration scan="off" user-defined="false">
<range begin="10.0.0.0" end="10.254.254.254"/>
</protocol-configuration>

inside the protocol-plugin element with attribute protocol="ICMP" in
capsd-configuration.xml, and re-started OpenNMS. Was that what you meant?

Here's a larger snippet of my capsd-configuration.xml file:

...
<protocol-plugin protocol="ICMP" class-name="org.opennms.netmgt.capsd.plugins.IcmpPlugin" scan="on">
<property key="timeout" value="2000" />
<property key="retry" value="1" />
<protocol-configuration scan="off" user-defined="false">
<range begin="10.0.0.0" end="10.254.254.254"/>
</protocol-configuration>
</protocol-plugin>
...
Patrick Tuite
2011-03-30 10:57:41 UTC
Permalink
Post by Adam Monsen
Post by Patrick Tuite
What method of discovery are you using? Capsd or Provisiond?
< meonkeys> how can I tell whether I'm using capsd or provisiond?
< RangerRick> unless you've gone out of your way to use provisiond,
you're using capsd =)
So, like I mentioned in my original post, I tried adding
10.0.0.0 - 10.254.254.254 to
Admin -> Configure Discovery -> Exclude Ranges, but this didn't
help--it still discovers interfaces with 10.x.x.x addresses.
Post by Patrick Tuite
You can add ranges within each service definition within capsd to
exclude from scanning for, adding the addresses to ICMP probably will
ensure they are not monitored.
Aha, ok, so I added
<protocol-configuration scan="off" user-defined="false">
<range begin="10.0.0.0" end="10.254.254.254"/>
</protocol-configuration>
inside the protocol-plugin element with attribute protocol="ICMP" in
capsd-configuration.xml, and re-started OpenNMS. Was that what you meant?
...
<protocol-plugin protocol="ICMP" class-name="org.opennms.netmgt.capsd.plugins.IcmpPlugin" scan="on">
<property key="timeout" value="2000" />
<property key="retry" value="1" />
<protocol-configuration scan="off" user-defined="false">
<range begin="10.0.0.0" end="10.254.254.254"/>
</protocol-configuration>
</protocol-plugin>
...
That looks right. We use similar for SNMP. Does it set those Interfaces
to Not Monitored, if they are then discovered by SNMP?

Regards
Patrick
--
Patrick Tuite
Adam Monsen
2011-04-01 02:21:33 UTC
Permalink
Post by Patrick Tuite
That looks right. We use similar for SNMP. Does it set those
Interfaces to Not Monitored, if they are then discovered by SNMP?
No, it doesn't appear to be working. 10.x.x.x just keep popping
into existence. I even tried adding range exclusions to HTTP, HTTPS,
SNMP, and every service ever detected on these boxen.
Patrick Tuite
2011-04-01 12:30:39 UTC
Permalink
Hi Adam
Adam Monsen
2011-04-05 19:29:09 UTC
Permalink
Perhaps you can also put that exclude range into
poller-configuration.xml?
Done. OpenNMS is still finding 10.x.x.x IP interfaces
and marking them as "managed", BUT, under "availability",
I see that all of the services on that interface are
"Not Monitored". Good enough, whew.

Thanks, Patrick!
Jason Long
2011-04-02 03:50:48 UTC
Permalink
Post by Adam Monsen
No, it doesn't appear to be working. 10.x.x.x just keep popping
into existence. I even tried adding range exclusions to HTTP, HTTPS,
SNMP, and every service ever detected on these boxen.
Hi Adam,
Maybe this will work? In capsd-configuration.xml add:

<ip-management policy="unmanaged">
<specific>0.0.0.0</specific>
<range begin="10.0.0.0" end="10.255.255.255"/>
</ip-management>


ref: http://www.opennms.org/wiki/Discovery#Management_Policies
m***@gmail.com
2011-03-30 12:39:06 UTC
Permalink
How do you setup the wmi monitoring by subnet

I followed the docs online but after I made changes to wmi xml file opemnms would not start

So I had to back out my changes

Marc
Sent from my Verizon Wireless BlackBerry

-----Original Message-----
From: Adam Monsen <***@gmail.com>
Date: Tue, 29 Mar 2011 12:51:07
To: Patrick Tuite<***@airspeed.ie>
Reply-To: General OpenNMS Discussion <opennms-***@lists.sourceforge.net>
Cc: General OpenNMS Discussion<opennms-***@lists.sourceforge.net>
Subject: Re: [opennms-discuss] excluding an IP address range from monitoring
Post by Patrick Tuite
What method of discovery are you using? Capsd or Provisiond?
< meonkeys> how can I tell whether I'm using capsd or provisiond?
< RangerRick> unless you've gone out of your way to use provisiond,
you're using capsd =)
So, like I mentioned in my original post, I tried adding
10.0.0.0 - 10.254.254.254 to
Admin -> Configure Discovery -> Exclude Ranges, but this didn't
help--it still discovers interfaces with 10.x.x.x addresses.
Post by Patrick Tuite
You can add ranges within each service definition within capsd to
exclude from scanning for, adding the addresses to ICMP probably will
ensure they are not monitored.
Aha, ok, so I added

<protocol-configuration scan="off" user-defined="false">
<range begin="10.0.0.0" end="10.254.254.254"/>
</protocol-configuration>

inside the protocol-plugin element with attribute protocol="ICMP" in
capsd-configuration.xml, and re-started OpenNMS. Was that what you meant?

Here's a larger snippet of my capsd-configuration.xml file:

...
<protocol-plugin protocol="ICMP" class-name="org.opennms.netmgt.capsd.plugins.IcmpPlugin" scan="on">
<property key="timeout" value="2000" />
<property key="retry" value="1" />
<protocol-configuration scan="off" user-defined="false">
<range begin="10.0.0.0" end="10.254.254.254"/>
</protocol-configuration>
</protocol-plugin>
...

------------------------------------------------------------------------------
Enable your software for Intel(R) Active Management Technology to meet the
growing manageability and security demands of your customers. Businesses
are taking advantage of Intel(R) vPro (TM) technology - will your software
be a part of the solution? Download the Intel(R) Manageability Checker
today! http://p.sf.net/sfu/intel-dev2devmar
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.
Jason Long
2011-03-30 22:18:40 UTC
Permalink
Post by m***@gmail.com
How do you setup the wmi monitoring by subnet
I followed the docs online but after I made changes to wmi xml file opemnms would not start
So I had to back out my changes
Marc
Sent from my Verizon Wireless BlackBerry
Use xmllint to check the xml for syntax errors, correct, and start
opennms. Or post your configuration here, with the error message..
marc ritorto
2011-03-31 01:12:56 UTC
Permalink
thanks jason
Post by m***@gmail.com
Post by m***@gmail.com
How do you setup the wmi monitoring by subnet
I followed the docs online but after I made changes to wmi xml file
opemnms would not start
Post by m***@gmail.com
So I had to back out my changes
Marc
Sent from my Verizon Wireless BlackBerry
Use xmllint to check the xml for syntax errors, correct, and start
opennms. Or post your configuration here, with the error message..
------------------------------------------------------------------------------
Create and publish websites with WebMatrix
Use the most popular FREE web apps or write code yourself;
WebMatrix provides all the features you need to develop and
publish your website. http://p.sf.net/sfu/ms-webmatrix-sf
_______________________________________________
http://www.opennms.org/index.php/Mailing_List_FAQ
opennms-discuss mailing list
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Kevin Küper
2011-03-31 06:45:57 UTC
Permalink
Hi Marc

See my wmi-config.xml for example.

I activated wmi a few days ago. I had set the range in the <wmi-config> tag and thats wrong.

You?d have to set them in a <definition> tag.

Hope this will help.

 

 

<?xml version="1.0"?>

<wmi-config retry="2" timeout="10000"

                username="USERNAME" domain="DOMAINNAME" password="PASSWORD">

               

               

                <definition username="USERNAME" domain="DOMAINNAME" password="PASSWORD">

        <ns1:range xmlns:ns1="http://xmlns.opennms.org/xsd/types"

            begin="192.168.161.1" end="192.168.161.254"/>

        <ns2:range xmlns:ns1="http://xmlns.opennms.org/xsd/types"

            begin="192.168.162.1" end="192.168.162.254"/>

    </definition>

               

</wmi-config>

 

Von: marc ritorto [mailto:***@gmail.com]
Gesendet: Donnerstag, 31. März 2011 03:13
An: General OpenNMS Discussion
Betreff: Re: [opennms-discuss] Wmi monitoring


 

thanks jason
Post by m***@gmail.com
How do you setup the wmi monitoring by subnet
I followed the docs online but after I made changes to wmi xml file opemnms would not start
So I had to back out my changes
Marc
Sent from my Verizon Wireless BlackBerry
Use xmllint to check the xml for syntax errors, correct, and start
opennms. Or post your configuration here, with the error message..


------------------------------------------------------------------------------
Create and publish websites with WebMatrix
Use the most popular FREE web apps or write code yourself;
WebMatrix provides all the features you need to develop and
publish your website. http://p.sf.net/sfu/ms-webmatrix-sf
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss


 
m***@gmail.com
2011-03-31 11:58:48 UTC
Permalink
Thanks you
Sent from my Verizon Wireless BlackBerry

-----Original Message-----
From: Kevin Küper <***@meypack.de>
Date: Thu, 31 Mar 2011 08:45:57
To: General OpenNMS Discussion<opennms-***@lists.sourceforge.net>
Reply-To: General OpenNMS Discussion <opennms-***@lists.sourceforge.net>
Subject: Re: [opennms-discuss] Wmi monitoring

------------------------------------------------------------------------------
Create and publish websites with WebMatrix
Use the most popular FREE web apps or write code yourself;
WebMatrix provides all the features you need to develop and
publish your websit
Kevin Küper
2011-03-31 13:11:36 UTC
Permalink
Hey guys
Another question. Is there a way to check with one wmi poller against two wmiObjects? For example: i would like to check a win32_service against wmiObject state (running) and wmiObject status (ok).

<service name="Dienste-SophosScanner" interval="300000" user-defined="false" status="on">
<parameter key="timeout" value="5000" />
<parameter key="rrd-repository" value="/var/lib/opennms/rrd/response"/>
<parameter key="retry" value="2" />
<parameter key="matchType" value="all"/>
<parameter key="wql" value="Select name, state from win32_service where name like 'SAVService' OR name like 'SAVAdminService' OR name like 'Sophos AutoUpdate Service' OR name like 'Sophos Message Router' OR name like 'swi[_]service'"/>
<parameter key="wmiObject" value="state" />
<parameter key="compareOp" value="EQ" />
<parameter key="compareValue" value="Running" />
<parameter key="service-name" value="Dienste-SophosScanner" />
</service>
marc ritorto
2011-03-31 21:07:17 UTC
Permalink
jason

Your configuration works. I now have to work on the wmi data collection
Post by Kevin Küper
Hi Marc
See my wmi-config.xml for example.
I activated wmi a few days ago. I had set the range in the <wmi-config> tag
and thats wrong.
You‘d have to set them in a <definition> tag.
Hope this will help.
<?xml version="1.0"?>
<wmi-config retry="2" timeout="10000"
username="USERNAME" domain="DOMAINNAME"
password="PASSWORD">
<definition username="USERNAME" domain="DOMAINNAME"
password="PASSWORD">
<ns1:range xmlns:ns1="http://xmlns.opennms.org/xsd/types"
begin="192.168.161.1" end="192.168.161.254"/>
<ns2:range xmlns:ns1="http://xmlns.opennms.org/xsd/types"
begin="192.168.162.1" end="192.168.162.254"/>
</definition>
</wmi-config>
*Gesendet:* Donnerstag, 31. März 2011 03:13
*An:* General OpenNMS Discussion
*Betreff:* Re: [opennms-discuss] Wmi monitoring
thanks jason
Post by m***@gmail.com
How do you setup the wmi monitoring by subnet
I followed the docs online but after I made changes to wmi xml file
opemnms would not start
Post by m***@gmail.com
So I had to back out my changes
Marc
Sent from my Verizon Wireless BlackBerry
Use xmllint to check the xml for syntax errors, correct, and start
opennms. Or post your configuration here, with the error message..
------------------------------------------------------------------------------
Create and publish websites with WebMatrix
Use the most popular FREE web apps or write code yourself;
WebMatrix provides all the features you need to develop and
publish your website. http://p.sf.net/sfu/ms-webmatrix-sf
_______________________________________________
http://www.opennms.org/index.php/Mailing_List_FAQ
opennms-discuss mailing list
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
------------------------------------------------------------------------------
Create and publish websites with WebMatrix
Use the most popular FREE web apps or write code yourself;
WebMatrix provides all the features you need to develop and
publish your website. http://p.sf.net/sfu/ms-webmatrix-sf
_______________________________________________
http://www.opennms.org/index.php/Mailing_List_FAQ
opennms-discuss mailing list
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
marc ritorto
2011-03-31 21:44:14 UTC
Permalink
jason,

do i need to setup the server to use ldap to authenicated I am getting these
errors when I run the wmicheck tool on opennms



his is either due to a bad username or authentication information.
[0xC000006D]
at org.opennms.protocols.wmi.WmiClient.connect(WmiClient.java:262)
at org.opennms.protocols.wmi.WmiManager.init(WmiManager.java:258)
at org.opennms.protocols.wmi.CheckWmi.main(CheckWmi.java:150)
Caused by: org.jinterop.dcom.common.JIException: The attempted logon is
invalid. This is either due to a bad username or authentication information.
[0xC000006D]
at
org.jinterop.winreg.smb.JIWinRegStub.winreg_OpenHKLM(JIWinRegStub.java:115)
at
org.jinterop.dcom.core.JIProgId.getIdFromWinReg(JIProgId.java:130)
at
org.jinterop.dcom.core.JIProgId.getCorrespondingCLSID(JIProgId.java:162)
at org.jinterop.dcom.core.JIComServer.<init>(JIComServer.java:413)
at org.opennms.protocols.wmi.WmiClient.connect(WmiClient.java:231)
... 2 more
Caused by: jcifs.smb.SmbAuthException: Logon failure: unknown user name or
bad password.
at jcifs.smb.SmbTransport.checkStatus(SmbTransport.java:528)
at jcifs.smb.SmbTransport.send(SmbTransport.java:645)
at jcifs.smb.SmbSession.sessionSetup(SmbSession.java:395)
at jcifs.smb.SmbSession.send(SmbSession.java:224)
at jcifs.smb.SmbTree.treeConnect(SmbTree.java:176)
at jcifs.smb.SmbFile.doConnect(SmbFile.java:906)
at jcifs.smb.SmbFile.connect(SmbFile.java:949)
at jcifs.smb.SmbFile.connect0(SmbFile.java:875)
at jcifs.smb.SmbFileInputStream.<init>(SmbFileInputStream.java:76)
at jcifs.smb.SmbFileInputStream.<init>(SmbFileInputStream.java:65)
at jcifs.smb.SmbFile.getInputStream(SmbFile.java:2833)
at rpc.ncacn_np.RpcTransport.attach(RpcTransport.java:91)
at rpc.Stub.attach(Stub.java:106)
at rpc.Stub.call(Stub.java:110)
at
org.jinterop.winreg.smb.JIWinRegStub.winreg_OpenHKLM(JIWinRegStub.java:113)

This is the command I ran

checkwmi -matchType all -wmiClass Win32_BIOS -wmiObject Status -op EQ -value
OK servername domain.ad userid pwd!
Post by marc ritorto
jason
Your configuration works. I now have to work on the wmi data collection
Post by Kevin Küper
Hi Marc
See my wmi-config.xml for example.
I activated wmi a few days ago. I had set the range in the <wmi-config>
tag and thats wrong.
You‘d have to set them in a <definition> tag.
Hope this will help.
<?xml version="1.0"?>
<wmi-config retry="2" timeout="10000"
username="USERNAME" domain="DOMAINNAME"
password="PASSWORD">
<definition username="USERNAME" domain="DOMAINNAME"
password="PASSWORD">
<ns1:range xmlns:ns1="http://xmlns.opennms.org/xsd/types"
begin="192.168.161.1" end="192.168.161.254"/>
<ns2:range xmlns:ns1="http://xmlns.opennms.org/xsd/types"
begin="192.168.162.1" end="192.168.162.254"/>
</definition>
</wmi-config>
*Gesendet:* Donnerstag, 31. März 2011 03:13
*An:* General OpenNMS Discussion
*Betreff:* Re: [opennms-discuss] Wmi monitoring
thanks jason
Post by m***@gmail.com
How do you setup the wmi monitoring by subnet
I followed the docs online but after I made changes to wmi xml file
opemnms would not start
Post by m***@gmail.com
So I had to back out my changes
Marc
Sent from my Verizon Wireless BlackBerry
Use xmllint to check the xml for syntax errors, correct, and start
opennms. Or post your configuration here, with the error message..
------------------------------------------------------------------------------
Create and publish websites with WebMatrix
Use the most popular FREE web apps or write code yourself;
WebMatrix provides all the features you need to develop and
publish your website. http://p.sf.net/sfu/ms-webmatrix-sf
_______________________________________________
http://www.opennms.org/index.php/Mailing_List_FAQ
opennms-discuss mailing list
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
------------------------------------------------------------------------------
Create and publish websites with WebMatrix
Use the most popular FREE web apps or write code yourself;
WebMatrix provides all the features you need to develop and
publish your website. http://p.sf.net/sfu/ms-webmatrix-sf
_______________________________________________
http://www.opennms.org/index.php/Mailing_List_FAQ
opennms-discuss mailing list
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
marc ritorto
2011-04-06 19:10:29 UTC
Permalink
guys

any furthur thoughs on the wmi. It seems as if I just setup a wmi service.

How do I setup further queries
Chris Hall
2011-04-07 12:59:49 UTC
Permalink
Hi Marc,
Someone on here sent me these notes about setting up WMI which have been really useful. The only gotcha is that they only seem to work ok on Server 2003 - I haven't been able to get WMI to work properly on server 2008R2.
"First, in collectd-configuration.xml, for the WMI service change the status from off to on.

Second, add credentials to wmi-config.xml for a user that is remotely allowed to access your servers

<?xml version="1.0"?>
<wmi-config retry="2" timeout="1500"
username="elsayedm" domain="JUSTFIRMA.DE" password="***@just:">

<definition username="elsayedm" domain="JUSTFIRMA.DE" password="***@just:">
<specific xmlns="">192.168.251.100</specific>
</definition>

</wmi-config>

Third , add the following XML chunk to the capsd-configuration.xml file, inside the <capsd-configuration> section.

<!-- WMI Monitoring -->
<protocol-plugin protocol="WMI-test-AntiVR" class-name="org.opennms.netmgt.capsd.plugins.WmiPlugin" scan="on" user-defined="false">
<property key="timeout" value="2000" />
<property key="retry" value="2" />
<property key="matchType" value="all"/>
m***@gmail.com
2011-04-07 14:09:53 UTC
Permalink
Is there a wmi log to check

How can I verify its collecting data via wmi

I have a lot of 2003 servers
Sent from my Verizon Wireless BlackBerry

-----Original Message-----
From: Chris Hall <***@im.primefundsolutions.com>
Date: Thu, 7 Apr 2011 12:59:49
To: 'General OpenNMS Discussion'<opennms-***@lists.sourceforge.net>
Reply-To: General OpenNMS Discussion <opennms-***@lists.sourceforge.net>
Subject: Re: [opennms-discuss] Wmi monitoring
Kevin Küper
2011-04-07 13:45:54 UTC
Permalink
This should work for 2008 maybe for Win7 and Vista too.

A short look into the opennms-wiki showed this.

http://www.opennms.org/wiki/WmiConfiguration

 

 

Windows 2008 R2

Ownership/Permission changes made in Windows 2008 R2's registry have caused OpenNMS' WMI support to not work out of the box and require you to revert those changes. To change the default behavior of Windows 2008 R2 to allow for OpenNMS' to talk to WMI Follow these Steps.
1. Launch 'regedit.exe' as 'Administrator'
2. Find the following registry key: 'HKEY_CLASSES_ROOT\CLSID\76A6415B-CB41-11d1-8B02-00600806D9B6'
3. Right click and select 'Permissions'
4. Click the 'Advanced' button.
5. Select the tab labeled 'Owner'
6. Change the owner to 'Administrator'
7. Click the 'Ok' button.
8. Now highlight the 'Administrators' group and grant Full Control
9. Click 'Ok'
 


 

Von: Chris Hall [mailto:***@im.primefundsolutions.com]
Gesendet: Donnerstag, 7. April 2011 15:00
An: 'General OpenNMS Discussion'
Betreff: Re: [opennms-discuss] Wmi monitoring



 

Hi Marc,

Someone on here sent me these notes about setting up WMI which have been really useful. The only gotcha is that they only seem to work ok on Server 2003 ? I haven?t been able to get WMI to work properly on server 2008R2.

?First, in collectd-configuration.xml, for the WMI service change the status from off to on.

 

Second, add credentials to wmi-config.xml for a user that is remotely allowed to access your servers

 

<?xml version="1.0"?>

<wmi-config retry="2" timeout="1500"

        username="elsayedm" domain="JUSTFIRMA.DE" password="***@just:">

 

        <definition  username="elsayedm" domain="JUSTFIRMA.DE" password="***@just:">

        <specific xmlns="">192.168.251.100</specific>

    </definition>

 

</wmi-config>

 

Third , add the following XML chunk to the capsd-configuration.xml file, inside the <capsd-configuration> section.

 

<!-- WMI Monitoring -->

    <protocol-plugin protocol="WMI-test-AntiVR" class-name="org.opennms.netmgt.capsd.plugins.WmiPlugin" scan="on" user-defined="false">

        <property key="timeout" value="2000" />

        <property key="retry" value="2" />

        <property key="matchType" value="all"/>

   
m***@gmail.com
2011-04-07 16:17:12 UTC
Permalink
I have it setup but it looks like I am monitoring the wMi service instead of doing queries am I wrong
Sent from my Verizon Wireless BlackBerry

-----Original Message-----
From: Kevin Küper <***@meypack.de>
Date: Thu, 7 Apr 2011 15:45:54
To: General OpenNMS Discussion<opennms-***@lists.sourceforge.net>
Reply-To: General OpenNMS Discussion <opennms-***@lists.sourceforge.net>
Subject: Re: [opennms-discuss] Wmi monitoring

------------------------------------------------------------------------------
Xperia(TM) PLAY
It's a major breakthrough. An authentic gaming
smartphone on the nation's most reliable network.
And it wants your games.
http://p.sf
Kevin Küper
2011-04-07 08:49:00 UTC
Permalink
Hi marc,

Please look at the following site.

http://www.opennms.org/wiki/WMI

It?s not that hard monitoring things with wmi.

 

Good tip. Open the Windows PowerShell on the target PC.

There is a command like

get-wmiobject

It asks for a class and throws out all the information of the PC discribed in the specific class.

You can find a library of this classes here:

http://msdn.microsoft.com/en-us/library/aa394084%28v=VS.85%29.aspx

 

For Example: If you want to monitor the VMWare Tools Services. You can look for a specific service with capsd. See:

                <protocol-plugin protocol="Dienste-VMWare-Tools" class-name="org.opennms.netmgt.capsd.plugins.WmiPlugin" scan="on" user-defined="false">

                               <property key="timeout" value="10000" />

                               <property key="retry" value="2" />

                               <property key="matchType" value="all"/>

                               <property key="wql" value="Select name , state from win32_service where name like 'VMTools'"/>

                               <property key="wmiObject" value="state" />

                               <property key="compareOp" value="EQ" />

                               <property key="compareValue" value="Running" />

                               <property key="service-name" value="Dienste-VMWare-Tools" />

                </protocol-plugin>

 

wmiObject state is a part oft he win32_service class. It can have the value: Stopped or Running

wql is a sql-like statement. It just throws specific data back. To use for more granularity.

 

 

        <service name="Dienste-VMWare-Tools" interval="300000"

            user-defined="false" status="on">

            <parameter key="timeout" value="10000"/>

            <parameter key="rrd-repository" value="/var/lib/opennms/rrd/response"/>

            <parameter key="retry" value="2"/>

            <parameter key="matchType" value="All"/>

            <parameter key="wql" value="Select name, state from w32_service where name like 'VMTools' or name like 'VMware Physical Disk Helper Service' or name like 'VMUpgradeHelper'"/>

            <parameter key="wmiObject" value="state"/>

            <parameter key="compareOp" value="EQ"/>

            <parameter key="compareValue" value="Running"/>

            <parameter key="service-name" value="Dienste-VMWare-Tools"/>

        </service>

 

    <monitor service="Dienste-VMWare-Tools" class-name="org.opennms.netmgt.poller.monitors.WmiMonitor"/>

 

This is my poller configuration. So I check for the service VMTools to see if the VMware Tools are installed. After that I poll multiple services which belong to VMware Tolls and check if all of them are running (matchType = All).

 

And so on there are many things to monitor. WMI shows many things and settings. Here you can use the PowerShell to see what informations are available.  

./checkwmi -wmiWql "select name, state from win32_service where name like ?VMTools?" -wmiObject State -matchType all -value Running -op EQ SERVER USER  PASSWORT

 

Thats the checkwmi command for example. You don?t need LDAP or anything. Just provide checkwmi with user and password of a user which hase admin rights on the target machine.

 

 

 

 

 

§  guys

any furthur thoughs on the wmi. It seems as if I just setup a wmi service.

How do I setup further queries
marc ritorto
2011-04-14 13:43:49 UTC
Permalink
guys


Can you configure opennms to wmi query more than one domain.

Also how can I verify if opennms is doing sucessful wmi queries?

Marc
Post by m***@gmail.com
Post by m***@gmail.com
How do you setup the wmi monitoring by subnet
I followed the docs online but after I made changes to wmi xml file
opemnms would not start
Post by m***@gmail.com
So I had to back out my changes
Marc
Sent from my Verizon Wireless BlackBerry
Use xmllint to check the xml for syntax errors, correct, and start
opennms. Or post your configuration here, with the error message..
------------------------------------------------------------------------------
Create and publish websites with WebMatrix
Use the most popular FREE web apps or write code yourself;
WebMatrix provides all the features you need to develop and
publish your website. http://p.sf.net/sfu/ms-webmatrix-sf
_______________________________________________
http://www.opennms.org/index.php/Mailing_List_FAQ
opennms-discuss mailing list
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
marc ritorto
2011-04-21 18:57:23 UTC
Permalink
guys

can you have wmi queries to 2 different windows domains with otrs with 2
different windows accounts

marc
Post by m***@gmail.com
Post by m***@gmail.com
How do you setup the wmi monitoring by subnet
I followed the docs online but after I made changes to wmi xml file
opemnms would not start
Post by m***@gmail.com
So I had to back out my changes
Marc
Sent from my Verizon Wireless BlackBerry
Use xmllint to check the xml for syntax errors, correct, and start
opennms. Or post your configuration here, with the error message..
------------------------------------------------------------------------------
Create and publish websites with WebMatrix
Use the most popular FREE web apps or write code yourself;
WebMatrix provides all the features you need to develop and
publish your website. http://p.sf.net/sfu/ms-webmatrix-sf
_______________________________________________
http://www.opennms.org/index.php/Mailing_List_FAQ
opennms-discuss mailing list
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Abraham Benites
2011-04-23 07:25:01 UTC
Permalink
You can do it with the following wmi-config.xml configuration:

<?xml version="1.0"?>
<!-- The opening element contains the default user information -->
<wmi-config retry="2" timeout="1500"
username="Administrator" domain="WORKGROUP" password="password">

<!-- This definition shows how to specify a user for a range of IP addresses. -->
<definition username="DomainUserA" domain="MYDOMAIN" password="unsecurepwd">
<ns1:range xmlns:ns1="http://xmlns.opennms.org/xsd/types"
begin="192.168.1.1" end="192.168.1.10"/>
</definition>

<!-- This definition shows how to specify a user for a specific IP address -->
<definition username="BobVilla" domain="MYMACHINENAME" password="buildahouse">
<specific xmlns="">192.168.1.12</specific>
</definition>
</wmi-config>

You ca use specific users for a subnet or an specific user for a computer.

Best regards,

Abraham Benites
marc ritorto [mailto:]
1970-01-01 00:00:00 UTC
Permalink
Configuring WMI on win 2003, Vista, Server 2008:
Enabling DCOM
Windows Management Instrumentation (WMI) uses DCOM to communicate with monitored target computers. Therefore, for Application Performance Monitor to use WMI, DCOM must be enabled and properly configured.
To enable DCOM permissions for your Application Performance Monitor credentials:
1. Log on to the computer you want to monitor with an administrator account.
2. Navigate to Start > Control Panel > Administrative Tools > Component Services. You need to switch to the Classic View of the Control Panel to use this navigation path. You can also launch this console by double-clicking comexp.msc in the /windows/system32 directory. Configuring WMI on Windows Vista and Windows Server 2008 for Application Performance Monitor ¤ 3
3. Expand Component Services > Computers.
4. Right-click My Computer, and then select Properties.
5. Select the COM Security tab, and then click Edit Limits in the Access Permissions grouping.
6. Ensure the user account you want to use to collect WMI statistics has Local Access and Remote Access, and then click OK.
7. Click Edit Default, and then ensure the user account you want to use to collect WMI statistics has Local Access and Remote Access,
8. Click OK.
9. Click Edit Limits in the Launch and Activation Permissions grouping.
10. Ensure the user account you want to use to collect WMI statistics has Local Launch, Remote Launch, Local Activation, and Remote Activation, and then click OK.
11. Click Edit Default, and then ensure the user account you want to use to collect WMI statistics Local Launch, Remote Launch, Local Activation, and Remote Activation.
12. Click OK.
Enabling Account Privileges in WMI
The account you specify in the Credentials Library must possess security access to the namespace and subnamespaces of the monitored target computer. To enable these privileges, complete the following procedure.
To enable namespace and subnamespaces privileges:
1. Log on to the computer you want to monitor with an administrator account.
2. Navigate to Start > Control Panel > Administrative Tools > Computer Management > Services and Applications. You need to switch to the Classic View of the Control Panel to use this navigation path.
3. Click WMI Control, and then right-click and select Properties.
4. Select the Security tab, and then expand Root and click CIMV2.
5. Click Security and then select the user account used to access this computer and ensure you grant the following permissions:
Enable Account
Remote Enable

6. Click Advanced, and then select the user account used to access this computer.
7. Click Edit, select This namespace and subnamespaces in the Apply to field, and then click OK.
8. Click OK on the Advanced Security Settings for CIMV2 window.
9. Click OK on the Security for Root\CIMV2 window.
10. Click Services in the left navigation pane of Computer Management.
11. Select Windows Management Instrumentation in the Services result pane, and then click Restart. 4 ¤ Configuring WMI on Windows Vista and Windows Server 2008 for Application Performance Monitor
Allowing WMI through the Windows Firewall
You must allow WMI traffic through the firewall of the monitored application server. The following procedure walks you through allowing WMI through the Windows Firewall.
To allow WMI traffic through the Windows Firewall:
1. Log on to the computer you want to monitor with an administrator account.
2. Navigate to Start > Control Panel > Security Center. You need to switch to the Classic View of the Control Panel to use this navigation path.
3. Click Windows Firewall in the left navigation pane.
4. Click Allow a program through Windows Firewall in the left navigation pane.
5. Check Windows Management Instumentation (WMI), and then click OK."

Thanks
Chris

From: marc ritorto [mailto:***@gmail.com]
Sent: 06 April 2011 20:10
To: General OpenNMS Discussion
Subject: Re: [opennms-discuss] Wmi monitoring

guys

any furthur thoughs on the wmi. It seems as if I just setup a wmi service.

How do I setup further queries

--_000_F69E06B480F9B74E8056BCAE90E2F33A0B974B95EXCH2010imforti_
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Generator" content="Microsoft Word 14 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
{font-family:Helvetica;
panose-1:2 11 6 4 2 2 2 2 2 4;}
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
{font-family:Verdana;
panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
{font-family:"Book Antiqua";
panose-1:2 4 6 2 5 3 5 3 3 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0cm;
margin-bottom:.0001pt;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-priority:99;
color:purple;
text-decoration:underline;}
span.EmailStyle17
{mso-style-type:personal-reply;
font-family:"Calibri","sans-serif";
color:#1F497D;}
p.default, li.default, div.default
{mso-style-name:default;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.pa49, li.pa49, div.pa49
{mso-style-name:pa49;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.pa1, li.pa1, div.pa1
{mso-style-name:pa1;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.pa58, li.pa58, div.pa58
{mso-style-name:pa58;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
.MsoChpDefault
{mso-style-type:export-only;
font-family:"Calibri","sans-serif";
mso-fareast-language:EN-US;}
@page WordSection1
{size:612.0pt 792.0pt;
margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
{page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-GB" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D">Hi Marc,<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D">Someone on here sent me these notes about setting up WMI which have been really useful. The only gotcha is that they only seem to work ok on Server 2003 &#8211; I
haven&#8217;t been able to get WMI to work properly on server 2008R2.<o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:10.0pt"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D">&#8220;</span><span lang="EN-US" style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;;color:#2C2C29">First, in collectd-configuration.xml,
for the WMI service change the status from off to </span><span lang="EN-US" style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;;color:red">on</span><span lang="EN-US" style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;;color:#2C2C29">.</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal" style="margin-bottom:10.0pt"><span lang="EN-US" style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;;color:#2C2C29">&nbsp;</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal" style="margin-bottom:10.0pt"><span lang="EN-US" style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;;color:#2C2C29">Second, add credentials to wmi-config.xml for a user that is remotely allowed to access your servers </span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&nbsp;</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&lt;?xml version=&quot;1.0&quot;?&gt;</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&lt;wmi-config retry=&quot;2&quot; timeout=&quot;1500&quot; </span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;username=&quot;elsayedm&quot; domain=&quot;JUSTFIRMA.DE&quot; password=&quot;***@just:&quot;&gt; </span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&nbsp;</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;definition&nbsp; username=&quot;elsayedm&quot; domain=&quot;JUSTFIRMA.DE&quot; password=&quot;***@just:&quot;&gt;</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;specific xmlns=&quot;&quot;&gt;192.168.251.100&lt;/specific&gt;</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&nbsp;&nbsp;&nbsp; &lt;/definition&gt; </span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&nbsp;</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal" style="margin-bottom:10.0pt"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&lt;/wmi-config&gt;</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal" style="margin-bottom:10.0pt"><span style="color:#333333">&nbsp;<o:p></o:p></span></p> <p class="MsoNormal" style="margin-bottom:10.0pt"><span lang="EN-US" style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;;color:#2C2C29">Third , add the following XML chunk to the capsd-configuration.xml file, inside the &lt;capsd-configuration&gt; section.</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&nbsp;</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&lt;!-- WMI Monitoring --&gt;</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&nbsp;&nbsp; &nbsp;&lt;protocol-plugin protocol=&quot;WMI-test-AntiVR&quot; class-name=&quot;org.opennms.netmgt.capsd.plugins.WmiPlugin&quot; scan=&quot;on&quot; user-defined=&quot;false&quot;&gt;</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;property key=&quot;timeout&quot; value=&quot;2000&quot; /&gt;</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;property key=&quot;retry&quot; value=&quot;2&quot; /&gt;</span><span style="color:#333333"><o:p></o:p></span></p> <p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;property key=&quot;matchType&quot; value=&quot;all&quot;/&gt;</span><span style="color:#333333"><o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US" style="font-size:9.0pt;font-family:&quot;Courier New&quot;;color:#333333">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;property key =&quot;wql&quot; value=&quot;Select State
Abraham Benites
2011-04-23 07:42:32 UTC
Permalink
Adam,

In your configuration, do you use an administrator or a non-administrator
account?

I'm trying to use a non-administrator account (for security reasons).
I grant to this user the DCOM privileges and into the Root/CLVIM2 namespace,
but it's still not working. Please advise me.

Best regards,

Abraham Benites.

Continue reading on narkive:
Loading...