-- MIB created 9/13/95 11:13:48, by -- SMIC (the next generation) version 1.6.29, November 22, 1994. BANYAN-BFS-MIB DEFINITIONS ::= BEGIN -- From file: "bfs.mib" -- Compile options "V M" IMPORTS enterprises FROM RFC1155-SMI TimeTicks FROM RFC1155-SMI OBJECT-TYPE FROM RFC-1212 TRAP-TYPE FROM RFC-1215 DisplayString, TimeStamp FROM RFC1213-MIB ; banyan OBJECT IDENTIFIER ::= { enterprises 130 } vinesmibs OBJECT IDENTIFIER ::= { banyan 1 } mib3 OBJECT IDENTIFIER ::= { vinesmibs 3 } services OBJECT IDENTIFIER ::= { mib3 1 } banyanmodules OBJECT IDENTIFIER ::= { mib3 2 } bfsMIB OBJECT IDENTIFIER ::= { banyanmodules 5 } -- MODULE-IDENTITY -- LastUpdated -- 9504010000Z -- OrgName -- Banyan Systems, Incorporated -- ContactInfo -- Banyan Systems, Incorporated -- -- Postal: Banyan Systems, Inc. -- 115 Flanders Road -- WESTBORO, MA 01581 -- USA -- -- Tel: +1 508 898 1000 -- Fax: -- -- E-mail: mibsupport@banyan.com -- Descr -- The MIB module for Banyan's BFS Service. bfs OBJECT IDENTIFIER ::= { services 5 } svcsummary OBJECT IDENTIFIER ::= { bfs 1 } svcusers OBJECT IDENTIFIER ::= { bfs 2 } evmask OBJECT IDENTIFIER ::= { bfs 3 } svcrpcstats OBJECT IDENTIFIER ::= { bfs 4 } svcstats OBJECT IDENTIFIER ::= { bfs 5 } trapdata OBJECT IDENTIFIER ::= { bfs 6 } trapdefs OBJECT IDENTIFIER ::= { bfs 7 } svcName OBJECT-TYPE SYNTAX DisplayString -- Rsyntax OCTET STRING(SIZE(0..255)) ACCESS read-only STATUS mandatory DESCRIPTION "The Textual name of the service/component. This will usually be the StreetTalk name of the component." ::= { svcsummary 1 } svcCategory OBJECT-TYPE SYNTAX INTEGER(0..2000) ACCESS read-only STATUS mandatory DESCRIPTION "The ENS category number of the service." ::= { svcsummary 2 } svcLocation OBJECT-TYPE SYNTAX DisplayString -- Rsyntax OCTET STRING(SIZE(0..255)) ACCESS read-only STATUS mandatory DESCRIPTION "The location of the service." ::= { svcsummary 3 } svcActiveSes OBJECT-TYPE SYNTAX INTEGER(0..10000) ACCESS read-only STATUS mandatory DESCRIPTION "The number of active sessions of the service." ::= { svcsummary 4 } svcTotalSes OBJECT-TYPE SYNTAX INTEGER(0..100000) ACCESS read-only STATUS mandatory DESCRIPTION "The number of total sessions of the service." ::= { svcsummary 5 } svcUpTime OBJECT-TYPE SYNTAX TimeTicks ACCESS read-only STATUS mandatory DESCRIPTION "The amount of time the service has been running (in hundredths of a second)." ::= { svcsummary 6 } svcStatFlags OBJECT-TYPE SYNTAX INTEGER { isclosed(1), isopen(2) } ACCESS read-only STATUS mandatory DESCRIPTION "The status flags of the service. This MIB value should always be isopen, as isclosed would indicate that the service is not running. Stopped services do not respond to MIB inquiries." ::= { svcsummary 7 } svcRevision OBJECT-TYPE SYNTAX DisplayString -- Rsyntax OCTET STRING(SIZE(0..255)) ACCESS read-only STATUS mandatory DESCRIPTION "The revision number of this particular component. This can be used by management applications to determine which MIB variables are appropriate for this particular component instance." ::= { svcsummary 8 } svcMibRevision OBJECT-TYPE SYNTAX INTEGER(0..100) ACCESS read-only STATUS mandatory DESCRIPTION "The revision number of this MIB. This can be used by management applications to determine which MIB variables are appropriate for this particular component instance." ::= { svcsummary 9 } svcUserTable OBJECT-TYPE SYNTAX SEQUENCE OF SvcUserEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "A list of the service users." ::= { svcusers 1 } svcUserEntry OBJECT-TYPE SYNTAX SvcUserEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "An entry in the list of service users." INDEX { svcUserIndex } ::= { svcUserTable 1 } SvcUserEntry ::= SEQUENCE { svcUserIndex INTEGER, svcUserName DisplayString } svcUserIndex OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "A unique value used to index into the list of users in the service users table." ::= { svcUserEntry 1 } svcUserName OBJECT-TYPE SYNTAX DisplayString -- Rsyntax OCTET STRING(SIZE(0..255)) ACCESS read-only STATUS mandatory DESCRIPTION "The StreetTalk name of a user of this service" ::= { svcUserEntry 2 } evmaskSend OBJECT-TYPE SYNTAX INTEGER { off(1), minimal(2), default(3), all(4) } ACCESS read-write STATUS mandatory DESCRIPTION "Indicates whether alarm/warning/audit events are to be sent to the Event Service. The allowed values are : off(1) - no events are sent to EVS. minimal(2) - only alarm type events sent to EVS. default(3) - alarm and warning type events sent to EVS. all(4) - alarm, warning and audit type events sent to EVS." ::= { evmask 1 } evmaskWrite OBJECT-TYPE SYNTAX INTEGER { off(1), low(2), medium(3), high(4), default(5), debug(6) } ACCESS read-write STATUS mandatory DESCRIPTION "Indicates which event types are written to the local log file. The following events are sents at each level: off(1): none low(2): alarm medium(3): alarm, warning high(4): alarm, warning, audit default(5): alarm, warning, audit, info debug(6): all" ::= { evmask 2 } evmaskLocalLog OBJECT-TYPE SYNTAX DisplayString -- Rsyntax OCTET STRING(SIZE(0..255)) ACCESS read-only STATUS mandatory DESCRIPTION "This is the base name of the file which events will be written to depending on the evmaskWrite value." ::= { evmask 3 } svcRpcKeepStats OBJECT-TYPE SYNTAX INTEGER { off(1), on(2) } ACCESS read-write STATUS mandatory DESCRIPTION "Indicates whether RPC statistics should be collected. The allowed values are : off(1) - no statistics collected. on(2) - statistics collected." ::= { svcrpcstats 1 } svcRpcThreshold OBJECT-TYPE SYNTAX TimeTicks ACCESS read-write STATUS mandatory DESCRIPTION "The threshold in TimeTicks for tracking RPC call durations." ::= { svcrpcstats 2 } svcRpcInfoTable OBJECT-TYPE SYNTAX SEQUENCE OF SvcRpcInfoEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "Statistics for remote procedure calls supported by the service." ::= { svcrpcstats 3 } svcRpcInfoEntry OBJECT-TYPE SYNTAX SvcRpcInfoEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "An entry for each remote procedure call supported by the service." INDEX { svcRpcIndex } ::= { svcRpcInfoTable 1 } SvcRpcInfoEntry ::= SEQUENCE { svcRpcIndex INTEGER, svcRpcName DisplayString, svcRpcNumCalls INTEGER, svcRpcNumOverThresh INTEGER, svcRpcTotalTime TimeTicks, svcRpcHighWater TimeTicks } svcRpcIndex OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "A unique value used to index into the list of remote procedure calls supported by the service." ::= { svcRpcInfoEntry 1 } svcRpcName OBJECT-TYPE SYNTAX DisplayString -- Rsyntax OCTET STRING(SIZE(0..255)) ACCESS read-only STATUS mandatory DESCRIPTION "The name of the remote procedure call." ::= { svcRpcInfoEntry 2 } svcRpcNumCalls OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "The number of calls to this procedure" ::= { svcRpcInfoEntry 3 } svcRpcNumOverThresh OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "The number of calls that took longer than the threshold." ::= { svcRpcInfoEntry 4 } svcRpcTotalTime OBJECT-TYPE SYNTAX TimeTicks ACCESS read-only STATUS mandatory DESCRIPTION "The cumulative time for this procedure in TimeTicks." ::= { svcRpcInfoEntry 5 } svcRpcHighWater OBJECT-TYPE SYNTAX TimeTicks ACCESS read-only STATUS mandatory DESCRIPTION "The longest duration for this procedure in TimeTicks." ::= { svcRpcInfoEntry 6 } svcDesc OBJECT-TYPE SYNTAX DisplayString -- Rsyntax OCTET STRING(SIZE(0..255)) ACCESS read-only STATUS mandatory DESCRIPTION "The Description associated with this service." ::= { svcstats 1 } tpSvrName OBJECT-TYPE SYNTAX DisplayString -- Rsyntax OCTET STRING(SIZE(0..255)) ACCESS not-accessible STATUS mandatory DESCRIPTION "The StreetTalk name of the server" ::= { trapdata 1 } tpAlertTime OBJECT-TYPE SYNTAX TimeStamp -- Rsyntax TimeTicks ACCESS not-accessible STATUS mandatory DESCRIPTION "The system time when an alert was issued to EVS." ::= { trapdata 2 } tpSvcName OBJECT-TYPE SYNTAX DisplayString -- Rsyntax OCTET STRING(SIZE(0..255)) ACCESS not-accessible STATUS mandatory DESCRIPTION "The StreetTalk Service name which issued the trap." ::= { trapdata 3 } tpEventType OBJECT-TYPE SYNTAX OCTET STRING(SIZE(0..63)) ACCESS not-accessible STATUS mandatory DESCRIPTION "The type of event." ::= { trapdata 4 } tpAudInitiator OBJECT-TYPE SYNTAX DisplayString -- Rsyntax OCTET STRING(SIZE(0..255)) ACCESS not-accessible STATUS mandatory DESCRIPTION "This is the name of the object that initiated the generation of an audit event. In most cases it will be a StreetTalk name." ::= { trapdata 5 } tpAudObject OBJECT-TYPE SYNTAX DisplayString -- Rsyntax OCTET STRING(SIZE(0..255)) ACCESS not-accessible STATUS mandatory DESCRIPTION "This is the name of the object that was acted upon and caused the generation of an audit event. In most cases it will be a StreetTalk name." ::= { trapdata 6 } tpAudResult OBJECT-TYPE SYNTAX INTEGER { success(1), failure(2) } ACCESS not-accessible STATUS mandatory DESCRIPTION "This was the result of the action that caused the generation of an audit event." ::= { trapdata 7 } tpString1 OBJECT-TYPE SYNTAX DisplayString -- Rsyntax OCTET STRING(SIZE(0..255)) ACCESS not-accessible STATUS mandatory DESCRIPTION "generic string to use in V_Syslog calls." ::= { trapdata 8 } trap1 TRAP-TYPE --?? Non-reverse mappable trap ENTERPRISE bfs VARIABLES { tpSvrName, tpSvcName, tpAlertTime, tpEventType, tpString1 } -- Status -- mandatory DESCRIPTION "The service could not start a login session with VINES." ::= 1 trap2 TRAP-TYPE --?? Non-reverse mappable trap ENTERPRISE bfs VARIABLES { tpSvrName, tpSvcName, tpAlertTime, tpEventType, tpString1 } -- Status -- mandatory DESCRIPTION "The service failed to find and establish a session with a StreetTalk service." ::= 2 trap3 TRAP-TYPE --?? Non-reverse mappable trap ENTERPRISE bfs VARIABLES { tpSvrName, tpSvcName, tpAlertTime, tpEventType, tpString1 } -- Status -- mandatory DESCRIPTION "The service could not receive associated record block zero information." ::= 3 trap4 TRAP-TYPE --?? Non-reverse mappable trap ENTERPRISE bfs VARIABLES { tpSvrName, tpSvcName, tpAlertTime, tpEventType, tpString1 } -- Status -- mandatory DESCRIPTION "The server name we received during startup does not match the name we received in our associated record block zero." ::= 4 trap5 TRAP-TYPE --?? Non-reverse mappable trap ENTERPRISE bfs VARIABLES { tpSvrName, tpSvcName, tpAlertTime, tpEventType, tpString1 } -- Status -- mandatory DESCRIPTION "BFS can not use the name we received during startup. It is not a valid name." ::= 5 trap6 TRAP-TYPE --?? Non-reverse mappable trap ENTERPRISE bfs VARIABLES { tpSvrName, tpSvcName, tpAlertTime, tpEventType } -- Status -- mandatory DESCRIPTION "This message should only occur on a VINES Files service. We failed to locate any supported client operating system path." ::= 6 trap7 TRAP-TYPE --?? Non-reverse mappable trap ENTERPRISE bfs VARIABLES { tpSvrName, tpSvcName, tpAlertTime, tpEventType, tpString1 } -- Status -- mandatory DESCRIPTION "The service failed to register its rpc port with StreetTalk." ::= 7 trap8 TRAP-TYPE --?? Non-reverse mappable trap ENTERPRISE bfs VARIABLES { tpSvrName, tpSvcName, tpAlertTime, tpEventType, tpString1 } -- Status -- mandatory DESCRIPTION "The service could not get the daemon task that receives smb requests started." ::= 8 END