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

📄 rfc1471.txt

📁 著名的RFC文档,其中有一些文档是已经翻译成中文的的.
💻 TXT
📖 第 1 页 / 共 4 页
字号:
          pppLinkStatusReceiveFcsSize   OBJECT-TYPE               SYNTAX    INTEGER (0..128)               ACCESS    read-only               STATUS    mandatory               DESCRIPTION                         "The size of the Frame Check Sequence (FCS) in                         bits that the remote node will generate when                         sending packets to the local node. The value of                         this object is meaningful only when the link                         has reached the open state (ifOperStatus is                         up)."               ::= { pppLinkStatusEntry 15 }          pppLinkConfigTable   OBJECT-TYPE               SYNTAX    SEQUENCE OF PppLinkConfigEntry               ACCESS    not-accessible               STATUS    mandatory               DESCRIPTION                         "A table containing the LCP configuration                         parameters for this PPP Link. These variables                         represent the initial configuration of the PPPKastenholz                                                     [Page 13]RFC 1471                      PPP/LCP MIB                      June 1993                         Link. The actual values of the parameters may                         be changed when the link is brought up via the                         LCP options negotiation mechanism."               ::= { pppLink 2 }          pppLinkConfigEntry   OBJECT-TYPE               SYNTAX    PppLinkConfigEntry               ACCESS    not-accessible               STATUS    mandatory               DESCRIPTION                         "Configuration information about a particular                         PPP Link."               INDEX     { ifIndex }               ::= { pppLinkConfigTable 1 }          PppLinkConfigEntry ::= SEQUENCE {               pppLinkConfigInitialMRU                    INTEGER,               pppLinkConfigReceiveACCMap                    OCTET STRING,               pppLinkConfigTransmitACCMap                    OCTET STRING,               pppLinkConfigMagicNumber                    INTEGER,               pppLinkConfigFcsSize                    INTEGER               }          pppLinkConfigInitialMRU   OBJECT-TYPE               SYNTAX    INTEGER(0..2147483647)               ACCESS    read-write               STATUS    mandatory               DESCRIPTION                         "The initial Maximum Receive Unit (MRU) that                         the local PPP entity will advertise to the                         remote entity. If the value of this variable is                         0 then the local PPP entity will not advertise                         any MRU to the remote entity and the default                         MRU will be assumed. Changing this object will                         have effect when the link is next restarted."               REFERENCE                         "Section 7.2, Maximum Receive Unit of RFC1331."               DEFVAL    { 1500 }               ::= { pppLinkConfigEntry 1 }Kastenholz                                                     [Page 14]RFC 1471                      PPP/LCP MIB                      June 1993          pppLinkConfigReceiveACCMap   OBJECT-TYPE               SYNTAX    OCTET STRING (SIZE (4))               ACCESS    read-write               STATUS    mandatory               DESCRIPTION                         "The Asynchronous-Control-Character-Map (ACC)                         that the local PPP entity requires for use on                         its receive side. In effect, this is the ACC                         Map that is required in order to ensure that                         the local modem will successfully receive all                         characters. The actual ACC map used on the                         receive side of the link will be a combination                         of the local node's pppLinkConfigReceiveACCMap                         and the remote node's                         pppLinkConfigTransmitACCMap. Changing this                         object will have effect when the link is next                         restarted."               REFERENCE                         "Section 7.3, page 4, Async-Control-Character-                         Map of RFC1331."               DEFVAL    { 'ffffffff'h }               ::= { pppLinkConfigEntry 2 }          pppLinkConfigTransmitACCMap   OBJECT-TYPE               SYNTAX    OCTET STRING (SIZE (4))               ACCESS    read-write               STATUS    mandatory               DESCRIPTION                         "The Asynchronous-Control-Character-Map (ACC)                         that the local PPP entity requires for use on                         its transmit side. In effect, this is the ACC                         Map that is required in order to ensure that                         all characters can be successfully transmitted                         through the local modem.  The actual ACC map                         used on the transmit side of the link will be a                         combination of the local node's                         pppLinkConfigTransmitACCMap and the remote                         node's pppLinkConfigReceiveACCMap. Changing                         this object will have effect when the link is                         next restarted."               REFERENCE                         "Section 7.3, page 4, Async-Control-Character-                         Map of RFC1331."               DEFVAL    { 'ffffffff'h }               ::= { pppLinkConfigEntry 3 }Kastenholz                                                     [Page 15]RFC 1471                      PPP/LCP MIB                      June 1993          pppLinkConfigMagicNumber   OBJECT-TYPE               SYNTAX    INTEGER {false (1), true (2)}               ACCESS    read-write               STATUS    mandatory               DESCRIPTION                         "If true(2) then the local node will attempt to                         perform Magic Number negotiation with the                         remote node. If false(1) then this negotiation                         is not performed. In any event, the local node                         will comply with any magic number negotiations                         attempted by the remote node, per the PPP                         specification. Changing this object will have                         effect when the link is next restarted."               REFERENCE                         "Section 7.6, Magic Number, of RFC1331."               DEFVAL    { false }               ::= { pppLinkConfigEntry 4 }          pppLinkConfigFcsSize   OBJECT-TYPE               SYNTAX    INTEGER (0..128)               ACCESS    read-write               STATUS    mandatory               DESCRIPTION                         "The size of the FCS, in bits, the local node                         will attempt to negotiate for use with the                         remote node. Regardless of the value of this                         object, the local node will comply with any FCS                         size negotiations initiated by the remote node,                         per the PPP specification. Changing this object                         will have effect when the link is next                         restarted."               DEFVAL    { 16 }               ::= { pppLinkConfigEntry 5 }          -- 4.2.  PPP LQR Group               --               -- The PPP LQR Group.               -- Implementation of this group is mandatory for all               -- PPP implementations that implement LQR.               --          pppLqrTable   OBJECT-TYPE               SYNTAX    SEQUENCE OF PppLqrEntry               ACCESS    not-accessibleKastenholz                                                     [Page 16]RFC 1471                      PPP/LCP MIB                      June 1993               STATUS    mandatory               DESCRIPTION                         "Table containing the LQR parameters and                         statistics for the local PPP entity."               ::= { pppLqr 1 }          pppLqrEntry   OBJECT-TYPE               SYNTAX    PppLqrEntry               ACCESS    not-accessible               STATUS    mandatory               DESCRIPTION                         "LQR information for a particular PPP link. A                         PPP link will have an entry in this table if                         and only if LQR Quality Monitoring has been                         successfully negotiated for said link."               INDEX     { ifIndex }               ::= { pppLqrTable 1 }          PppLqrEntry ::= SEQUENCE {               pppLqrQuality                    INTEGER,               pppLqrInGoodOctets                    Counter,               pppLqrLocalPeriod                    INTEGER,               pppLqrRemotePeriod                    INTEGER,               pppLqrOutLQRs                    Counter,               pppLqrInLQRs                    Counter          }          pppLqrQuality   OBJECT-TYPE               SYNTAX    INTEGER {                         good(1),                         bad(2),                         not-determined(3)                    }               ACCESS    read-only               STATUS    mandatory               DESCRIPTION                         "The current quality of the link as declared by                         the local PPP entity's Link-Quality Management                         modules. No effort is made to define good or                         bad, nor the policy used to determine it. TheKastenholz                                                     [Page 17]RFC 1471                      PPP/LCP MIB                      June 1993                         not-determined value indicates that the entity                         does not actually evaluate the link's quality.                         This value is used to disambiguate the                         `determined to be good' case from the `no                         determination made and presumed to be good'                         case."               ::= { pppLqrEntry 1 }          pppLqrInGoodOctets   OBJECT-TYPE               SYNTAX    Counter               ACCESS    read-only               STATUS    mandatory               DESCRIPTION                         "The LQR InGoodOctets counter for this link."               REFERENCE                         "Section 2.2, Counters, of RFC1333."               ::= { pppLqrEntry 2 }          pppLqrLocalPeriod   OBJECT-TYPE               SYNTAX    INTEGER(1..2147483648)               ACCESS    read-only               STATUS    mandatory               DESCRIPTION                         "The LQR reporting period, in hundredths of a                         second that is in effect for the local PPP                         entity."               REFERENCE                         "Section 2.5, Configuration Option Format, of                         RFC1333."               ::= { pppLqrEntry 3 }          pppLqrRemotePeriod   OBJECT-TYPE               SYNTAX    INTEGER(1..2147483648)               ACCESS    read-only               STATUS    mandatory               DESCRIPTION                         "The LQR reporting period, in hundredths of a                         second, that is in effect for the remote PPP                         entity."               REFERENCE                         "Section 2.5, Configuration Option Format, of                         RFC1333."               ::= { pppLqrEntry 4 }Kastenholz                                                     [Page 18]RFC 1471                      PPP/LCP MIB                      June 1993          pppLqrOutLQRs   OBJECT-TYPE               SYNTAX    Counter               ACCESS    read-only               STATUS    mandatory               DESCRIPTION                         "The value of the OutLQRs counter on the local                         node for the link identified by ifIndex."               REFERENCE                         "Section 2.2, Counters, of RFC1333."               ::= { pppLqrEntry 5 }          pppLqrInLQRs   OBJECT-TYPE               SYNTAX    Counter               ACCESS    read-only               STATUS    mandatory               DESCRIPTION                         "The value of the InLQRs counter on the local                         node for the link identified by ifIndex."               REFERENCE                         "Section 2.2, Counters, of RFC1333."               ::= { pppLqrEntry 6 }          --          -- The PPP LQR Configuration table.          --          pppLqrConfigTable   OBJECT-TYPE               SYNTAX    SEQUENCE OF PppLqrConfigEntry               ACCESS    not-accessible               STATUS    mandatory               DESCRIPTION                         "Table containing the LQR Configuration                         parameters for the local PPP entity."               ::= { pppLqr 2 }          pppLqrConfigEntry   OBJECT-TYPE

⌨️ 快捷键说明

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