SNMP agent
-
- Posts: 4
- Joined: Wed Mar 12, 2008 2:16 am
SNMP agent
I have a question: is there a program that list all snmp agent installed on my pc?
-
- Posts: 2832
- Joined: Tue May 16, 2006 4:41 am
- Contact:
In fact, that is difficult question because of variety of SNMP agents. By default, most of the SNMP agents use 161 port. So, you may use program like IP-Tools ( http://www.ks-soft.net/ip-tools.eng/index.htm ) to enumerate programs, that are listening to port 161. However, it is not the best solution because it is possible to adjust another port number for the agent.
On the other hand, most of SNMP agents have "SNMP" in their names. So, you may use "WMI Explorer" and query like the following to enumerate SNMP agents on particular machine:
Regards,
Max
On the other hand, most of SNMP agents have "SNMP" in their names. So, you may use "WMI Explorer" and query like the following to enumerate SNMP agents on particular machine:
Code: Select all
Select Caption from Win32_Process WHERE Caption LIKE '%snmp%'
Regards,
Max