0

我正在尝试通过 VBScript 使用访问 SNMP 来访问一些 OID 值,因为它是一个气候监视器,具有温度、湿度和气流的数据。我知道我需要使用哪个 OID,但找不到任何有效连接并提取此信息的脚本或代码段。

有没有人有符合要求的东西?

我尝试使用此代码,但不断收到错误消息:ActiveX component can't create object: 'Scripting.SNMPManager'

Set oSNMPManager = CreateObject("Scripting.SNMPManager")

oSNMPManager.Agent = "unitip"
oSNMPManager.Community = "public"


'Add Variable objects to Variables collection
Call oSNMPManager.Variables.Add( "1.3.6.1.4.1.17373.2.2.1.6.1" )

Result = oSNMPManager.Get( ErrorIndex )
WScript.Echo "Get result: " & Result
If Result = 10 Then
WScript.Echo "ErrorIndex: " & ErrorIndex
End If

'Display properties of all Variable objects
WScript.Echo "OID, Type, Value"
For Each SNMPVariable in oSNMPManager.Variables
WScript.Echo SNMPVariable.OID & ", " & SNMPVariable.Type & ", " & SNMPVariable.Value
next

'Remove all Variable objects from the Variables collection
oSNMPManager.Variables.RemoveAll
4

1 回答 1

-1
Set objSnmpManager  = CreateObject( "AxNetwork.SnmpManager" )
Set objConstants    = CreateObject( "AxNetwork.NwConstants" )

' 试用期结束后,需要许可证密钥才能解锁此组件。' 使用有效的许可证密钥作为其第一个参数调用 'Activate'。第二个参数决定是否将许可证密钥永久保存到注册表(True,因此只需要调用一次Activate),还是不永久存储密钥(False,因此每次创建组件时都需要调用Activate) )。有关详细信息,请参见手册中的“产品激活”一章。' ' objSnmpManager.Activate "XXXXX-XXXXX-XXXXX", False

于 2015-07-15T10:10:41.500 回答