|
|
|
|
|
SNMPOIDDescription (Function) In french: SNMPOIDDescription Returns the description of an OID. Note This function can only be used after loading the MIB file (function SNMPLoadMIB), which describes the correspondence between OIDs in text and numerical format. MIBChargé is boolean
CheminMIBs is string = CompleteDir(fExeDir()) + "mibs\"
Mib is string
Mib = "RFC1382-MIB.mib"
MaDescription is string
MIBChargé = SNMPLoadMIB(CheminMIBs + Mib)
IF MIBChargé = False THEN
Error("Erreur MIB : " + ErrorInfo())
ELSE
MaDescription = SNMPOIDDescription("
dod.internet.mgmt.mib-2.
transmission.x25.x25AdmnInterruptTimer
")
END
Syntax
<Result> = SNMPOIDDescription(<OID to process>)
<Result>: Character string Description of the OID. This description is stored in the MIB file. <OID to process>: Character string String containing the OID in text or numeric format.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|