⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rfc1243.mib

📁 wm PNE 3.3 source code, running at more than vxworks6.x version.
💻 MIB
📖 第 1 页 / 共 3 页
字号:
          RFC1243-MIB DEFINITIONS ::= BEGIN          IMPORTS                  Counter, IpAddress                          FROM RFC1155-SMI                  DisplayString, mib-2                      FROM RFC1213-MIB                  OBJECT-TYPE                          FROM RFC-1212;          --  This MIB module uses the extended OBJECT-TYPE macro as          --  defined in [9]          --  AppleTalk MIB                  appletalk    OBJECT IDENTIFIER ::= { mib-2 13 }                  DdpAddress ::=  -- 2 octets of net number                                  -- 1 octet of node number                          OCTET STRING (SIZE (3))                  -- This data type is used for encoding a DDP protocol                  -- address.  The format of this address is a serial                  -- encoding of the two octets of network number in                  -- network byte order, followed by the 1 octet node                  -- number.                  llap     OBJECT IDENTIFIER ::= { appletalk 1 }                  aarp     OBJECT IDENTIFIER ::= { appletalk 2 }                  atport   OBJECT IDENTIFIER ::= { appletalk 3 }                  ddp      OBJECT IDENTIFIER ::= { appletalk 4 }                  rtmp     OBJECT IDENTIFIER ::= { appletalk 5 }                  kip      OBJECT IDENTIFIER ::= { appletalk 6 }                  zip      OBJECT IDENTIFIER ::= { appletalk 7 }                  nbp      OBJECT IDENTIFIER ::= { appletalk 8 }                  atecho   OBJECT IDENTIFIER ::= { appletalk 9 }          -- The LLAP Group          llapTable OBJECT-TYPE                  SYNTAX SEQUENCE OF LlapEntry                  ACCESS not-accessible                  STATUS mandatory                  DESCRIPTION                      "The list of LLAP entries."                  ::= { llap 1 }          llapEntry OBJECT-TYPE                  SYNTAX LlapEntry                  ACCESS not-accessible                  STATUS mandatory                  DESCRIPTION                      "An LLAP entry containing objects for the                      LocalTalk Link Access Protocol for a particular                      LocalTalk interface."                  INDEX { llapIfIndex }                  ::= { llapTable 1 }          LlapEntry ::= SEQUENCE {                  llapIfIndex             INTEGER,                  llapInPkts              Counter,                  llapOutPkts             Counter,                  llapInNoHandlers        Counter,                  llapInLengthErrors      Counter,	          llapInErrors 		  Counter,                  llapCollisions          Counter,                  llapDefers              Counter,                  llapNoDataErrors        Counter,                  llapRandomCTSErrors     Counter,                  llapFCSErrors           Counter          }          llapIfIndex OBJECT-TYPE                  SYNTAX INTEGER                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The LLAP interface to which this entry pertains.                      The interface identified by a particular value of                      this index is the same interface as identified                      by the same value of ifIndex."                  ::= { llapEntry 1 }          llapInPkts OBJECT-TYPE                  SYNTAX Counter                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The total number of good packets received on this                      LocalTalk interface."                  ::= { llapEntry 2 }          llapOutPkts OBJECT-TYPE                  SYNTAX Counter                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The total number of packets transmitted on this                      LocalTalk interface."                  ::= { llapEntry 3 }          llapInNoHandlers OBJECT-TYPE                  SYNTAX Counter                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The total number of good packets received on this                      LocalTalk interface for which there was no                      protocol handler."                  ::= { llapEntry 4 }          llapInLengthErrors OBJECT-TYPE                  SYNTAX Counter                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The total number of packets received on this                      LocalTalk interface whose actual length did not                      match the length in the header."                  ::= { llapEntry 5 }          llapInErrors OBJECT-TYPE                  SYNTAX Counter                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The total number of packets containing errors                      received on this LocalTalk interface."                  ::= { llapEntry 6 }          llapCollisions OBJECT-TYPE                  SYNTAX Counter                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The total number of collisions assumed on this                      LocalTalk interface due to the lack of a lapCTS                      reply."                  ::= { llapEntry 7 }          llapDefers OBJECT-TYPE                  SYNTAX Counter                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The total number of times this LocalTalk                      interface deferred to other packets."                  ::= { llapEntry 8 }          llapNoDataErrors OBJECT-TYPE                  SYNTAX Counter                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The total number of times this LocalTalk                      interface received a lapRTS packet and expected                      a data packet, but did not receive any data                      packet."                  ::= { llapEntry 9 }          llapRandomCTSErrors OBJECT-TYPE                  SYNTAX Counter                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The total number of times this LocalTalk                      interface received a lapCTS packet that was                      not solicited by a lapRTS packet."                  ::= { llapEntry 10 }          llapFCSErrors OBJECT-TYPE                  SYNTAX Counter                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The total number of times this LocalTalk                      interface received a packet with an FCS                      (Frame Check Sequence) error."                  ::= { llapEntry 11 }          -- The AARP Group          aarpTable OBJECT-TYPE                  SYNTAX SEQUENCE OF AarpEntry                  ACCESS not-accessible                  STATUS mandatory                  DESCRIPTION                      "The AppleTalk Address Translation Table                      contains an equivalence of AppleTalk Network                      Addresses to the link layer physical address."                  ::= { aarp 1 }          aarpEntry OBJECT-TYPE                  SYNTAX AarpEntry                  ACCESS not-accessible                  STATUS mandatory                  DESCRIPTION                      "Each entry contains one AppleTalk Network                      Address to physical address equivalence."                  INDEX { aarpIfIndex, aarpNetAddress }                  ::= { aarpTable 1 }          AarpEntry ::= SEQUENCE {                  aarpIfIndex     INTEGER,                  aarpPhysAddress OCTET STRING,                  aarpNetAddress  DdpAddress          }          aarpIfIndex OBJECT-TYPE                  SYNTAX INTEGER                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The interface on which this entry's equivalence                      is effective.  The interface identified by a                      particular value of this index is the same                      interface as identified by the same value of                      ifIndex."                  ::= { aarpEntry 1 }          aarpPhysAddress OBJECT-TYPE                  SYNTAX OCTET STRING                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The media-dependent physical address"                  ::= { aarpEntry 2 }          aarpNetAddress OBJECT-TYPE                  SYNTAX DdpAddress                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "The AppleTalk Network Address corresponding to                      the media-dependent physical address."                  ::= { aarpEntry 3 }          -- The ATPort Group          atportTable OBJECT-TYPE                  SYNTAX SEQUENCE OF AtportEntry                  ACCESS not-accessible                  STATUS mandatory                  DESCRIPTION                      "A list of AppleTalk ports for this entity."                  ::= { atport 1 }          atportEntry OBJECT-TYPE                  SYNTAX AtportEntry                  ACCESS not-accessible                  STATUS mandatory                  DESCRIPTION                      "The description of one of the AppleTalk                      ports on this entity."                  INDEX { atportIndex }                  ::= { atportTable 1 }          AtportEntry ::= SEQUENCE {                  atportIndex               INTEGER,                  atportDescr               DisplayString,                  atportType                INTEGER,                  atportNetStart            OCTET STRING (SIZE(2)),                  atportNetEnd              OCTET STRING (SIZE(2)),                  atportNetAddress          DdpAddress,                  atportStatus              INTEGER,                  atportNetConfig           INTEGER,                  atportZoneConfig          INTEGER,                  atportZone                OCTET STRING,                  atportIfIndex             INTEGER          }          atportIndex OBJECT-TYPE                  SYNTAX INTEGER                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "A unique value for each AppleTalk port.                      Its value is between 1 and the total number of                      AppleTalk ports.  The value for each port must                      remain constant at least from the                      re-initialization of the entity's network                      management system to the next                      re-initialization."                  ::= { atportEntry 1 }          atportDescr OBJECT-TYPE                  SYNTAX DisplayString                  ACCESS read-only                  STATUS mandatory                  DESCRIPTION                      "A text string containing information about the                      port.  This string is intended for presentation                      to a human; it must not contain anything but                      printable ASCII characters."                  ::= { atportEntry 2 }          atportType OBJECT-TYPE                  SYNTAX INTEGER {                       other(1),       -- none of the following                       localtalk(2),                       ethertalk1(3),                       ethertalk2(4),                       tokentalk(5),                       iptalk(6),                       serial-ppp(7),                       serial-nonstandard(8),                       virtual(9)                  }                  ACCESS read-write                  STATUS mandatory                  DESCRIPTION                      "The type of port, distinguished by the protocol                      immediately below DDP in the protocol stack."                  ::= { atportEntry 3 }          atportNetStart OBJECT-TYPE                  SYNTAX OCTET STRING (SIZE(2))                  ACCESS read-write                  STATUS mandatory                  DESCRIPTION                      "The first AppleTalk network address in the range                      configured for this port.  This is a two octet                      DDP network address in network byte order."                  ::= { atportEntry 4 }          atportNetEnd OBJECT-TYPE                  SYNTAX OCTET STRING (SIZE(2))                  ACCESS read-write                  STATUS mandatory                  DESCRIPTION                      "The last AppleTalk network address in the range                      configured for this port.  This is a two octet                      DDP network address in network byte order.  If the                      network to which this AppleTalk port is                      connected is a Phase 1 network or a non-extended                      network, the value for atportNetEnd shall be two                      octets of zero."                  ::= { atportEntry 5 }          atportNetAddress OBJECT-TYPE                  SYNTAX DdpAddress                  ACCESS read-write                  STATUS mandatory                  DESCRIPTION                      "The AppleTalk network address configured for this                      port."                  ::= { atportEntry 6 }          atportStatus OBJECT-TYPE                  SYNTAX INTEGER {                       operational(1),                       unconfigured(2),

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -