zoukankan      html  css  js  c++  java
  • SNMP远程监控进程信息的OID

    最近有个项目需要用snmp远程监控进程信息。于是我查了一下资料。

    一、资料

    .1.3.6.1.2.1.25.4.2.1.1
    .iso.org.dod.internet.mgmt.mib-2.host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex
    A unique value for each piece of software running on the host. Wherever possible, this should be the system's native, unique identification number.
    进程ID。Windows里进程id为0的,snmp里为1。

    .1.3.6.1.2.1.25.4.2.1.2
    .iso.org.dod.internet.mgmt.mib-2.host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunName
    A textual description of this running piece of software, including the manufacturer, revision, and the name by which it is commonly known. If this software was installed locally, this should be the same string as used in the corresponding hrSWInstalledName.
    进程名。

    .1.3.6.1.2.1.25.4.2.1.3
    .iso.org.dod.internet.mgmt.mib-2.host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunID
    The product ID of this running piece of software.
    产品ID?

    .1.3.6.1.2.1.25.4.2.1.4
    .iso.org.dod.internet.mgmt.mib-2.host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunPath
    A description of the location on long-term storage (e.g. a disk drive) from which this software was loaded.
    进程所在路径。个别进程为空,一般以路径分隔字符结尾。

    .1.3.6.1.2.1.25.4.2.1.5
    .iso.org.dod.internet.mgmt.mib-2.host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunParameters
    A description of the parameters supplied to this software when it was initially loaded.
    命令行参数。奇怪的是,chrome的参数貌似没取到。

    .1.3.6.1.2.1.25.4.2.1.6
    .iso.org.dod.internet.mgmt.mib-2.host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunType
    The type of this software.
    进程类型。
    INTEGER
    Value Label/Meaning
    1 unknown
    2 operatingSystem
    3 deviceDriver
    4 application

    .1.3.6.1.2.1.25.4.2.1.7
    .iso.org.dod.internet.mgmt.mib-2.host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunStatus
    The status of this running piece of software. Setting this value to invalid(4) shall cause this software to stop running and to be unloaded.
    进程状态。
    INTEGER
    Value Label/Meaning
    1 running
    2 runnable
    3 notRunnable
    4 invalid


    参考资料——
    http://www.net-snmp.org/docs/mibs/host.html
    HOST-RESOURCES-MIB


    二、推荐工具

    mib浏览器——
    http://www.crsky.com/soft/13130.html
    KS-Soft MIB Browser v1.11


    简单好用的SNMP测试工具——
    http://www.onlinedown.net/soft/410166.htm
    FreeSnmp 2.0.3

  • 相关阅读:
    高并发网络编程之epoll详解
    位操作实现加减乘除四则运算
    堆和栈的区别
    IT思想类智力题
    C/C++基础总结
    数据库总结
    面试网络总结
    Windows内存管理和linux内存管理
    面试操作系统总结
    数据结构与算法
  • 原文地址:https://www.cnblogs.com/zyl910/p/snmp_oid_process.html
Copyright © 2011-2022 走看看