Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Snmp Reader

Andrewei edited this pageFeb 26, 2018 ·11 revisions

Snmp Reader 可以从 Snmp 服务中收集数据

典型配置如下

"reader":{    "mode": "snmp",    "snmp_version": "2"    "snmp_retries": "3",    "snmp_time_out": "5s",    "snmp_interval": "30s",    "snmp_reader_name": "system",    "snmp_agents": "127.0.0.1:161",    "snmp_community": "public",    "snmp_auth_protocol": "md5",    "snmp_auth_password": "pass",    "snmp_max_repetitions": "50",    "snmp_priv_protocol": "des",    "snmp_priv_password": "mypass",    "snmp_sec_level": "noAuthNoPriv",    "snmp_context_name": "",    "snmp_tables": "[{\"table_name\":\"udpLocalAddress\",\"table_oid\":\"1.3.6.1.2.1.31.1.1\"}]",},

配置参数说明

  1. snmp_version:选填项, 默认 2, snmp 版本 1, 2 或 3.
  2. snmp_retries:选填项, 默认 3, 重试次数
  3. snmp_time_out:选填项, 默认 5s, 超时时间
  4. snmp_interval:选填项, 默认 30s, 采集频率
  5. snmp_reader_name:选填项, 默认 system, 对于简单变量(snmp_fields中的字段), 将把该字段放入收集的数据中, 所谓标识, 类似于 table_name
  6. snmp_agents:必填项, snmp 代理地址, 当有多个 agents 时, 地址使用 ',' 分割
  7. snmp_community:version 1, 2 必填项, 默认为 public, snmp 的 community
  8. snmp_max_repetitions:version 2, 3 必填项, 默认为 50, 变量检索次数的最大值, 用来指示getBulk 命令, 尝试snmp_max_repetitionsgetNext 操作
  9. snmp_context_name:version 3 必填项, snmp context 名称
  10. snmp_sec_level:version 3 必填项, 默认为 `noAuthNoPriv1, snmp 安全等级, 支持 "noAuthNoPriv", "authNoPriv", "authPriv" 三种
  11. snmp_sec_name:version 3 必填项, 认证名称
  12. snmp_auth_protocol:version 3 必填项, 认证协议, 支持 "", "md5", "sha" 三种
  13. snmp_auth_password:version 3 必填项, 认证密码
  14. snmp_priv_protocol:version 3 必填项, 加密协议, 支持 "", "des", "aes" 三种
  15. snmp_priv_password:version 3 必填项, 加密密码
  16. snmp_engine_id:version 3 必填项, engine id
  17. snmp_engine_boots:version 3 必填项, engine boots
  18. snmp_engine_time:version 3 必填项, engine time
  19. snmp_fields:选填项 程序将会使用Get 请求来获取字段数据, 需要填入一个符合json数组 格式的字符串, 数组中的每一项有以下字段
    • field_name:选填项 字段名称, 当该项为空时,会根据field_oid 字段解析出来的内容为空
    • field_oid:必填项 字段的对象标识符
    • field_oid_index_suffix:选填项 填写后会剥离field_oid 的子标示符便于将其与其他字段匹配
  20. snmp_tables:选填项 程序将会使用Walk 请求来获取字段数据, 需要填入一个符合json数组 格式的字符串, 数组中的每一项有以下字段
    • table_name:选填项 表格变量的名称,当该项为空时,会根据table_oid 字段解析出来的内容填充
    • table_oid:必填项 表格变量的对象标识符
    • table_fields:选填项 除了从table_oid 中解析出来的字段外,还可以根据此配置项将简单变量放入其中

注意:snmp_fieldssnmp_tables 这两项配置需要填入符合json数组 格式的字符串, 字符串内的双引号需要转义

一些常用的 snmp 节点

  • 系统参数(1.3.6.1.2.1.1)
OID描述备注请求方式
.1.3.6.1.2.1.1.1.0获取系统基本信息SysDescGET
.1.3.6.1.2.1.1.3.0监控时间sysUptimeGET
.1.3.6.1.2.1.1.4.0系统联系人sysContactGET
.1.3.6.1.2.1.1.5.0获取机器名SysNameGET
.1.3.6.1.2.1.1.6.0机器坐在位置SysLocationGET
.1.3.6.1.2.1.1.7.0机器提供的服务SysServiceGET
.1.3.6.1.2.1.25.4.2.1.2系统运行的进程列表hrSWRunNameWALK
.1.3.6.1.2.1.25.6.3.1.2系统安装的软件列表hrSWInstalledNameWALK
  • 网络接口(1.3.6.1.2.1.2)
OID描述备注请求方式
.1.3.6.1.2.1.2.1.0网络接口的数目IfNumberGET
.1.3.6.1.2.1.2.2.1.2网络接口信息描述IfDescrWALK
.1.3.6.1.2.1.2.2.1.3网络接口类型IfTypeWALK
.1.3.6.1.2.1.2.2.1.4接口发送和接收的最大IP数据报[BYTE]IfMTUWALK
.1.3.6.1.2.1.2.2.1.5接口当前带宽[bps]IfSpeedWALK
.1.3.6.1.2.1.2.2.1.6接口的物理地址IfPhysAddressWALK
.1.3.6.1.2.1.2.2.1.8接口当前操作状态[up/down]IfOperStatusWALK
.1.3.6.1.2.1.2.2.1.10接口收到的字节数IfInOctetWALK
.1.3.6.1.2.1.2.2.1.16接口发送的字节数IfOutOctetWALK
.1.3.6.1.2.1.2.2.1.11接口收到的数据包个数IfInUcastPktsWALK
.1.3.6.1.2.1.2.2.1.17接口发送的数据包个数IfOutUcastPktsWALK
  • CPU及负载
OID描述备注请求方式
.1.3.6.1.4.1.2021.11.9.0用户CPU百分比ssCpuUserGET
.1.3.6.1.4.1.2021.11.10.0系统CPU百分比ssCpuSystemGET
.1.3.6.1.4.1.2021.11.11.0空闲CPU百分比ssCpuIdleGET
.1.3.6.1.4.1.2021.11.50.0原始用户CPU使用时间ssCpuRawUserGET
.1.3.6.1.4.1.2021.11.51.0原始nice占用时间ssCpuRawNiceGET
.1.3.6.1.4.1.2021.11.52.0原始系统CPU使用时间ssCpuRawSystem.GET
.1.3.6.1.4.1.2021.11.53.0原始CPU空闲时间ssCpuRawIdleGET
.1.3.6.1.2.1.25.3.3.1.2CPU的当前负载,N个核就有N个负载hrProcessorLoadWALK
.1.3.6.1.4.1.2021.11.3.0swap 换入ssSwapInGET
.1.3.6.1.4.1.2021.11.4.0swap 换出SsSwapOutGET
.1.3.6.1.4.1.2021.11.5.0ssIOSentGET
.1.3.6.1.4.1.2021.11.6.0ssIOReceiveGET
.1.3.6.1.4.1.2021.11.7.0ssSysInterruptsGET
.1.3.6.1.4.1.2021.11.8.0ssSysContextGET
.1.3.6.1.4.1.2021.11.54.0ssCpuRawWaitGET
.1.3.6.1.4.1.2021.11.56.0ssCpuRawInterruptGET
.1.3.6.1.4.1.2021.11.57.0ssIORawSentGET
.1.3.6.1.4.1.2021.11.58.0ssIORawReceivedGET
.1.3.6.1.4.1.2021.11.59.0ssRawInterruptsGET
.1.3.6.1.4.1.2021.11.60.0ssRawContextsGET
.1.3.6.1.4.1.2021.11.61.0ssCpuRawSoftIRQGET
.1.3.6.1.4.1.2021.11.62.0ssRawSwapIn.GET
.1.3.6.1.4.1.2021.11.63.0ssRawSwapOutGET
.1.3.6.1.4.1.2021.10.1.3.1Load5GET
.1.3.6.1.4.1.2021.10.1.3.2Load10GET
.1.3.6.1.4.1.2021.10.1.3.3Load15GET
  • 内存及磁盘(1.3.6.1.2.1.25)
OID描述备注请求方式
.1.3.6.1.2.1.25.2.2.0获取内存大小hrMemorySizeGET
.1.3.6.1.2.1.25.2.3.1.1存储设备编号hrStorageIndexWALK
.1.3.6.1.2.1.25.2.3.1.2存储设备类型hrStorageType[OID]WALK
.1.3.6.1.2.1.25.2.3.1.3存储设备描述hrStorageDescrWALK
.1.3.6.1.2.1.25.2.3.1.4簇的大小hrStorageAllocationUnitsWALK
.1.3.6.1.2.1.25.2.3.1.5簇的的数目hrStorageSizeWALK
.1.3.6.1.2.1.25.2.3.1.6使用多少,跟总容量相除就是占用率hrStorageUsedWALK
.1.3.6.1.4.1.2021.4.3.0Total Swap Size(虚拟内存)memTotalSwapGET
.1.3.6.1.4.1.2021.4.4.0Available Swap SpacememAvailSwapGET
.1.3.6.1.4.1.2021.4.5.0Total RAM in machinememTotalRealGET
.1.3.6.1.4.1.2021.4.6.0Total RAM usedmemAvailRealGET
.1.3.6.1.4.1.2021.4.11.0Total RAM FreememTotalFreeGET
.1.3.6.1.4.1.2021.4.13.0Total RAM SharedmemSharedGET
.1.3.6.1.4.1.2021.4.14.0Total RAM BufferedmemBufferGET
.1.3.6.1.4.1.2021.4.15.0Total Cached MemorymemCachedGET
.1.3.6.1.4.1.2021.9.1.2Path where the disk is mounteddskPathWALK
.1.3.6.1.4.1.2021.9.1.3Path of the device for the partitiondskDeviceWALK
.1.3.6.1.4.1.2021.9.1.6Total size of the disk/partion (kBytes)dskTotalWALK
.1.3.6.1.4.1.2021.9.1.7Available space on the diskdskAvailWALK
.1.3.6.1.4.1.2021.9.1.8Used space on the diskdskUsedWALK
.1.3.6.1.4.1.2021.9.1.9Percentage of space used on diskdskPercentWALK
.1.3.6.1.4.1.2021.9.1.10Percentage of inodes used on diskdskPercentNodeWALK
  • System Group
名称OID
sysDescr1.3.6.1.2.1.1.1
sysObjectID1.3.6.1.2.1.1.2
sysUpTime1.3.6.1.2.1.1.3
sysContact1.3.6.1.2.1.1.4
sysName1.3.6.1.2.1.1.5
sysLocation1.3.6.1.2.1.1.6
sysServices1.3.6.1.2.1.1.7
  • Process Group
名称OID
hrSWRunTable1.3.6.1.2.1.25.4.2
hrSWRunEntry1.3.6.1.2.1.25.4.2.1
hrSWRunIndex1.3.6.1.2.1.25.4.2.1.1
hrSWRunName1.3.6.1.2.1.25.4.2.1.2
hrSWRunID1.3.6.1.2.1.25.4.2.1.3
hrSWRunPath1.3.6.1.2.1.25.4.2.1.4
hrSWRunParameters1.3.6.1.2.1.25.4.2.1.5
hrSWRunType1.3.6.1.2.1.25.4.2.1.6
hrSWRunStatus1.3.6.1.2.1.25.4.2.1.7
  • System Group
名称OID
systemStats1.3.6.1.4.1.2021.11
ssIndex1.3.6.1.4.1.2021.11.1
ssErrorName1.3.6.1.4.1.2021.11.2
ssSwapIn1.3.6.1.4.1.2021.11.3
ssSwapOut1.3.6.1.4.1.2021.11.4
ssIOSent1.3.6.1.4.1.2021.11.5
ssIOReceive1.3.6.1.4.1.2021.11.6
ssSysInterrupts1.3.6.1.4.1.2021.11.7
ssSysContext1.3.6.1.4.1.2021.11.8
ssCpuUser1.3.6.1.4.1.2021.11.9
ssCpuSystem1.3.6.1.4.1.2021.11.10
ssCpuIdle1.3.6.1.4.1.2021.11.11
ssCpuRawUser1.3.6.1.4.1.2021.11.50
ssCpuRawNice1.3.6.1.4.1.2021.11.51
ssCpuRawSystem1.3.6.1.4.1.2021.11.52
ssCpuRawIdle1.3.6.1.4.1.2021.11.53
ssCpuRawWait1.3.6.1.4.1.2021.11.54
ssCpuRawKernel1.3.6.1.4.1.2021.11.55
ssCpuRawInterrupt1.3.6.1.4.1.2021.11.56
ssIORawSent1.3.6.1.4.1.2021.11.57
ssIORawReceived1.3.6.1.4.1.2021.11.58
ssRawInterrupts1.3.6.1.4.1.2021.11.59
ssRawContexts1.3.6.1.4.1.2021.11.60
ssCpuRawSoftIRQ1.3.6.1.4.1.2021.11.61
ssRawSwapIn1.3.6.1.4.1.2021.11.62
ssRawSwapOut1.3.6.1.4.1.2021.11.63
  • Storage Group
名称OID
hrStorageTable1.3.6.1.2.1.25.2.3
hrStorageEntry1.3.6.1.2.1.25.2.3.1
hrStorageIndex1.3.6.1.2.1.25.2.3.1.1
hrStorageType1.3.6.1.2.1.25.2.3.1.2
hrStorageDescr1.3.6.1.2.1.25.2.3.1.3
hrStorageAllocationUnits1.3.6.1.2.1.25.2.3.1.4
hrStorageSize1.3.6.1.2.1.25.2.3.1.5
hrStorageUsed1.3.6.1.2.1.25.2.3.1.6
hrStorageAllocationFailures1.3.6.1.2.1.25.2.3.1.7
  • Disk Group
名称OID
dskTable1.3.6.1.4.1.2021.9
dskEntry1.3.6.1.4.1.2021.9.1
dskIndex1.3.6.1.4.1.2021.9.1.1
dskPath1.3.6.1.4.1.2021.9.1.2
dskDevice1.3.6.1.4.1.2021.9.1.3
dskMinimum1.3.6.1.4.1.2021.9.1.4
dskMinPercent1.3.6.1.4.1.2021.9.1.5
dskTotal1.3.6.1.4.1.2021.9.1.6
dskAvail1.3.6.1.4.1.2021.9.1.7
dskUsed1.3.6.1.4.1.2021.9.1.8
dskPercent1.3.6.1.4.1.2021.9.1.9
dskPercentNode1.3.6.1.4.1.2021.9.1.10
dskErrorFlag1.3.6.1.4.1.2021.9.1.100
dskErrorMsg1.3.6.1.4.1.2021.9.1.101
  • Diskio Group
名称OID
diskIOIndex1.3.6.1.4.1.2021.13.15.1.1.1
diskIODevice1.3.6.1.4.1.2021.13.15.1.1.2
diskIONRead1.3.6.1.4.1.2021.13.15.1.1.3
diskIONWritten1.3.6.1.4.1.2021.13.15.1.1.4
diskIOReads1.3.6.1.4.1.2021.13.15.1.1.5
diskIOWrites1.3.6.1.4.1.2021.13.15.1.1.6
diskIOLA11.3.6.1.4.1.2021.13.15.1.1.9
diskIOLA51.3.6.1.4.1.2021.13.15.1.1.10
diskIOLA151.3.6.1.4.1.2021.13.15.1.1.11
diskIONReadX1.3.6.1.4.1.2021.13.15.1.1.12
diskIONWrittenX1.3.6.1.4.1.2021.13.15.1.1.13
  • Mem Group
名称OID
memIndex1.3.6.1.4.1.2021.4.1
memErrorName1.3.6.1.4.1.2021.4.2
memTotalSwap1.3.6.1.4.1.2021.4.3
memAvailSwap1.3.6.1.4.1.2021.4.4
memTotalReal1.3.6.1.4.1.2021.4.5
memAvailReal1.3.6.1.4.1.2021.4.6
memTotalSwapTXT1.3.6.1.4.1.2021.4.7
memAvailSwapTXT1.3.6.1.4.1.2021.4.8
memTotalRealTXT1.3.6.1.4.1.2021.4.9
memAvailRealTXT1.3.6.1.4.1.2021.4.10
memTotalFree1.3.6.1.4.1.2021.4.11
memMinimumSwap1.3.6.1.4.1.2021.4.12
memShared1.3.6.1.4.1.2021.4.13
memBuffer1.3.6.1.4.1.2021.4.14
memCached1.3.6.1.4.1.2021.4.15
memUsedSwapTXT1.3.6.1.4.1.2021.4.16
memUsedRealTXT1.3.6.1.4.1.2021.4.17
memSwapError1.3.6.1.4.1.2021.4.100
memSwapErrorMsg1.3.6.1.4.1.2021.4.101
  • Interfaces Group
名称OID
ifNumber1.3.6.1.2.1.2.1
ifTable1.3.6.1.2.1.2.2
ifEntry1.3.6.1.2.1.2.2.1
ifIndex1.3.6.1.2.1.2.2.1.1
ifDescr1.3.6.1.2.1.2.2.1.2
ifType1.3.6.1.2.1.2.2.1.3
ifMtu1.3.6.1.2.1.2.2.1.4
ifSpeed1.3.6.1.2.1.2.2.1.5
ifPhysAddress1.3.6.1.2.1.2.2.1.6
ifAdminStatus1.3.6.1.2.1.2.2.1.7
ifOperStatus1.3.6.1.2.1.2.2.1.8
ifLastChange1.3.6.1.2.1.2.2.1.9
ifInOctets1.3.6.1.2.1.2.2.1.10
ifInUcastPkts1.3.6.1.2.1.2.2.1.11
ifInNUcastPkts1.3.6.1.2.1.2.2.1.12
ifInDiscards1.3.6.1.2.1.2.2.1.13
ifInErrors1.3.6.1.2.1.2.2.1.14
ifInUnknownProtos1.3.6.1.2.1.2.2.1.15
ifOutOctets1.3.6.1.2.1.2.2.1.16
ifOutUcastPkts1.3.6.1.2.1.2.2.1.17
ifOutNUcastPkts1.3.6.1.2.1.2.2.1.18
ifOutDiscards1.3.6.1.2.1.2.2.1.19
ifOutErrors1.3.6.1.2.1.2.2.1.20
ifOutQLen1.3.6.1.2.1.2.2.1.21
ifSpecific1.3.6.1.2.1.2.2.1.22
  • IP Group
名称OID
ipForwarding1.3.6.1.2.1.4.1
ipDefaultTTL1.3.6.1.2.1.4.2
ipInReceives1.3.6.1.2.1.4.3
ipInHdrErrors1.3.6.1.2.1.4.4
ipInAddrErrors1.3.6.1.2.1.4.5
ipForwDatagrams1.3.6.1.2.1.4.6
ipInUnknownProtos1.3.6.1.2.1.4.7
ipInDiscards1.3.6.1.2.1.4.8
ipInDelivers1.3.6.1.2.1.4.9
ipOutRequests1.3.6.1.2.1.4.10
ipOutDiscards1.3.6.1.2.1.4.11
ipOutNoRoutes1.3.6.1.2.1.4.12
ipReasmTimeout1.3.6.1.2.1.4.13
ipReasmReqds1.3.6.1.2.1.4.14
ipReasmOKs1.3.6.1.2.1.4.15
ipReasmFails1.3.6.1.2.1.4.16
ipFragsOKs1.3.6.1.2.1.4.17
ipFragsFails1.3.6.1.2.1.4.18
ipFragCreates1.3.6.1.2.1.4.19
ipAddrTable1.3.6.1.2.1.4.20
ipAddrEntry1.3.6.1.2.1.4.20.1
ipAdEntAddr1.3.6.1.2.1.4.20.1.1
ipAdEntIfIndex1.3.6.1.2.1.4.20.1.2
ipAdEntNetMask1.3.6.1.2.1.4.20.1.3
ipAdEntBcastAddr1.3.6.1.2.1.4.20.1.4
ipAdEntReasmMaxSize1.3.6.1.2.1.4.20.1.5
  • ICMP Group
名称OID
icmpInMsgs1.3.6.1.2.1.5.1
icmpInErrors1.3.6.1.2.1.5.2
icmpInDestUnreachs1.3.6.1.2.1.5.3
icmpInTimeExcds1.3.6.1.2.1.5.4
icmpInParmProbs1.3.6.1.2.1.5.5
icmpInSrcQuenchs1.3.6.1.2.1.5.6
icmpInRedirects1.3.6.1.2.1.5.7
icmpInEchos1.3.6.1.2.1.5.8
icmpInEchoReps1.3.6.1.2.1.5.9
icmpInTimestamps1.3.6.1.2.1.5.10
icmpInTimestampReps1.3.6.1.2.1.5.11
icmpInAddrMasks1.3.6.1.2.1.5.12
icmpInAddrMaskReps1.3.6.1.2.1.5.13
icmpOutMsgs1.3.6.1.2.1.5.14
icmpOutErrors1.3.6.1.2.1.5.15
icmpOutDestUnreachs1.3.6.1.2.1.5.16
icmpOutTimeExcds1.3.6.1.2.1.5.17
icmpOutParmProbs1.3.6.1.2.1.5.18
icmpOutSrcQuenchs1.3.6.1.2.1.5.19
icmpOutRedirects1.3.6.1.2.1.5.20
icmpOutEchos1.3.6.1.2.1.5.21
icmpOutEchoReps1.3.6.1.2.1.5.22
icmpOutTimestamps1.3.6.1.2.1.5.23
icmpOutTimestampReps1.3.6.1.2.1.5.24
icmpOutAddrMasks1.3.6.1.2.1.5.25
icmpOutAddrMaskReps1.3.6.1.2.1.5.26
  • TCP Group
名称OID
tcpRtoAlgorithm1.3.6.1.2.1.6.1
tcpRtoMin1.3.6.1.2.1.6.2
tcpRtoMax1.3.6.1.2.1.6.3
tcpMaxConn1.3.6.1.2.1.6.4
tcpActiveOpens1.3.6.1.2.1.6.5
tcpPassiveOpens1.3.6.1.2.1.6.6
tcpAttemptFails1.3.6.1.2.1.6.7
tcpEstabResets1.3.6.1.2.1.6.8
tcpCurrEstab1.3.6.1.2.1.6.9
tcpInSegs1.3.6.1.2.1.6.10
tcpOutSegs1.3.6.1.2.1.6.11
tcpRetransSegs1.3.6.1.2.1.6.12
tcpConnTable1.3.6.1.2.1.6.13
tcpConnEntry1.3.6.1.2.1.6.13.1
tcpConnState1.3.6.1.2.1.6.13.1.1
tcpConnLocalAddress1.3.6.1.2.1.6.13.1.2
tcpConnLocalPort1.3.6.1.2.1.6.13.1.3
tcpConnRemAddress1.3.6.1.2.1.6.13.1.4
tcpConnRemPort1.3.6.1.2.1.6.13.1.5
tcpInErrs1.3.6.1.2.1.6.14
tcpOutRsts1.3.6.1.2.1.6.15
  • UDP Group
名称OID
udpInDatagrams1.3.6.1.2.1.7.1
udpNoPorts1.3.6.1.2.1.7.2
udpInErrors1.3.6.1.2.1.7.3
udpOutDatagrams1.3.6.1.2.1.7.4
udpTable1.3.6.1.2.1.7.5
udpEntry1.3.6.1.2.1.7.5.1
udpLocalAddress1.3.6.1.2.1.7.5.1.1
udpLocalPort1.3.6.1.2.1.7.5.1.2
  • SNMP Group
名称OID
snmpInPkts1.3.6.1.2.1.11.1
snmpOutPkts1.3.6.1.2.1.11.2
snmpInBadVersions1.3.6.1.2.1.11.3
snmpInBadCommunityNames1.3.6.1.2.1.11.4
snmpInBadCommunityUses1.3.6.1.2.1.11.5
snmpInASNParseErrs1.3.6.1.2.1.11.6
snmpInTooBigs1.3.6.1.2.1.11.8
snmpInNoSuchNames1.3.6.1.2.1.11.9
snmpInBadValues1.3.6.1.2.1.11.10
snmpInReadOnlys1.3.6.1.2.1.11.11
snmpInGenErrs1.3.6.1.2.1.11.12
snmpInTotalReqVars1.3.6.1.2.1.11.13
snmpInTotalSetVars1.3.6.1.2.1.11.14
snmpInGetRequests1.3.6.1.2.1.11.15
snmpInGetNexts1.3.6.1.2.1.11.16
snmpInSetRequests1.3.6.1.2.1.11.17
snmpInGetResponses1.3.6.1.2.1.11.18
snmpInTraps1.3.6.1.2.1.11.19
snmpOutTooBigs1.3.6.1.2.1.11.20
snmpOutNoSuchNames1.3.6.1.2.1.11.21
snmpOutBadValues1.3.6.1.2.1.11.22
snmpOutGenErrs1.3.6.1.2.1.11.24
snmpOutGetRequests1.3.6.1.2.1.11.25
snmpOutGetNexts1.3.6.1.2.1.11.26
snmpOutSetRequests1.3.6.1.2.1.11.27
snmpOutGetResponses1.3.6.1.2.1.11.28
snmpOutTraps1.3.6.1.2.1.11.29
snmpEnableAuthenTraps1.3.6.1.2.1.11.30

其他 OID 的查询请参考:

http://www.oid-info.com/index.htm

http://cric.grenoble.cnrs.fr/Administrateurs/Outils/MIBS/?oid=1

http://www.alvestrand.no/objectid/top.html

Clone this wiki locally

[8]ページ先頭

©2009-2025 Movatter.jp